Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/strace: strace-4.8.ebuild strace-9999.ebuild ChangeLog
Date: Fri, 29 Nov 2013 14:04:24
Message-Id: 20131129140414.A95342004B@flycatcher.gentoo.org
1 vapier 13/11/29 14:04:14
2
3 Modified: strace-4.8.ebuild strace-9999.ebuild ChangeLog
4 Log:
5 Fix USE=-perl thinko #492826 by Duncan.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
8
9 Revision Changes Path
10 1.3 dev-util/strace/strace-4.8.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/strace/strace-4.8.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/strace/strace-4.8.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/strace/strace-4.8.ebuild?r1=1.2&r2=1.3
15
16 Index: strace-4.8.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.8.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- strace-4.8.ebuild 28 Nov 2013 22:22:02 -0000 1.2
23 +++ strace-4.8.ebuild 29 Nov 2013 14:04:14 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.8.ebuild,v 1.2 2013/11/28 22:22:02 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.8.ebuild,v 1.3 2013/11/29 14:04:14 vapier Exp $
29
30 EAPI="4"
31
32 @@ -41,6 +41,6 @@
33
34 src_install() {
35 default
36 - use perl || rm /usr/bin/strace-graph
37 + use perl || rm "${ED}"/usr/bin/strace-graph
38 dodoc CREDITS
39 }
40
41
42
43 1.6 dev-util/strace/strace-9999.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/strace/strace-9999.ebuild?rev=1.6&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/strace/strace-9999.ebuild?rev=1.6&content-type=text/plain
47 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/strace/strace-9999.ebuild?r1=1.5&r2=1.6
48
49 Index: strace-9999.ebuild
50 ===================================================================
51 RCS file: /var/cvsroot/gentoo-x86/dev-util/strace/strace-9999.ebuild,v
52 retrieving revision 1.5
53 retrieving revision 1.6
54 diff -u -r1.5 -r1.6
55 --- strace-9999.ebuild 28 Nov 2013 22:22:02 -0000 1.5
56 +++ strace-9999.ebuild 29 Nov 2013 14:04:14 -0000 1.6
57 @@ -1,6 +1,6 @@
58 # Copyright 1999-2013 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-9999.ebuild,v 1.5 2013/11/28 22:22:02 vapier Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-9999.ebuild,v 1.6 2013/11/29 14:04:14 vapier Exp $
62
63 EAPI="4"
64
65 @@ -41,6 +41,6 @@
66
67 src_install() {
68 default
69 - use perl || rm /usr/bin/strace-graph
70 + use perl || rm "${ED}"/usr/bin/strace-graph
71 dodoc CREDITS
72 }
73
74
75
76 1.190 dev-util/strace/ChangeLog
77
78 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/strace/ChangeLog?rev=1.190&view=markup
79 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/strace/ChangeLog?rev=1.190&content-type=text/plain
80 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/strace/ChangeLog?r1=1.189&r2=1.190
81
82 Index: ChangeLog
83 ===================================================================
84 RCS file: /var/cvsroot/gentoo-x86/dev-util/strace/ChangeLog,v
85 retrieving revision 1.189
86 retrieving revision 1.190
87 diff -u -r1.189 -r1.190
88 --- ChangeLog 28 Nov 2013 22:22:02 -0000 1.189
89 +++ ChangeLog 29 Nov 2013 14:04:14 -0000 1.190
90 @@ -1,6 +1,10 @@
91 # ChangeLog for dev-util/strace
92 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
93 -# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/ChangeLog,v 1.189 2013/11/28 22:22:02 vapier Exp $
94 +# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/ChangeLog,v 1.190 2013/11/29 14:04:14 vapier Exp $
95 +
96 + 29 Nov 2013; Mike Frysinger <vapier@g.o> strace-4.8.ebuild,
97 + strace-9999.ebuild:
98 + Fix USE=-perl thinko #492826 by Duncan.
99
100 28 Nov 2013; Mike Frysinger <vapier@g.o> strace-4.8.ebuild,
101 strace-9999.ebuild: