Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/cmake: cmake-2.8.4.ebuild ChangeLog
Date: Mon, 21 Feb 2011 15:55:13
Message-Id: 20110221155503.C5B0820054@flycatcher.gentoo.org
1 scarabeus 11/02/21 15:55:03
2
3 Modified: cmake-2.8.4.ebuild ChangeLog
4 Log:
5 Exclude sdcc test.
6
7 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-util/cmake/cmake-2.8.4.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.4.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.4.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.4.ebuild?r1=1.2&r2=1.3
15
16 Index: cmake-2.8.4.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.4.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- cmake-2.8.4.ebuild 21 Feb 2011 15:31:12 -0000 1.2
23 +++ cmake-2.8.4.ebuild 21 Feb 2011 15:55:03 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.4.ebuild,v 1.2 2011/02/21 15:31:12 scarabeus Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.4.ebuild,v 1.3 2011/02/21 15:55:03 scarabeus Exp $
29
30 EAPI=4
31
32 @@ -121,8 +121,13 @@
33 sed -i -e 's:#IGNORE ::g' "${S}"/Tests/OutDir/CMakeLists.txt || die
34 pushd "${CMAKE_BUILD_DIR}" > /dev/null
35 # Excluded tests:
36 - # BootstrapTest: we actualy bootstrap it every time so why test it
37 - "${CMAKE_BUILD_DIR}"/bin/ctest -E BootstrapTest || die "Tests failed"
38 + # BootstrapTest: we actualy bootstrap it every time so why test it.
39 + # SimpleCOnly_sdcc: sdcc choke on global cflags so just skip the test
40 + # as it was never intended to be used this way.
41 + "${CMAKE_BUILD_DIR}"/bin/ctest \
42 + -E BootstrapTest \
43 + -E SimpleCOnly_sdcc \
44 + || die "Tests failed"
45 popd > /dev/null
46 }
47
48
49
50
51 1.154 dev-util/cmake/ChangeLog
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.154&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.154&content-type=text/plain
55 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.153&r2=1.154
56
57 Index: ChangeLog
58 ===================================================================
59 RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
60 retrieving revision 1.153
61 retrieving revision 1.154
62 diff -u -r1.153 -r1.154
63 --- ChangeLog 21 Feb 2011 15:31:12 -0000 1.153
64 +++ ChangeLog 21 Feb 2011 15:55:03 -0000 1.154
65 @@ -1,6 +1,9 @@
66 # ChangeLog for dev-util/cmake
67 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
68 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.153 2011/02/21 15:31:12 scarabeus Exp $
69 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.154 2011/02/21 15:55:03 scarabeus Exp $
70 +
71 + 21 Feb 2011; Tomáš Chvátal <scarabeus@g.o> cmake-2.8.4.ebuild:
72 + Exclude sdcc test.
73
74 21 Feb 2011; Tomáš Chvátal <scarabeus@g.o> cmake-2.8.4.ebuild:
75 Exclude bootstraptest because it is pointless for us.