Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-distutils-ng.eclass
Date: Wed, 02 May 2012 21:40:52
Message-Id: 20120502214042.BFF442004B@flycatcher.gentoo.org
1 floppym 12/05/02 21:40:42
2
3 Modified: ChangeLog python-distutils-ng.eclass
4 Log:
5 Fix bytecode generation with Python 3, bug 413771. Patch by James Rowe.
6
7 Revision Changes Path
8 1.234 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.234&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.234&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.233&r2=1.234
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.233
18 retrieving revision 1.234
19 diff -u -r1.233 -r1.234
20 --- ChangeLog 2 May 2012 21:05:38 -0000 1.233
21 +++ ChangeLog 2 May 2012 21:40:42 -0000 1.234
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.233 2012/05/02 21:05:38 eva Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.234 2012/05/02 21:40:42 floppym Exp $
27 +
28 + 02 May 2012; Mike Gilbert <floppym@g.o> python-distutils-ng.eclass:
29 + Fix bytecode generation with Python 3, bug 413771. Patch by James Rowe.
30
31 02 May 2012; Gilles Dartiguelongue <eva@g.o> gnome2-utils.eclass,
32 gnome2.eclass:
33
34
35
36 1.14 eclass/python-distutils-ng.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?rev=1.14&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?rev=1.14&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?r1=1.13&r2=1.14
41
42 Index: python-distutils-ng.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v
45 retrieving revision 1.13
46 retrieving revision 1.14
47 diff -u -r1.13 -r1.14
48 --- python-distutils-ng.eclass 30 Apr 2012 09:51:00 -0000 1.13
49 +++ python-distutils-ng.eclass 2 May 2012 21:40:42 -0000 1.14
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.13 2012/04/30 09:51:00 nelchael Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.14 2012/05/02 21:40:42 floppym Exp $
55
56 # @ECLASS: python-distutils-ng
57 # @MAINTAINER:
58 @@ -397,7 +397,7 @@
59 use "python_targets_${impl}" ${PYTHON_COMPAT} || continue
60
61 PYTHON="$(_python-distutils-ng_get_binary_for_implementation "${impl}")"
62 - for accessible_path in $(${PYTHON} -c 'import sys; print " ".join(sys.path)'); do
63 + for accessible_path in $(${PYTHON} -c 'import sys; print(" ".join(sys.path))'); do
64 [[ -d "${D}/${accessible_path}" ]] || continue
65
66 _python-distutils-ng_has_compileall "${impl}" || continue