Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pep8: pep8-1.0.1.ebuild pep8-1.1.ebuild ChangeLog
Date: Sat, 02 Jun 2012 15:24:58
Message-Id: 20120602152435.922022004B@flycatcher.gentoo.org
1 xarthisius 12/06/02 15:24:35
2
3 Modified: pep8-1.0.1.ebuild pep8-1.1.ebuild ChangeLog
4 Log:
5 Fix various ebuild errors. Thanks to Arfrever for reporting
6
7 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-python/pep8/pep8-1.0.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.0.1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.0.1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.0.1.ebuild?r1=1.3&r2=1.4
15
16 Index: pep8-1.0.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.0.1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- pep8-1.0.1.ebuild 29 May 2012 15:16:22 -0000 1.3
23 +++ pep8-1.0.1.ebuild 2 Jun 2012 15:24:35 -0000 1.4
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.0.1.ebuild,v 1.3 2012/05/29 15:16:22 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.0.1.ebuild,v 1.4 2012/06/02 15:24:35 xarthisius Exp $
29
30 EAPI=3
31
32 @@ -21,12 +21,12 @@
33 DEPEND="dev-python/setuptools"
34 RDEPEND="${DEPEND}"
35
36 -PYTHON_MODNAME="${PN}.py"
37 +PYTHON_MODNAME=${PN}.py
38
39 src_test() {
40
41 test_func() {
42 - PYTHONPATH=${S} ${PYTHON} ${S}/${PYTHON_MODNAME} -v --testsuite=testsuite
43 + PYTHONPATH="${S}" "$(PYTHON)" ${PYTHON_MODNAME} -v --testsuite=testsuite
44 }
45
46 python_execute_function test_func
47
48
49
50 1.2 dev-python/pep8/pep8-1.1.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.1.ebuild?rev=1.2&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.1.ebuild?rev=1.2&content-type=text/plain
54 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/pep8-1.1.ebuild?r1=1.1&r2=1.2
55
56 Index: pep8-1.1.ebuild
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.1.ebuild,v
59 retrieving revision 1.1
60 retrieving revision 1.2
61 diff -u -r1.1 -r1.2
62 --- pep8-1.1.ebuild 29 May 2012 18:33:10 -0000 1.1
63 +++ pep8-1.1.ebuild 2 Jun 2012 15:24:35 -0000 1.2
64 @@ -1,6 +1,6 @@
65 # Copyright 1999-2012 Gentoo Foundation
66 # Distributed under the terms of the GNU General Public License v2
67 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.1.ebuild,v 1.1 2012/05/29 18:33:10 xarthisius Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/pep8-1.1.ebuild,v 1.2 2012/06/02 15:24:35 xarthisius Exp $
69
70 EAPI=4
71
72 @@ -25,9 +25,9 @@
73
74 src_test() {
75 test_func() {
76 - test_ok=0
77 - PYTHONPATH="${S}" ${PYTHON} "${S}/${PYTHON_MODNAME}" -v --testsuite=testsuite || test_ok=1
78 - PYTHONPATH="${S}" ${PYTHON} "${S}/${PYTHON_MODNAME}" --doctest -v || test_ok=1
79 + local test_ok=0
80 + PYTHONPATH="${S}" "$(PYTHON)" ${PYTHON_MODNAME} -v --testsuite=testsuite || test_ok=1
81 + PYTHONPATH="${S}" "$(PYTHON)" ${PYTHON_MODNAME} --doctest -v || test_ok=1
82 return ${test_ok}
83 }
84 python_execute_function test_func
85
86
87
88 1.7 dev-python/pep8/ChangeLog
89
90 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/ChangeLog?rev=1.7&view=markup
91 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/ChangeLog?rev=1.7&content-type=text/plain
92 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pep8/ChangeLog?r1=1.6&r2=1.7
93
94 Index: ChangeLog
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v
97 retrieving revision 1.6
98 retrieving revision 1.7
99 diff -u -r1.6 -r1.7
100 --- ChangeLog 29 May 2012 18:33:10 -0000 1.6
101 +++ ChangeLog 2 Jun 2012 15:24:35 -0000 1.7
102 @@ -1,6 +1,10 @@
103 # ChangeLog for dev-python/pep8
104 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
105 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v 1.6 2012/05/29 18:33:10 xarthisius Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pep8/ChangeLog,v 1.7 2012/06/02 15:24:35 xarthisius Exp $
107 +
108 + 02 Jun 2012; Kacper Kowalik <xarthisius@g.o> pep8-1.0.1.ebuild,
109 + pep8-1.1.ebuild:
110 + Fix various ebuild errors. Thanks to Arfrever for reporting
111
112 *pep8-1.1 (29 May 2012)