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-block/parted: ChangeLog parted-3.0.ebuild
Date: Tue, 10 Jan 2012 00:18:03
Message-Id: 20120110001752.5069E2004B@flycatcher.gentoo.org
1 vapier 12/01/10 00:17:52
2
3 Modified: ChangeLog parted-3.0.ebuild
4 Log:
5 Handle implicit dev-libs/check dep via USE=test.
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 sys-block/parted/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 26 Nov 2011 18:09:50 -0000 1.12
23 +++ ChangeLog 10 Jan 2012 00:17:52 -0000 1.13
24 @@ -1,6 +1,9 @@
25 # ChangeLog for sys-block/parted
26 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.12 2011/11/26 18:09:50 armin76 Exp $
28 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.13 2012/01/10 00:17:52 vapier Exp $
30 +
31 + 10 Jan 2012; Mike Frysinger <vapier@g.o> parted-3.0.ebuild:
32 + Handle implicit dev-libs/check dep via USE=test.
33
34 26 Nov 2011; Raúl Porcel <armin76@g.o> parted-3.0.ebuild:
35 alpha/ia64/s390/sh/sparc stable wrt #385221
36
37
38
39 1.7 sys-block/parted/parted-3.0.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.0.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.0.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.0.ebuild?r1=1.6&r2=1.7
44
45 Index: parted-3.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.0.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- parted-3.0.ebuild 26 Nov 2011 18:09:50 -0000 1.6
52 +++ parted-3.0.ebuild 10 Jan 2012 00:17:52 -0000 1.7
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2011 Gentoo Foundation
55 +# Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.0.ebuild,v 1.6 2011/11/26 18:09:50 armin76 Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.0.ebuild,v 1.7 2012/01/10 00:17:52 vapier Exp $
59
60 EAPI="3"
61
62 @@ -15,7 +15,7 @@
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86"
66 -IUSE="+debug device-mapper nls readline selinux static-libs"
67 +IUSE="+debug device-mapper nls readline selinux static-libs test"
68
69 # specific version for gettext needed
70 # to fix bug 85999
71 @@ -30,6 +30,7 @@
72 DEPEND="
73 ${RDEPEND}
74 dev-util/pkgconfig
75 + test? ( >=dev-libs/check-0.9.3 )
76 "
77
78 src_prepare() {
79 @@ -40,6 +41,9 @@
80 -e '/t4100-msdos-partition-limits.sh/d' \
81 -e '/t4100-dvh-partition-limits.sh/d' \
82 -e '/t6000-dm.sh/d' || die "sed failed"
83 + # there is no configure flag for controlling the dev-libs/check test
84 + sed -i configure.ac \
85 + -e "s:have_check=[a-z]*:have_check=$(usex test):g" || die
86
87 eautoreconf
88 }
89 @@ -52,8 +56,7 @@
90 $(use_enable selinux) \
91 $(use_enable device-mapper) \
92 $(use_enable static-libs static) \
93 - --disable-rpath \
94 - || die "Configure failed"
95 + --disable-rpath
96 }
97
98 src_test() {