Gentoo Archives: gentoo-commits

From: "Krzysztof Pawlik (nelchael)" <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog python-distutils-ng.eclass
Date: Mon, 30 Apr 2012 08:25:51
Message-Id: 20120430082531.B1F402004B@flycatcher.gentoo.org
1 nelchael 12/04/30 08:25:31
2
3 Modified: ChangeLog python-distutils-ng.eclass
4 Log:
5 Correctly chdir to ${S}, see bug #411563.
6
7 Revision Changes Path
8 1.229 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.229&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.229&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.228&r2=1.229
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.228
18 retrieving revision 1.229
19 diff -u -r1.228 -r1.229
20 --- ChangeLog 29 Apr 2012 23:25:05 -0000 1.228
21 +++ ChangeLog 30 Apr 2012 08:25:31 -0000 1.229
22 @@ -1,6 +1,10 @@
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.228 2012/04/29 23:25:05 flameeyes Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.229 2012/04/30 08:25:31 nelchael Exp $
27 +
28 + 30 Apr 2012; Krzysztof Pawlik <nelchael@g.o>
29 + python-distutils-ng.eclass:
30 + Correctly chdir to ${S}, see bug #411563.
31
32 29 Apr 2012; Diego E. Pettenò <flameeyes@g.o> sgml-catalog.eclass:
33 Fix infinite look if the catalog is corrupted.
34
35
36
37 1.12 eclass/python-distutils-ng.eclass
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?rev=1.12&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?rev=1.12&content-type=text/plain
41 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/python-distutils-ng.eclass?r1=1.11&r2=1.12
42
43 Index: python-distutils-ng.eclass
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v
46 retrieving revision 1.11
47 retrieving revision 1.12
48 diff -u -r1.11 -r1.12
49 --- python-distutils-ng.eclass 3 Apr 2012 19:21:45 -0000 1.11
50 +++ python-distutils-ng.eclass 30 Apr 2012 08:25:31 -0000 1.12
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2012 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.11 2012/04/03 19:21:45 nelchael Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.12 2012/04/30 08:25:31 nelchael Exp $
56
57 # @ECLASS: python-distutils-ng
58 # @MAINTAINER:
59 @@ -388,7 +388,9 @@
60 S="${WORKDIR}/${_PACKAGE_SPECIFIC_S}"
61 if type python_install_all &> /dev/null; then
62 einfo "Running python_install_all in ${S} for all"
63 + pushd "${S}" &> /dev/null
64 python_install_all
65 + popd &> /dev/null
66 fi
67
68 for impl in ${PYTHON_COMPAT}; do