diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2016-11-13 09:17:06 -0800 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2016-11-13 09:18:41 -0800 |
commit | c995f33af32bc7f7f777c9abe1c67b2c53e34394 (patch) | |
tree | 94df113055e271dc99d4b8a8d917f58db7e6bf92 /app-portage | |
parent | dev-python/priority: Version bump (diff) | |
download | gentoo-c995f33af32bc7f7f777c9abe1c67b2c53e34394.tar.gz gentoo-c995f33af32bc7f7f777c9abe1c67b2c53e34394.tar.bz2 gentoo-c995f33af32bc7f7f777c9abe1c67b2c53e34394.zip |
app-portage/gpytage: Update ebuild to eapi 6
Package-Manager: portage-2.3.2_p3
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/gpytage/gpytage-0.3.0_rc1-r1.ebuild (renamed from app-portage/gpytage/gpytage-0.3.0_rc1.ebuild) | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/app-portage/gpytage/gpytage-0.3.0_rc1.ebuild b/app-portage/gpytage/gpytage-0.3.0_rc1-r1.ebuild index 7830dc697438..8a1350818baa 100644 --- a/app-portage/gpytage/gpytage-0.3.0_rc1.ebuild +++ b/app-portage/gpytage/gpytage-0.3.0_rc1-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="3" -PYTHON_DEPEND="2:2.6" +EAPI="6" +PYTHON_COMPAT=( python2_7 ) -inherit distutils +inherit distutils-r1 DESCRIPTION="GTK Utility to help manage Portage's user config files" HOMEPAGE="https://gna.org/projects/gpytage" @@ -13,12 +13,7 @@ SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ppc x86" +KEYWORDS="~amd64 ~ppc ~x86" IUSE="" RDEPEND=">=dev-python/pygtk-2.14" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} |