Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/virtualenv: ChangeLog virtualenv-1.9.1-r1.ebuild
Date: Tue, 04 Jun 2013 01:59:57
Message-Id: 20130604015949.8F31A21710@flycatcher.gentoo.org
1 radhermit 13/06/04 01:59:49
2
3 Modified: ChangeLog virtualenv-1.9.1-r1.ebuild
4 Log:
5 Use multiline PATCHES array and drop unnecessary directory argument for tests.
6
7 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
8
9 Revision Changes Path
10 1.86 dev-python/virtualenv/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.86&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.86&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?r1=1.85&r2=1.86
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v
19 retrieving revision 1.85
20 retrieving revision 1.86
21 diff -u -r1.85 -r1.86
22 --- ChangeLog 4 Jun 2013 01:56:30 -0000 1.85
23 +++ ChangeLog 4 Jun 2013 01:59:49 -0000 1.86
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-python/virtualenv
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.85 2013/06/04 01:56:30 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.86 2013/06/04 01:59:49 radhermit Exp $
29 +
30 + 04 Jun 2013; Tim Harder <radhermit@g.o> virtualenv-1.9.1-r1.ebuild:
31 + Use multiline PATCHES array and drop unnecessary directory argument for
32 + tests.
33
34 04 Jun 2013; Tim Harder <radhermit@g.o> virtualenv-1.9.1-r1.ebuild:
35 Add python3.3 support.
36
37
38
39 1.5 dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild?rev=1.5&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild?rev=1.5&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild?r1=1.4&r2=1.5
44
45 Index: virtualenv-1.9.1-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild,v
48 retrieving revision 1.4
49 retrieving revision 1.5
50 diff -u -r1.4 -r1.5
51 --- virtualenv-1.9.1-r1.ebuild 4 Jun 2013 01:56:30 -0000 1.4
52 +++ virtualenv-1.9.1-r1.ebuild 4 Jun 2013 01:59:49 -0000 1.5
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild,v 1.4 2013/06/04 01:56:30 radhermit Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.9.1-r1.ebuild,v 1.5 2013/06/04 01:59:49 radhermit Exp $
58
59 EAPI="5"
60 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
61 @@ -28,8 +28,10 @@
62 PYTHON_MODNAME="virtualenv.py virtualenv_support"
63
64 # let the python eclass handle script versioning
65 -PATCHES=( "${FILESDIR}"/${PN}-1.8.2-no-versioned-script.patch
66 - "${FILESDIR}"/${P}-pypy.patch )
67 +PATCHES=(
68 + "${FILESDIR}"/${PN}-1.8.2-no-versioned-script.patch
69 + "${FILESDIR}"/${P}-pypy.patch
70 +)
71
72 python_compile_all() {
73 use doc && emake -C docs html
74 @@ -40,5 +42,5 @@
75 }
76
77 python_test() {
78 - nosetests "${S}"/tests || die
79 + nosetests || die
80 }