Gentoo Archives: gentoo-commits

From: "Marc Schiffbauer (mschiff)" <mschiff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cliapp: ChangeLog cliapp-0.29.ebuild
Date: Sun, 24 Jun 2012 15:14:14
Message-Id: 20120624151358.DD5D02004B@flycatcher.gentoo.org
1 mschiff 12/06/24 15:13:58
2
3 Modified: ChangeLog cliapp-0.29.ebuild
4 Log:
5 Fix tests. Closes #423101
6
7 (Portage version: 2.2.0_alpha111/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-python/cliapp/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliapp/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliapp/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliapp/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 15 Jun 2012 10:16:15 -0000 1.1
23 +++ ChangeLog 24 Jun 2012 15:13:58 -0000 1.2
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-python/cliapp
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.1 2012/06/15 10:16:15 mschiff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.2 2012/06/24 15:13:58 mschiff Exp $
29 +
30 + 24 Jun 2012; Marc Schiffbauer <mschiff@g.o> cliapp-0.29.ebuild:
31 + Fix tests. Closes #423101
32
33 *cliapp-0.29 (15 Jun 2012)
34
35
36
37
38 1.2 dev-python/cliapp/cliapp-0.29.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliapp/cliapp-0.29.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliapp/cliapp-0.29.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cliapp/cliapp-0.29.ebuild?r1=1.1&r2=1.2
43
44 Index: cliapp-0.29.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-0.29.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- cliapp-0.29.ebuild 15 Jun 2012 10:16:15 -0000 1.1
51 +++ cliapp-0.29.ebuild 24 Jun 2012 15:13:58 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-0.29.ebuild,v 1.1 2012/06/15 10:16:15 mschiff Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-0.29.ebuild,v 1.2 2012/06/24 15:13:58 mschiff Exp $
57
58 EAPI=4
59
60 @@ -17,7 +17,16 @@
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 +DEPEND="test? ( dev-python/CoverageTestRunner )"
65 +
66 pkg_setup() {
67 python_set_active_version 2
68 python_pkg_setup
69 }
70 +
71 +src_test() {
72 + # remove build directory so tests will not fail
73 + # due to tests defined twice
74 + rm -rf "${S}"/build
75 + default
76 +}