diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-11-17 16:02:17 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-11-17 16:02:17 +0000 |
commit | 85b98d378ed969fe519c54629aa5e530aec525df (patch) | |
tree | 1db8939b47e079d3fa41377fc64be78b0df7ec79 /eclass | |
parent | media-libs/gegl: 0.1.{6,8}-r1 CVE-2012-4433 (bug #442016) (diff) | |
download | gentoo-2-85b98d378ed969fe519c54629aa5e530aec525df.tar.gz gentoo-2-85b98d378ed969fe519c54629aa5e530aec525df.tar.bz2 gentoo-2-85b98d378ed969fe519c54629aa5e530aec525df.zip |
Remove the minimum restriction from PYTHON_DEPEND; any version of python from the last several years will do the job.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/enlightenment.eclass | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 62e7dec6e6a2..084f7aa2ea15 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.510 2012/11/17 13:03:05 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.511 2012/11/17 16:02:17 floppym Exp $ + + 17 Nov 2012; Mike Gilbert <floppym@gentoo.org> enlightenment.eclass: + Remove the minimum restriction from PYTHON_DEPEND; any version of python from + the last several years will do the job. 17 Nov 2012; Pacho Ramos <pacho@gentoo.org> gnome2.eclass: Rely on prune_libtool_files for eapis >= 5 as discussed with the team via diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass index 60c059a82569..c15449ce37d7 100644 --- a/eclass/enlightenment.eclass +++ b/eclass/enlightenment.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.96 2012/11/17 10:58:35 tommy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.97 2012/11/17 16:02:17 floppym Exp $ # @ECLASS: enlightenment.eclass # @MAINTAINER: @@ -63,7 +63,7 @@ fi # Parse requested python state : ${E_PYTHON:=${E_CYTHON}} if [[ -n ${E_PYTHON} ]] ; then - PYTHON_DEPEND="2:2.5" + PYTHON_DEPEND="2" inherit python fi |