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: Sun, 04 Oct 2015 13:36:53
Message-Id: 1443965745.0069399e509c81342c5882a86e716c87b20b58bf.floppym@gentoo
1 commit: 0069399e509c81342c5882a86e716c87b20b58bf
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 2 18:56:34 2015 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 4 13:35:45 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0069399e
7
8 python-utils-r1.eclass: Add support for python3.5
9
10 eclass/python-utils-r1.eclass | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
14 index 974accb..622cb59 100644
15 --- a/eclass/python-utils-r1.eclass
16 +++ b/eclass/python-utils-r1.eclass
17 @@ -42,7 +42,7 @@ inherit eutils multilib toolchain-funcs
18 _PYTHON_ALL_IMPLS=(
19 jython2_5 jython2_7
20 pypy pypy3
21 - python3_3 python3_4
22 + python3_3 python3_4 python3_5
23 python2_7
24 )
25
26 @@ -66,7 +66,7 @@ _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_[34]|jython2_[57])
31 + python2_7|python3_[345]|jython2_[57])
32 return 0
33 ;;
34 pypy1_[89]|pypy2_0|python2_[56]|python3_[12])