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: distutils-r1.eclass ChangeLog
Date: Wed, 31 Oct 2012 14:28:21
Message-Id: 20121031142802.D5D5721600@flycatcher.gentoo.org
1 mgorny 12/10/31 14:28:02
2
3 Modified: distutils-r1.eclass ChangeLog
4 Log:
5 Enable byte-compilation of Python modules only locally for distutils-r1_python_install(). Thanks to Enlik for reminding me of it.
6
7 Revision Changes Path
8 1.15 eclass/distutils-r1.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.15&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?rev=1.15&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/distutils-r1.eclass?r1=1.14&r2=1.15
13
14 Index: distutils-r1.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v
17 retrieving revision 1.14
18 retrieving revision 1.15
19 diff -u -r1.14 -r1.15
20 --- distutils-r1.eclass 29 Oct 2012 13:34:02 -0000 1.14
21 +++ distutils-r1.eclass 31 Oct 2012 14:28:02 -0000 1.15
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2012 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.14 2012/10/29 13:34:02 mgorny Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.15 2012/10/31 14:28:02 mgorny Exp $
27
28 # @ECLASS: distutils-r1
29 # @MAINTAINER:
30 @@ -275,7 +275,8 @@
31 esac
32 debug-print "${FUNCNAME}: [${EPYTHON}] flags: ${flags}"
33
34 - unset PYTHONDONTWRITEBYTECODE
35 + # enable compilation for the install phase.
36 + local PYTHONDONTWRITEBYTECODE=
37
38 esetup.py install "${flags[@]}" --root="${D}" "${@}"
39
40
41
42
43 1.491 eclass/ChangeLog
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.491&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.491&content-type=text/plain
47 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.490&r2=1.491
48
49 Index: ChangeLog
50 ===================================================================
51 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
52 retrieving revision 1.490
53 retrieving revision 1.491
54 diff -u -r1.490 -r1.491
55 --- ChangeLog 31 Oct 2012 14:18:41 -0000 1.490
56 +++ ChangeLog 31 Oct 2012 14:28:02 -0000 1.491
57 @@ -1,6 +1,10 @@
58 # ChangeLog for eclass directory
59 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
60 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.490 2012/10/31 14:18:41 mgorny Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.491 2012/10/31 14:28:02 mgorny Exp $
62 +
63 + 31 Oct 2012; Michał Górny <mgorny@g.o> distutils-r1.eclass:
64 + Enable byte-compilation of Python modules only locally for
65 + distutils-r1_python_install(). Thanks to Enlik for reminding me of it.
66
67 31 Oct 2012; Michał Górny <mgorny@g.o> python-r1.eclass:
68 Fix the shebang correcting function to patch shebang only. Thanks to Enlik