diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-03-07 20:58:51 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-03-07 20:58:51 +0000 |
commit | 5ddb63bf2d6228bb2dcfe187b18cdedfd19e9432 (patch) | |
tree | a7687279cfc487df6c706c5ad010023fb3e8abf4 /eclass/python-utils-r1.eclass | |
parent | Unmask jython2_7 for PYTHON_TARGETS. (diff) | |
download | gentoo-2-5ddb63bf2d6228bb2dcfe187b18cdedfd19e9432.tar.gz gentoo-2-5ddb63bf2d6228bb2dcfe187b18cdedfd19e9432.tar.bz2 gentoo-2-5ddb63bf2d6228bb2dcfe187b18cdedfd19e9432.zip |
Add jython2_7.
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r-- | eclass/python-utils-r1.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index c12c3c1f8b36..feb6e3d4bc28 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.18 2013/02/04 13:53:54 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.19 2013/03/07 20:58:51 radhermit Exp $ # @ECLASS: python-utils-r1 # @MAINTAINER: @@ -41,7 +41,7 @@ inherit multilib # @DESCRIPTION: # All supported Python implementations, most preferred last. _PYTHON_ALL_IMPLS=( - jython2_5 + jython2_5 jython2_7 pypy1_9 pypy2_0 python3_1 python3_2 python3_3 python2_5 python2_6 python2_7 @@ -67,7 +67,7 @@ _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_5) + python2_[567]|python3_[123]|pypy1_9|pypy2_0|jython2_[57]) return 0 ;; pypy1_8) |