diff options
author | Mike Gilbert <floppym@gentoo.org> | 2014-11-23 16:05:42 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2014-11-23 16:05:42 +0000 |
commit | 7434379e24cc3fc72698f3ca42582891d79b17aa (patch) | |
tree | f05708ad4131697c2feaacb170ac3e24822eb8e1 /eclass | |
parent | Switch from python3_3 to python3_4. (diff) | |
download | historical-7434379e24cc3fc72698f3ca42582891d79b17aa.tar.gz historical-7434379e24cc3fc72698f3ca42582891d79b17aa.tar.bz2 historical-7434379e24cc3fc72698f3ca42582891d79b17aa.zip |
Adjust _python_impl_supported as well.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/python-utils-r1.eclass | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 03e1b580940e..97d21ab2e633 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1441 2014/11/23 16:02:56 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1442 2014/11/23 16:05:42 floppym Exp $ + + 23 Nov 2014; Mike Gilbert <floppym@gentoo.org> python-utils-r1.eclass: + Adjust _python_impl_supported as well. 23 Nov 2014; Mike Gilbert <floppym@gentoo.org> python-utils-r1.eclass: Remove python3_2. diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 4ec8f789cc69..93959dbf1b07 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 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.65 2014/11/23 16:02:56 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.66 2014/11/23 16:05:42 floppym Exp $ # @ECLASS: python-utils-r1 # @MAINTAINER: @@ -66,10 +66,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_7|python3_[234]|jython2_[57]) + python2_7|python3_[34]|jython2_[57]) return 0 ;; - pypy1_[89]|pypy2_0|python2_[56]|python3_1) + pypy1_[89]|pypy2_0|python2_[56]|python3_[12]) return 1 ;; pypy|pypy3) |