diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-01-29 21:12:33 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-01-29 21:12:33 +0000 |
commit | 82525b57b8a3678ba47de707f374cddad4270119 (patch) | |
tree | 5a626d4656fa4c8f7b98a1124859377156b0df17 /eclass | |
parent | Version bump to 3.2.4, remove old. (diff) | |
download | gentoo-2-82525b57b8a3678ba47de707f374cddad4270119.tar.gz gentoo-2-82525b57b8a3678ba47de707f374cddad4270119.tar.bz2 gentoo-2-82525b57b8a3678ba47de707f374cddad4270119.zip |
Disable pypy1.8 globally.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/python-utils-r1.eclass | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 360f50490670..9d02f3ec7756 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.652 2013/01/27 23:59:35 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.653 2013/01/29 21:12:33 mgorny Exp $ + + 29 Jan 2013; Michał Górny <mgorny@gentoo.org> python-utils-r1.eclass: + Disable pypy1.8 globally. 27 Jan 2013; Tim Harder <radhermit@gentoo.org> vim-plugin.eclass: Remove all hidden files in the main tarball dir. diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 53a45963d343..b42530220e11 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.15 2013/01/27 16:35:33 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.16 2013/01/29 21:12:33 mgorny Exp $ # @ECLASS: python-utils-r1 # @MAINTAINER: @@ -42,7 +42,7 @@ inherit multilib # All supported Python implementations, most preferred last. _PYTHON_ALL_IMPLS=( jython2_5 - pypy1_8 pypy1_9 pypy2_0 + pypy1_9 pypy2_0 python3_1 python3_2 python3_3 python2_5 python2_6 python2_7 ) @@ -67,12 +67,12 @@ _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_[89]|pypy2_0|jython2_5) + python2_[567]|python3_[123]|pypy1_9|pypy2_0|jython2_5) return 0 ;; -# pypy1_8) -# return 1 -# ;; + pypy1_8) + return 1 + ;; *) die "Invalid implementation in PYTHON_COMPAT: ${impl}" esac |