diff options
author | 2011-03-11 19:21:11 +0000 | |
---|---|---|
committer | 2011-03-11 19:21:11 +0000 | |
commit | 7bdd5573bc4c764f4ad8a98998b3e34ff8f802be (patch) | |
tree | 84401573c1942bfc3b286f57c0bcc25f6657e894 /dev-python/gnome-python-extras-base | |
parent | Stable on amd64 wrt bug #358229 (diff) | |
download | gentoo-2-7bdd5573bc4c764f4ad8a98998b3e34ff8f802be.tar.gz gentoo-2-7bdd5573bc4c764f4ad8a98998b3e34ff8f802be.tar.bz2 gentoo-2-7bdd5573bc4c764f4ad8a98998b3e34ff8f802be.zip |
Use Python 2.
(Portage version: 2.2.0_alpha26_p15/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/gnome-python-extras-base')
-rw-r--r-- | dev-python/gnome-python-extras-base/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3.ebuild | 15 |
2 files changed, 15 insertions, 6 deletions
diff --git a/dev-python/gnome-python-extras-base/ChangeLog b/dev-python/gnome-python-extras-base/ChangeLog index a12ed2114d31..23b92c21804f 100644 --- a/dev-python/gnome-python-extras-base/ChangeLog +++ b/dev-python/gnome-python-extras-base/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/gnome-python-extras-base # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras-base/ChangeLog,v 1.21 2011/02/26 19:04:35 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras-base/ChangeLog,v 1.22 2011/03/11 19:21:11 arfrever Exp $ + + 11 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + gnome-python-extras-base-2.25.3.ebuild: + Use Python 2. 26 Feb 2011; Gilles Dartiguelongue <eva@gentoo.org> -gnome-python-extras-base-2.19.1.ebuild: diff --git a/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3.ebuild b/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3.ebuild index 1e80eec566c9..1a6352c9a1fa 100644 --- a/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3.ebuild +++ b/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3.ebuild @@ -1,8 +1,11 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3.ebuild,v 1.8 2011/01/30 18:09:38 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3.ebuild,v 1.9 2011/03/11 19:21:11 arfrever Exp $ -inherit versionator eutils gnome2 +EAPI="3" +PYTHON_DEPEND="2" + +inherit versionator eutils gnome2 python # This ebuild does nothing -- we just want to get the pkgconfig file installed MY_PN="gnome-python-extras" @@ -17,9 +20,9 @@ SLOT="0" RESTRICT="test" # From the gnome-python-extras eclass -RDEPEND=">=x11-libs/gtk+-2.4 - >=dev-libs/glib-2.6 - >=dev-python/pygtk-2.10.3 +RDEPEND=">=x11-libs/gtk+-2.4:2 + >=dev-libs/glib-2.6:2 + >=dev-python/pygtk-2.10.3:2 !<=dev-python/gnome-python-extras-2.19.1-r2" DEPEND="${RDEPEND} dev-util/pkgconfig" @@ -32,4 +35,6 @@ DOCS="AUTHORS COPYING* ChangeLog INSTALL NEWS README" pkg_setup() { G2CONF="${G2CONF} --disable-allbindings" + python_set_active_version 2 + python_pkg_setup } |