Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/zzuf: zzuf-0.13-r1.ebuild ChangeLog
Date: Wed, 31 Oct 2012 18:25:36
Message-Id: 20121031182520.6E02B21600@flycatcher.gentoo.org
1 kensington 12/10/31 18:25:20
2
3 Modified: zzuf-0.13-r1.ebuild ChangeLog
4 Log:
5 Restrict tests that fail with sandbox enabled, wrt bug #279465. Migrate to EAPI 4.
6
7 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
8
9 Revision Changes Path
10 1.4 app-forensics/zzuf/zzuf-0.13-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/zzuf/zzuf-0.13-r1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/zzuf/zzuf-0.13-r1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/zzuf/zzuf-0.13-r1.ebuild?r1=1.3&r2=1.4
15
16 Index: zzuf-0.13-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-forensics/zzuf/zzuf-0.13-r1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- zzuf-0.13-r1.ebuild 21 May 2012 18:35:08 -0000 1.3
23 +++ zzuf-0.13-r1.ebuild 31 Oct 2012 18:25:20 -0000 1.4
24 @@ -1,8 +1,8 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/zzuf/zzuf-0.13-r1.ebuild,v 1.3 2012/05/21 18:35:08 xarthisius Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/zzuf/zzuf-0.13-r1.ebuild,v 1.4 2012/10/31 18:25:20 kensington Exp $
29
30 -EAPI="2"
31 +EAPI=4
32
33 inherit autotools eutils
34
35 @@ -16,8 +16,10 @@
36 KEYWORDS="~amd64 ~sparc ~x86"
37 IUSE=""
38
39 -DEPEND=""
40 -RDEPEND=""
41 +# fails with sandbox enabled
42 +RESTRICT="test"
43 +
44 +DOCS=( AUTHORS ChangeLog NEWS README TODO )
45
46 src_prepare() {
47 sed -i -e '/CFLAGS/d' "${S}"/configure.ac \
48 @@ -35,35 +37,11 @@
49 # preloading, so there is no reason to build it statically, unless
50 # you want to use zzuf with a static-linked executable, which I'm
51 # not even sure would be a good idea.
52 - econf \
53 - --disable-dependency-tracking \
54 - --disable-static \
55 - || die "econf failed"
56 -}
57 -
58 -src_compile() {
59 - emake || die "emake failed"
60 -}
61 -
62 -# This could be removed in next versions if my patches will be applied
63 -# by Sam. -- Diego 'Flameeyes'
64 -src_test() {
65 - if has sandbox ${FEATURES}; then
66 - ewarn "zzuf tests don't work correctly when sandbox is enabled,"
67 - ewarn "skipping tests. If you want to run the testsuite, please"
68 - ewarn "disable sandbox for this build."
69 - return
70 - fi
71 -
72 - cd "${S}"/test
73 - emake check || die "Unable to build tools needed for testsuite"
74 -
75 - ./testsuite.sh || die "testsuite failed"
76 + econf --disable-static
77 }
78
79 src_install() {
80 - emake DESTDIR="${D}" install || die "emake install failed"
81 - dodoc AUTHORS ChangeLog NEWS README TODO
82 + default
83
84 find "${D}" -name '*.la' -delete
85 }
86
87
88
89 1.12 app-forensics/zzuf/ChangeLog
90
91 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/zzuf/ChangeLog?rev=1.12&view=markup
92 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/zzuf/ChangeLog?rev=1.12&content-type=text/plain
93 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/zzuf/ChangeLog?r1=1.11&r2=1.12
94
95 Index: ChangeLog
96 ===================================================================
97 RCS file: /var/cvsroot/gentoo-x86/app-forensics/zzuf/ChangeLog,v
98 retrieving revision 1.11
99 retrieving revision 1.12
100 diff -u -r1.11 -r1.12
101 --- ChangeLog 21 May 2012 18:35:08 -0000 1.11
102 +++ ChangeLog 31 Oct 2012 18:25:20 -0000 1.12
103 @@ -1,6 +1,10 @@
104 # ChangeLog for app-forensics/zzuf
105 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
106 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/zzuf/ChangeLog,v 1.11 2012/05/21 18:35:08 xarthisius Exp $
107 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/zzuf/ChangeLog,v 1.12 2012/10/31 18:25:20 kensington Exp $
108 +
109 + 31 Oct 2012; Michael Palimaka <kensington@g.o> zzuf-0.13-r1.ebuild:
110 + Restrict tests that fail with sandbox enabled, wrt bug #279465. Migrate to
111 + EAPI 4.
112
113 21 May 2012; Kacper Kowalik <xarthisius@g.o> zzuf-0.13-r1.ebuild:
114 Add missing inheritance of eutils.eclass
115 @@ -47,4 +51,3 @@
116 19 Apr 2008; Diego Pettenò <flameeyes@g.o> +metadata.xml,
117 +zzuf-0.10.ebuild:
118 Initial import of zzuf. Thanks also to Jakub Moc in bug #188646.
119 -