coreos-base/gmerge: acknowledge the existence of python-exec

This commit is contained in:
David Michael 2017-08-02 13:32:17 -07:00
parent fc5081dc5e
commit 35d5644e80

View File

@ -1,7 +1,7 @@
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved. # Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI="4" EAPI=5
CROS_WORKON_PROJECT="coreos/dev-util" CROS_WORKON_PROJECT="coreos/dev-util"
CROS_WORKON_REPO="git://github.com" CROS_WORKON_REPO="git://github.com"
CROS_WORKON_LOCALNAME="dev" CROS_WORKON_LOCALNAME="dev"
@ -14,7 +14,9 @@ else
KEYWORDS="amd64 arm arm64 x86" KEYWORDS="amd64 arm arm64 x86"
fi fi
inherit cros-workon PYTHON_COMPAT=( python2_7 )
inherit cros-workon python-single-r1
DESCRIPTION="emerge utilities for CoreOS developer images" DESCRIPTION="emerge utilities for CoreOS developer images"
HOMEPAGE="https://github.com/coreos/dev-util/" HOMEPAGE="https://github.com/coreos/dev-util/"
@ -23,15 +25,13 @@ LICENSE="GPL-2"
SLOT="0" SLOT="0"
IUSE="" IUSE=""
RDEPEND="dev-lang/python RDEPEND="sys-apps/portage"
sys-apps/portage"
DEPEND=""
src_compile() { src_compile() {
echo "Nothing to compile" echo "Nothing to compile"
} }
src_install() { src_install() {
dobin gmerge python_doscript gmerge
dobin emerge-gitclone python_doscript emerge-gitclone
} }