Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/patch: patch-2.7.1-r1.ebuild ChangeLog
Date: Tue, 21 May 2013 17:36:03
Message-Id: 20130521173557.DEF142171D@flycatcher.gentoo.org
1 vapier 13/05/21 17:35:57
2
3 Modified: patch-2.7.1-r1.ebuild ChangeLog
4 Log:
5 Do not let $ED from the EAPI mess up the search for `ed` #470210 by Roman Žilka.
6
7 (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
8
9 Revision Changes Path
10 1.4 sys-devel/patch/patch-2.7.1-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/patch-2.7.1-r1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/patch-2.7.1-r1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/patch-2.7.1-r1.ebuild?r1=1.3&r2=1.4
15
16 Index: patch-2.7.1-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.7.1-r1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- patch-2.7.1-r1.ebuild 19 Feb 2013 05:05:51 -0000 1.3
23 +++ patch-2.7.1-r1.ebuild 21 May 2013 17:35:57 -0000 1.4
24 @@ -1,10 +1,10 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.7.1-r1.ebuild,v 1.3 2013/02/19 05:05:51 zmedico Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.7.1-r1.ebuild,v 1.4 2013/05/21 17:35:57 vapier Exp $
29
30 EAPI=4
31
32 -inherit flag-o-matic unpacker
33 +inherit flag-o-matic
34
35 DESCRIPTION="Utility to apply diffs to files"
36 HOMEPAGE="http://www.gnu.org/software/patch/patch.html"
37 @@ -22,6 +22,8 @@
38 src_configure() {
39 use static && append-ldflags -static
40
41 + # Do not let $ED mess up the search for `ed` 470210.
42 + ac_cv_path_ED=$(type -P ed) \
43 econf \
44 $(use_enable xattr) \
45 --program-prefix="$(use userland_BSD && echo g)"
46
47
48
49 1.63 sys-devel/patch/ChangeLog
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/ChangeLog?rev=1.63&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/ChangeLog?rev=1.63&content-type=text/plain
53 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/ChangeLog?r1=1.62&r2=1.63
54
55 Index: ChangeLog
56 ===================================================================
57 RCS file: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v
58 retrieving revision 1.62
59 retrieving revision 1.63
60 diff -u -r1.62 -r1.63
61 --- ChangeLog 19 Feb 2013 05:05:51 -0000 1.62
62 +++ ChangeLog 21 May 2013 17:35:57 -0000 1.63
63 @@ -1,6 +1,10 @@
64 # ChangeLog for sys-devel/patch
65 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
66 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.62 2013/02/19 05:05:51 zmedico Exp $
67 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.63 2013/05/21 17:35:57 vapier Exp $
68 +
69 + 21 May 2013; Mike Frysinger <vapier@g.o> patch-2.7.1-r1.ebuild:
70 + Do not let $ED from the EAPI mess up the search for `ed` #470210 by Roman
71 + Žilka.
72
73 19 Feb 2013; Zac Medico <zmedico@g.o> patch-2.7.1-r1.ebuild:
74 Add ~arm-linux keyword.