diff options
author | Thomas Sachau <tommy@gentoo.org> | 2012-02-10 22:54:33 +0000 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2012-02-10 22:54:33 +0000 |
commit | 8bceecc97e2f31f52a50d3e6222462b407638c80 (patch) | |
tree | 63a82ffb310f74d0fb672c38746b5d3b66895fa3 /eclass | |
parent | Update Boost dependencies. Thanks to Arfrever (diff) | |
download | gentoo-2-8bceecc97e2f31f52a50d3e6222462b407638c80.tar.gz gentoo-2-8bceecc97e2f31f52a50d3e6222462b407638c80.tar.bz2 gentoo-2-8bceecc97e2f31f52a50d3e6222462b407638c80.zip |
Revert previous commit to python eclass, breaks any ebuild using PYTHON_DEPEND=2.4 without any need or prior warning
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/python.eclass | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index b9f5db405bf5..360455b0cd84 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.124 2012/02/10 04:15:42 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.125 2012/02/10 22:54:33 tommy Exp $ + + 10 Feb 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> python.eclass: + Revert previous commit to python eclass, breaks any ebuild using + PYTHON_DEPEND=2.4 without any need or prior warning 10 Feb 2012; Patrick Lauer <patrick@gentoo.org> python.eclass: Removing python 2.4 support from python eclass diff --git a/eclass/python.eclass b/eclass/python.eclass index c3337c799513..5fbdea53c496 100644 --- a/eclass/python.eclass +++ b/eclass/python.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/python.eclass,v 1.148 2012/02/10 04:15:42 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.149 2012/02/10 22:54:33 tommy Exp $ # @ECLASS: python.eclass # @MAINTAINER: @@ -27,7 +27,7 @@ if ! has "${EAPI:-0}" 0 1 2 3 4; then die "API of python.eclass in EAPI=\"${EAPI}\" not established" fi -_CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.5 2.6 2.7) +_CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7) |