Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/parted: parted-2.3.ebuild ChangeLog
Date: Thu, 01 Jul 2010 17:40:38
Message-Id: 20100701174034.8735F2C621@corvid.gentoo.org
1 jer 10/07/01 17:40:34
2
3 Modified: parted-2.3.ebuild ChangeLog
4 Log:
5 Remove more tests that do FAIL instead of SKIP. Do not die when emake check fails (bug #316453 comment #15).
6 (Portage version: 2.2_rc67/cvs/Linux i686)
7
8 Revision Changes Path
9 1.3 sys-apps/parted/parted-2.3.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/parted/parted-2.3.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/parted/parted-2.3.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/parted/parted-2.3.ebuild?r1=1.2&r2=1.3
14
15 Index: parted-2.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-2.3.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- parted-2.3.ebuild 31 May 2010 01:04:37 -0000 1.2
22 +++ parted-2.3.ebuild 1 Jul 2010 17:40:34 -0000 1.3
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-2.3.ebuild,v 1.2 2010/05/31 01:04:37 jer Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-2.3.ebuild,v 1.3 2010/07/01 17:40:34 jer Exp $
28
29 EAPI="2"
30
31 @@ -30,14 +30,12 @@
32 )"
33
34 src_prepare() {
35 - # The symlink test should SKIP instead of FAIL
36 - # when /dev/mapper is not found
37 + # Remove tests known to FAIL instead of SKIP without OS/userland support
38 sed -i libparted/tests/Makefile.am \
39 -e 's|t3000-symlink.sh||g' || die "sed failed"
40 -
41 - # The t6000-dm.sh test should equally SKIP instead of FAIL
42 - # when no dm support is present in the kernel
43 sed -i tests/Makefile.am \
44 + -e '/t4100-msdos-partition-limits.sh/d' \
45 + -e '/t4100-dvh-partition-limits.sh/d' \
46 -e '/t6000-dm.sh/d' || die "sed failed"
47
48 eautoreconf
49 @@ -56,7 +54,9 @@
50
51 src_test() {
52 if use debug; then
53 - emake check || die "emake check failed"
54 + # Do not die when tests fail - some requirements are not
55 + # properly checked and should not lead to the ebuild failing.
56 + emake check
57 else
58 ewarn "Skipping tests because USE=-debug is set."
59 fi
60
61
62
63 1.150 sys-apps/parted/ChangeLog
64
65 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/parted/ChangeLog?rev=1.150&view=markup
66 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/parted/ChangeLog?rev=1.150&content-type=text/plain
67 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/parted/ChangeLog?r1=1.149&r2=1.150
68
69 Index: ChangeLog
70 ===================================================================
71 RCS file: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v
72 retrieving revision 1.149
73 retrieving revision 1.150
74 diff -u -r1.149 -r1.150
75 --- ChangeLog 31 May 2010 01:04:37 -0000 1.149
76 +++ ChangeLog 1 Jul 2010 17:40:34 -0000 1.150
77 @@ -1,6 +1,10 @@
78 # ChangeLog for sys-apps/parted
79 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
80 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.149 2010/05/31 01:04:37 jer Exp $
81 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.150 2010/07/01 17:40:34 jer Exp $
82 +
83 + 01 Jul 2010; Jeroen Roovers <jer@g.o> parted-2.3.ebuild:
84 + Remove more tests that do FAIL instead of SKIP. Do not die when emake
85 + check fails (bug #316453 comment #15).
86
87 31 May 2010; Jeroen Roovers <jer@g.o> parted-2.3.ebuild:
88 Does not work with automake-1.10.3 (bug #322019).