diff options
author | Thomas Sachau <tommy@gentoo.org> | 2012-11-17 10:58:35 +0000 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2012-11-17 10:58:35 +0000 |
commit | 8bb22d3b76c2e611ce8670cae8fe9e88574dc591 (patch) | |
tree | ab34ff90b358a36edab1989a28a7817f21f7be06 | |
parent | Add USE gnome too, as in, punt metacity files without it (diff) | |
download | historical-8bb22d3b76c2e611ce8670cae8fe9e88574dc591.tar.gz historical-8bb22d3b76c2e611ce8670cae8fe9e88574dc591.tar.bz2 historical-8bb22d3b76c2e611ce8670cae8fe9e88574dc591.zip |
Raise python dependency to at least 2.5, fixes the breakage caused by silently dropped support for python-2.4 in python eclass
-rw-r--r-- | eclass/ChangeLog | 7 | ||||
-rw-r--r-- | eclass/enlightenment.eclass | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 9523568f59be..0f64aca905b9 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.508 2012/11/16 15:47:17 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.509 2012/11/17 10:58:35 tommy Exp $ + + 17 Nov 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> + enlightenment.eclass: + Raise python dependency to at least 2.5, fixes the breakage caused by + silently dropped support for python-2.4 in python eclass 16 Nov 2012; Sergei Trofimovich <slyfox@gentoo.org> ghc-package.eclass, haskell-cabal.eclass: diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass index d9f452a40e18..60c059a82569 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.95 2012/10/22 10:14:31 tommy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.96 2012/11/17 10:58:35 tommy 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.4" + PYTHON_DEPEND="2:2.5" inherit python fi |