Gentoo Archives: gentoo-commits

From: Krzysztof Pawlik <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/nelchael:master commit in: eclass/
Date: Wed, 29 Feb 2012 17:38:56
Message-Id: 1330536730.56da8742836111f4f61195598b46db9a7482145f.nelchael@gentoo
1 commit: 56da8742836111f4f61195598b46db9a7482145f
2 Author: Krzysztof Pawlik <none <AT> none>
3 AuthorDate: Wed Feb 29 17:32:10 2012 +0000
4 Commit: Krzysztof Pawlik <nelchael <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 29 17:32:10 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/nelchael.git;a=commit;h=56da8742
7
8 Fix python3_1 (was 2_1).
9
10 ---
11 eclass/python-distutils-ng.eclass | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/eclass/python-distutils-ng.eclass b/eclass/python-distutils-ng.eclass
15 index 0b9f005..7be2653 100644
16 --- a/eclass/python-distutils-ng.eclass
17 +++ b/eclass/python-distutils-ng.eclass
18 @@ -234,7 +234,7 @@ python-distutils-ng_newscript() {
19
20 if [[ -z "${default_impl}" ]]; then
21 # TODO: Pick default implementation
22 - for impl in python{2_7,2_6,2_5,3_2,2_1} pypy{1_8,1_7} jython2_5; do
23 + for impl in python{2_7,2_6,2_5,3_2,3_1} pypy{1_8,1_7} jython2_5; do
24 use "python_targets_${impl}" || continue
25 default_impl="${impl}"
26 break;