Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 25 Jan 2017 22:57:17
Message-Id: 1485385024.3a4ccfe59e4b0e9795dde8cd8849cbaf19ab9302.mgorny@gentoo
1 commit: 3a4ccfe59e4b0e9795dde8cd8849cbaf19ab9302
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 25 22:19:19 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 25 22:57:04 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a4ccfe5
7
8 python-utils-r1.eclass: Enable python3_6 target
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 9d4eb37..53f8ad4 100644
15 --- a/eclass/python-utils-r1.eclass
16 +++ b/eclass/python-utils-r1.eclass
17 @@ -1,4 +1,4 @@
18 -# Copyright 1999-2016 Gentoo Foundation
19 +# Copyright 1999-2017 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 @@ -44,7 +44,7 @@ _PYTHON_ALL_IMPLS=(
24 jython2_7
25 pypy pypy3
26 python2_7
27 - python3_4 python3_5
28 + python3_4 python3_5 python3_6
29 )
30 readonly _PYTHON_ALL_IMPLS
31
32 @@ -68,7 +68,7 @@ _python_impl_supported() {
33 # keep in sync with _PYTHON_ALL_IMPLS!
34 # (not using that list because inline patterns shall be faster)
35 case "${impl}" in
36 - python2_7|python3_[45]|jython2_7)
37 + python2_7|python3_[456]|jython2_7)
38 return 0
39 ;;
40 pypy1_[89]|pypy2_0|python2_[56]|python3_[123])