Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/abrt: ChangeLog abrt-2.0.6.ebuild
Date: Sat, 31 Dec 2011 18:35:59
Message-Id: 20111231183549.D6BCB2004B@flycatcher.gentoo.org
1 tetromino 11/12/31 18:35:49
2
3 Modified: ChangeLog abrt-2.0.6.ebuild
4 Log:
5 Simplify py-compile fix.
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 app-admin/abrt/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/abrt/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/abrt/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/abrt/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/abrt/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 31 Dec 2011 16:20:30 -0000 1.3
23 +++ ChangeLog 31 Dec 2011 18:35:49 -0000 1.4
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-admin/abrt
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-admin/abrt/ChangeLog,v 1.3 2011/12/31 16:20:30 tetromino Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-admin/abrt/ChangeLog,v 1.4 2011/12/31 18:35:49 tetromino Exp $
29 +
30 + 31 Dec 2011; Alexandre Rostovtsev <tetromino@g.o> abrt-2.0.6.ebuild:
31 + Simplify py-compile fix.
32
33 31 Dec 2011; Alexandre Rostovtsev <tetromino@g.o> abrt-2.0.6.ebuild:
34 Fix py-compile idiom for automake-1.11.2 compatibility (bug #396585, thanks
35
36
37
38 1.4 app-admin/abrt/abrt-2.0.6.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/abrt/abrt-2.0.6.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/abrt/abrt-2.0.6.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/abrt/abrt-2.0.6.ebuild?r1=1.3&r2=1.4
43
44 Index: abrt-2.0.6.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-admin/abrt/abrt-2.0.6.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- abrt-2.0.6.ebuild 31 Dec 2011 16:20:30 -0000 1.3
51 +++ abrt-2.0.6.ebuild 31 Dec 2011 18:35:49 -0000 1.4
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-admin/abrt/abrt-2.0.6.ebuild,v 1.3 2011/12/31 16:20:30 tetromino Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-admin/abrt/abrt-2.0.6.ebuild,v 1.4 2011/12/31 18:35:49 tetromino Exp $
57
58 PYTHON_DEPEND="2:2.6"
59 EAPI="4"
60 @@ -65,7 +65,7 @@
61 mkdir m4
62 eautoreconf
63
64 - echo -e '#!'$(type -P sh)'\n:' > py-compile
65 + echo '#!/bin/sh' > py-compile
66 python_convert_shebangs -r 2 src
67 }