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: Thu, 03 May 2012 00:32:14
Message-Id: 20120503003158.54A3C2004B@flycatcher.gentoo.org
1 floppym 12/05/03 00:31:58
2
3 Modified: ChangeLog python-distutils-ng.eclass
4 Log:
5 Declare local S in _python-distutils-ng_run_for_impl.
6
7 Revision Changes Path
8 1.235 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.235&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.235&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.234&r2=1.235
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.234
18 retrieving revision 1.235
19 diff -u -r1.234 -r1.235
20 --- ChangeLog 2 May 2012 21:40:42 -0000 1.234
21 +++ ChangeLog 3 May 2012 00:31:58 -0000 1.235
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.234 2012/05/02 21:40:42 floppym Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.235 2012/05/03 00:31:58 floppym Exp $
27 +
28 + 03 May 2012; Mike Gilbert <floppym@g.o> python-distutils-ng.eclass:
29 + Declare local S in _python-distutils-ng_run_for_impl.
30
31 02 May 2012; Mike Gilbert <floppym@g.o> python-distutils-ng.eclass:
32 Fix bytecode generation with Python 3, bug 413771. Patch by James Rowe.
33
34
35
36 1.15 eclass/python-distutils-ng.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?rev=1.15&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?rev=1.15&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?r1=1.14&r2=1.15
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.14
46 retrieving revision 1.15
47 diff -u -r1.14 -r1.15
48 --- python-distutils-ng.eclass 2 May 2012 21:40:42 -0000 1.14
49 +++ python-distutils-ng.eclass 3 May 2012 00:31:58 -0000 1.15
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.14 2012/05/02 21:40:42 floppym Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.15 2012/05/03 00:31:58 floppym Exp $
55
56 # @ECLASS: python-distutils-ng
57 # @MAINTAINER:
58 @@ -134,7 +134,7 @@
59 local impl="${1}"
60 local command="${2}"
61
62 - S="${WORKDIR}/impl_${impl}/${_PACKAGE_SPECIFIC_S}"
63 + local S="${WORKDIR}/impl_${impl}/${_PACKAGE_SPECIFIC_S}"
64 PYTHON="$(_python-distutils-ng_get_binary_for_implementation "${impl}")"
65 EPYTHON="${impl/_/.}"
66
67 @@ -384,7 +384,6 @@
68 _python-distutils-ng_default_distutils_install
69 fi
70
71 - S="${WORKDIR}/${_PACKAGE_SPECIFIC_S}"
72 if type python_install_all &> /dev/null; then
73 einfo "Running python_install_all in ${S} for all"
74 pushd "${S}" &> /dev/null