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.ebuild ChangeLog patch-2.7.ebuild
Date: Fri, 28 Sep 2012 22:17:02
Message-Id: 20120928221651.1B17D21600@flycatcher.gentoo.org
1 vapier 12/09/28 22:16:51
2
3 Modified: ChangeLog
4 Added: patch-2.7.1.ebuild
5 Removed: patch-2.7.ebuild
6 Log:
7 Version bump which should fix #435384 by Ben Kohler and #435862 by Andrey Volkov.
8
9 (Portage version: 2.2.0_alpha131/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.59 sys-devel/patch/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/ChangeLog?rev=1.59&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/ChangeLog?rev=1.59&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/ChangeLog?r1=1.58&r2=1.59
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v
21 retrieving revision 1.58
22 retrieving revision 1.59
23 diff -u -r1.58 -r1.59
24 --- ChangeLog 19 Sep 2012 11:45:58 -0000 1.58
25 +++ ChangeLog 28 Sep 2012 22:16:50 -0000 1.59
26 @@ -1,6 +1,13 @@
27 # ChangeLog for sys-devel/patch
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.58 2012/09/19 11:45:58 aballier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.59 2012/09/28 22:16:50 vapier Exp $
31 +
32 +*patch-2.7.1 (28 Sep 2012)
33 +
34 + 28 Sep 2012; Mike Frysinger <vapier@g.o> +patch-2.7.1.ebuild,
35 + -patch-2.7.ebuild:
36 + Version bump which should fix #435384 by Ben Kohler and #435862 by Andrey
37 + Volkov.
38
39 19 Sep 2012; Alexis Ballier <aballier@g.o> patch-2.7.ebuild:
40 restore bsd keywords, xattr useflag is now masked, bug #435474
41
42
43
44 1.1 sys-devel/patch/patch-2.7.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/patch-2.7.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/patch-2.7.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: patch-2.7.1.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.7.1.ebuild,v 1.1 2012/09/28 22:16:50 vapier Exp $
54
55 inherit flag-o-matic unpacker
56
57 DESCRIPTION="Utility to apply diffs to files"
58 HOMEPAGE="http://www.gnu.org/software/patch/patch.html"
59 SRC_URI="mirror://gnu/patch/${P}.tar.xz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
64 IUSE="static test xattr"
65
66 RDEPEND="xattr? ( sys-apps/attr )"
67 DEPEND="${RDEPEND}
68 test? ( sys-apps/ed )"
69
70 src_compile() {
71 use static && append-ldflags -static
72
73 local myconf=""
74 [[ ${USERLAND} != "GNU" ]] && myconf="--program-prefix=g"
75 econf \
76 $(use_enable xattr) \
77 ${myconf}
78
79 emake || die
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die
84 dodoc AUTHORS ChangeLog NEWS README
85 }