Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: ChangeLog diffutils-3.1.ebuild
Date: Fri, 02 Sep 2011 09:33:09
Message-Id: 20110902093258.E9A4A2004C@flycatcher.gentoo.org
1 radhermit 11/09/02 09:32:58
2
3 Modified: ChangeLog
4 Added: diffutils-3.1.ebuild
5 Log:
6 Version bump. Update to EAPI 4.
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.64 sys-apps/diffutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.64&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.64&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.63&r2=1.64
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
20 retrieving revision 1.63
21 retrieving revision 1.64
22 diff -u -r1.63 -r1.64
23 --- ChangeLog 29 May 2011 11:25:20 -0000 1.63
24 +++ ChangeLog 2 Sep 2011 09:32:58 -0000 1.64
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/diffutils
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.63 2011/05/29 11:25:20 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.64 2011/09/02 09:32:58 radhermit Exp $
30 +
31 +*diffutils-3.1 (02 Sep 2011)
32 +
33 + 02 Sep 2011; Tim Harder <radhermit@g.o> +diffutils-3.1.ebuild:
34 + Version bump. Update to EAPI 4.
35
36 29 May 2011; Raúl Porcel <armin76@g.o> diffutils-3.0.ebuild:
37 alpha/ia64/m68k/s390/sh/sparc stable wrt #359657
38
39
40
41 1.1 sys-apps/diffutils/diffutils-3.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: diffutils-3.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.1.ebuild,v 1.1 2011/09/02 09:32:58 radhermit Exp $
51
52 EAPI=4
53
54 inherit flag-o-matic
55
56 DESCRIPTION="Tools to make diffs and compare files"
57 HOMEPAGE="http://www.gnu.org/software/diffutils/"
58 SRC_URI="ftp://alpha.gnu.org/gnu/diffutils/${P}.tar.gz
59 mirror://gnu/diffutils/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
64 IUSE="nls static"
65
66 RDEPEND=""
67 DEPEND="nls? ( sys-devel/gettext )"
68
69 DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
70
71 src_configure() {
72 use static && append-ldflags -static
73
74 # Disable automagic dependency over libsigsegv; see bug #312351.
75 export ac_cv_libsigsegv=no
76
77 econf \
78 --with-packager="Gentoo" \
79 --with-packager-version="${PVR}" \
80 --with-packager-bug-reports="http://bugs.gentoo.org/" \
81 $(use_enable nls)
82 }
83
84 src_test() {
85 # explicitly allow parallel testing
86 emake check
87 }