Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog distutils-r1.eclass
Date: Thu, 27 Dec 2012 22:57:38
Message-Id: 20121227225728.3D80F2171D@flycatcher.gentoo.org
1 mgorny 12/12/27 22:57:28
2
3 Modified: ChangeLog distutils-r1.eclass
4 Log:
5 Pass --build-scripts path to setup.py (when out-of-source builds are used).
6
7 Revision Changes Path
8 1.579 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.579&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.579&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.578&r2=1.579
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.578
18 retrieving revision 1.579
19 diff -u -r1.578 -r1.579
20 --- ChangeLog 27 Dec 2012 22:56:53 -0000 1.578
21 +++ ChangeLog 27 Dec 2012 22:57:28 -0000 1.579
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.578 2012/12/27 22:56:53 mgorny Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.579 2012/12/27 22:57:28 mgorny Exp $
27 +
28 + 27 Dec 2012; Michał Górny <mgorny@g.o> distutils-r1.eclass:
29 + Pass --build-scripts path to setup.py (when out-of-source builds are used).
30
31 27 Dec 2012; Michał Górny <mgorny@g.o> python-utils-r1.eclass:
32 Introduce functions to get the includedir for Python.
33
34
35
36 1.34 eclass/distutils-r1.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.34&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.34&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?r1=1.33&r2=1.34
41
42 Index: distutils-r1.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v
45 retrieving revision 1.33
46 retrieving revision 1.34
47 diff -u -r1.33 -r1.34
48 --- distutils-r1.eclass 16 Dec 2012 23:26:15 -0000 1.33
49 +++ distutils-r1.eclass 27 Dec 2012 22:57:28 -0000 1.34
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/distutils-r1.eclass,v 1.33 2012/12/16 23:26:15 mgorny Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.34 2012/12/27 22:57:28 mgorny Exp $
55
56 # @ECLASS: distutils-r1
57 # @MAINTAINER:
58 @@ -188,6 +188,8 @@
59 --build-base "${BUILD_DIR}"
60 # using a single directory for them helps us export ${PYTHONPATH}
61 --build-lib "${BUILD_DIR}/lib"
62 + # make the ebuild writer lives easier
63 + --build-scripts "${BUILD_DIR}/scripts"
64 )
65 fi