Merge pull request #771 from marineam/gitclone

gmerge: add emerge-gitclone, remove unused scripts
This commit is contained in:
Michael Marineau 2014-07-28 15:26:55 -07:00
commit 127d83250d
2 changed files with 11 additions and 9 deletions

View File

@ -10,26 +10,28 @@ CROS_WORKON_LOCALDIR="src/platform"
if [[ "${PV}" == 9999 ]]; then if [[ "${PV}" == 9999 ]]; then
KEYWORDS="~amd64 ~arm ~x86" KEYWORDS="~amd64 ~arm ~x86"
else else
CROS_WORKON_COMMIT="d5c4968e694f2d56779562142803ff2cbe8052ab" CROS_WORKON_COMMIT="66e206c20f22e002bbdaed1982b08b18a9b7f730"
KEYWORDS="amd64 arm x86" KEYWORDS="amd64 arm x86"
fi fi
inherit cros-workon inherit cros-workon
DESCRIPTION="A util for installing packages using the CrOS dev server" DESCRIPTION="emerge utilities for CoreOS developer images"
HOMEPAGE="http://www.chromium.org/" HOMEPAGE="https://github.com/coreos/dev-util/"
LICENSE="GPL-2" LICENSE="GPL-2"
SLOT="0" SLOT="0"
IUSE="" IUSE=""
RDEPEND="app-shells/bash RDEPEND="dev-lang/python
dev-lang/python
dev-util/shflags
sys-apps/portage" sys-apps/portage"
DEPEND="${RDEPEND}" DEPEND=""
src_compile() {
echo "Nothing to compile"
}
src_install() { src_install() {
into /usr dobin gmerge
dobin gmerge stateful_update crdev dobin emerge-gitclone
} }