Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog gnome-python-common.eclass
Date: Tue, 03 Jan 2012 12:18:29
Message-Id: 20120103121818.01F422004B@flycatcher.gentoo.org
1 nirbheek 12/01/03 12:18:17
2
3 Modified: ChangeLog gnome-python-common.eclass
4 Log:
5 New automake uses $(SHELL) py-compile, which fails if py-compile is a symlink to /bin/true. Make it an executable empty file instead.
6
7 Revision Changes Path
8 1.70 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.70&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.70&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.69&r2=1.70
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.69
18 retrieving revision 1.70
19 diff -u -r1.69 -r1.70
20 --- ChangeLog 3 Jan 2012 08:59:01 -0000 1.69
21 +++ ChangeLog 3 Jan 2012 12:18:17 -0000 1.70
22 @@ -1,6 +1,11 @@
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.69 2012/01/03 08:59:01 jlec Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.70 2012/01/03 12:18:17 nirbheek Exp $
27 +
28 + 03 Jan 2012; Nirbheek Chauhan <nirbheek@g.o>
29 + gnome-python-common.eclass:
30 + New automake uses $(SHELL) py-compile, which fails if py-compile is a symlink
31 + to /bin/true. Make it an executable empty file instead.
32
33 03 Jan 2012; Justin Lecher <jlec@g.o> eutils.eclass:
34 Convert make_desktop_entry() comment block to be eclass-manpages conform,
35
36
37
38 1.14 eclass/gnome-python-common.eclass
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome-python-common.eclass?rev=1.14&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome-python-common.eclass?rev=1.14&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome-python-common.eclass?r1=1.13&r2=1.14
43
44 Index: gnome-python-common.eclass
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v
47 retrieving revision 1.13
48 retrieving revision 1.14
49 diff -u -r1.13 -r1.14
50 --- gnome-python-common.eclass 27 Dec 2011 17:55:12 -0000 1.13
51 +++ gnome-python-common.eclass 3 Jan 2012 12:18:17 -0000 1.14
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2011 Gentoo Foundation
54 +# Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v 1.13 2011/12/27 17:55:12 fauli Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v 1.14 2012/01/03 12:18:17 nirbheek Exp $
58
59 # Original Author: Arun Raghavan <ford_prefect@g.o> (based on the
60 # gnome-python-desktop eclass by Jim Ramsay <lack@g.o>)
61 @@ -89,7 +89,8 @@
62 # disable pyc compiling
63 if [[ -f py-compile ]]; then
64 rm py-compile
65 - ln -s $(type -P true) py-compile
66 + echo > py-compile
67 + chmod +x py-compile
68 fi
69
70 # The .pc file is installed by respective gnome-python*-base package