diff options
author | 2013-09-05 09:59:52 +0000 | |
---|---|---|
committer | 2013-09-05 09:59:52 +0000 | |
commit | 0a024bcc68d92a8049f60de4a11304a02941fc4d (patch) | |
tree | 57368cc00d98bc9e2158ebacf5d93b1aa66e7d2d /eclass/python-utils-r1.eclass | |
parent | Remove dev-python/turbogears, Python 2.5 only. Bug #480070. (diff) | |
download | historical-0a024bcc68d92a8049f60de4a11304a02941fc4d.tar.gz historical-0a024bcc68d92a8049f60de4a11304a02941fc4d.tar.bz2 historical-0a024bcc68d92a8049f60de4a11304a02941fc4d.zip |
Disable Python 2.5, 3.1 and PyPy 1.9 in the eclass.
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r-- | eclass/python-utils-r1.eclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index a16d52852feb..1a136f47603a 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.31 2013/08/28 22:04:16 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.32 2013/09/05 09:59:52 mgorny Exp $ # @ECLASS: python-utils-r1 # @MAINTAINER: @@ -42,9 +42,9 @@ inherit multilib toolchain-funcs # All supported Python implementations, most preferred last. _PYTHON_ALL_IMPLS=( jython2_5 jython2_7 - pypy1_9 pypy2_0 - python3_1 python3_2 python3_3 - python2_5 python2_6 python2_7 + pypy2_0 + python3_2 python3_3 + python2_6 python2_7 ) # @FUNCTION: _python_impl_supported @@ -67,10 +67,10 @@ _python_impl_supported() { # keep in sync with _PYTHON_ALL_IMPLS! # (not using that list because inline patterns shall be faster) case "${impl}" in - python2_[567]|python3_[123]|pypy1_9|pypy2_0|jython2_[57]) + python2_[67]|python3_[23]|pypy2_0|jython2_[57]) return 0 ;; - pypy1_8) + pypy1_[89]|python2_5|python3_1) return 1 ;; *) |