Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 28 Oct 2016 01:35:07
Message-Id: 1477618402.4e62500200bdf984102728d644b1d3f00ef13c9e.floppym@gentoo
1 commit: 4e62500200bdf984102728d644b1d3f00ef13c9e
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 28 00:12:10 2016 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 28 01:33:22 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e625002
7
8 python-utils-r1.eclass: drop support for python3_3
9
10 eclass/python-utils-r1.eclass | 6 +++---
11 1 file changed, 3 insertions(+), 3 deletions(-)
12
13 diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
14 index 60eedf7..9d4eb37 100644
15 --- a/eclass/python-utils-r1.eclass
16 +++ b/eclass/python-utils-r1.eclass
17 @@ -44,7 +44,7 @@ _PYTHON_ALL_IMPLS=(
18 jython2_7
19 pypy pypy3
20 python2_7
21 - python3_3 python3_4 python3_5
22 + python3_4 python3_5
23 )
24 readonly _PYTHON_ALL_IMPLS
25
26 @@ -68,10 +68,10 @@ _python_impl_supported() {
27 # keep in sync with _PYTHON_ALL_IMPLS!
28 # (not using that list because inline patterns shall be faster)
29 case "${impl}" in
30 - python2_7|python3_[345]|jython2_7)
31 + python2_7|python3_[45]|jython2_7)
32 return 0
33 ;;
34 - pypy1_[89]|pypy2_0|python2_[56]|python3_[12])
35 + pypy1_[89]|pypy2_0|python2_[56]|python3_[123])
36 return 1
37 ;;
38 pypy|pypy3)