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 dev-python/paste: paste-1.7.4.ebuild
Date: Sun, 27 Jun 2010 23:17:14
Message-Id: 20100627231711.700002CF9D@corvid.gentoo.org
1 arfrever 10/06/27 23:17:11
2
3 Modified: paste-1.7.4.ebuild
4 Log:
5 Fix dependencies. Simplify src_test().
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-python/paste/paste-1.7.4.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/paste-1.7.4.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/paste-1.7.4.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/paste-1.7.4.ebuild?r1=1.1&r2=1.2
14
15 Index: paste-1.7.4.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/paste/paste-1.7.4.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- paste-1.7.4.ebuild 26 Jun 2010 04:27:36 -0000 1.1
22 +++ paste-1.7.4.ebuild 27 Jun 2010 23:17:11 -0000 1.2
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/dev-python/paste/paste-1.7.4.ebuild,v 1.1 2010/06/26 04:27:36 arfrever Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/paste-1.7.4.ebuild,v 1.2 2010/06/27 23:17:11 arfrever Exp $
28
29 EAPI="3"
30 PYTHON_DEPEND="2"
31 @@ -22,10 +22,10 @@
32 KEYWORDS="~amd64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris"
33 IUSE="doc flup openid"
34
35 -RDEPEND="flup? ( dev-python/flup )
36 +RDEPEND="dev-python/setuptools
37 + flup? ( dev-python/flup )
38 openid? ( dev-python/python-openid )"
39 DEPEND="${RDEPEND}
40 - dev-python/setuptools
41 doc? ( dev-python/sphinx )"
42
43 S="${WORKDIR}/${MY_P}"
44 @@ -58,10 +58,7 @@
45
46 # Define custom src_test() due to requirement of PYTHONPATH=".".
47 src_test() {
48 - testing() {
49 - PYTHONPATH="." nosetests
50 - }
51 - python_execute_function testing
52 + python_execute_nosetests -P .
53 }
54
55 src_install() {