coreos-devel/mantle: new SDK utility package

Just the beginning for now, will eventually grow support for testing
CoreOS builds and provide better integration with remote services like
Google Cloud/Compute, Amazon, OpenStack clouds, etc. than we can achieve
with our current collection of bash scripts.
This commit is contained in:
Michael Marineau 2014-12-31 15:29:42 -08:00
parent 422d60ce9f
commit 1d86304c05
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1 @@
mantle-9999.ebuild

View File

@ -0,0 +1,25 @@
# Copyright 2014 CoreOS, Inc.
# Distributed under the terms of the GNU General Public License v2
EAPI=5
CROS_WORKON_PROJECT="coreos/mantle"
CROS_WORKON_REPO="git://github.com"
COREOS_GO_PACKAGE="github.com/coreos/mantle"
if [[ "${PV}" == 9999 ]]; then
KEYWORDS="~amd64"
else
CROS_WORKON_COMMIT="14c53ce56771da9bc9a3f80a2f05a2aa65780e60"
KEYWORDS="amd64"
fi
inherit coreos-go cros-workon
DESCRIPTION="Mantle: Gluing CoreOS together"
HOMEPAGE="https://github.com/coreos/mantle"
LICENSE="Apache-2"
SLOT="0"
src_compile() {
go_build "${COREOS_GO_PACKAGE}"/plume
}