Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-physics/camfr: ChangeLog camfr-20070717-r2.ebuild
Date: Fri, 25 Jun 2010 22:37:29
Message-Id: 20100625223723.4CEF42CF6A@corvid.gentoo.org
1 arfrever 10/06/25 22:37:22
2
3 Modified: ChangeLog camfr-20070717-r2.ebuild
4 Log:
5 Fix src_test() (bug #316245).
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.18 sci-physics/camfr/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/camfr/ChangeLog?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/camfr/ChangeLog?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/camfr/ChangeLog?r1=1.17&r2=1.18
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-physics/camfr/ChangeLog,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -u -r1.17 -r1.18
21 --- ChangeLog 25 Jun 2010 13:25:00 -0000 1.17
22 +++ ChangeLog 25 Jun 2010 22:37:22 -0000 1.18
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-physics/camfr
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/camfr/ChangeLog,v 1.17 2010/06/25 13:25:00 jlec Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/camfr/ChangeLog,v 1.18 2010/06/25 22:37:22 arfrever Exp $
28 +
29 + 25 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
30 + camfr-20070717-r2.ebuild:
31 + Fix src_test() (bug #316245).
32
33 *camfr-20070717-r2 (25 Jun 2010)
34
35
36
37
38 1.2 sci-physics/camfr/camfr-20070717-r2.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/camfr/camfr-20070717-r2.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/camfr/camfr-20070717-r2.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/camfr/camfr-20070717-r2.ebuild?r1=1.1&r2=1.2
43
44 Index: camfr-20070717-r2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-physics/camfr/camfr-20070717-r2.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- camfr-20070717-r2.ebuild 25 Jun 2010 13:25:00 -0000 1.1
51 +++ camfr-20070717-r2.ebuild 25 Jun 2010 22:37:22 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/camfr/camfr-20070717-r2.ebuild,v 1.1 2010/06/25 13:25:00 jlec Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/camfr/camfr-20070717-r2.ebuild,v 1.2 2010/06/25 22:37:22 arfrever Exp $
57
58 EAPI=2
59
60 @@ -73,11 +73,13 @@
61 }
62
63 src_test() {
64 - # trick to avoid X in testing (bug #229753)
65 - echo "backend : Agg" > matplotlibrc
66 - PYTHONPATH=".:visualisation" "$(PYTHON)" testsuite/camfr_test.py \
67 - || die "tests failed"
68 - rm -f matplotlibrc
69 + testing() {
70 + # trick to avoid X in testing (bug #229753)
71 + echo "backend : Agg" > matplotlibrc
72 + PYTHONPATH=".:visualisation" "$(PYTHON)" testsuite/camfr_test.py
73 + rm -f matplotlibrc
74 + }
75 + python_execute_function -s testing
76 }
77
78 src_install() {