Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/tox: tox-1.4.2.ebuild ChangeLog
Date: Wed, 31 Oct 2012 07:44:25
Message-Id: 20121031074409.086FE21600@flycatcher.gentoo.org
1 idella4 12/10/31 07:44:08
2
3 Modified: tox-1.4.2.ebuild ChangeLog
4 Log:
5 Added patch to xfail flawed tests, added doc use flag
6
7 (Portage version: 2.1.11.30/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.2 dev-python/tox/tox-1.4.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/tox-1.4.2.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/tox-1.4.2.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/tox-1.4.2.ebuild?r1=1.1&r2=1.2
15
16 Index: tox-1.4.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/tox/tox-1.4.2.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- tox-1.4.2.ebuild 30 Jul 2012 07:01:22 -0000 1.1
23 +++ tox-1.4.2.ebuild 31 Oct 2012 07:44:08 -0000 1.2
24 @@ -1,13 +1,13 @@
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/tox/tox-1.4.2.ebuild,v 1.1 2012/07/30 07:01:22 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tox/tox-1.4.2.ebuild,v 1.2 2012/10/31 07:44:08 idella4 Exp $
29
30 EAPI=4
31
32 PYTHON_DEPEND="*"
33 SUPPORT_PYTHON_ABIS="1"
34
35 -inherit distutils
36 +inherit distutils eutils
37
38 DESCRIPTION="virtualenv-based automation of test activities"
39 HOMEPAGE="http://tox.testrun.org http://pypi.python.org/pypi/tox"
40 @@ -16,17 +16,34 @@
41 LICENSE="BSD"
42 SLOT="0"
43 KEYWORDS="~amd64 ~x86"
44 -IUSE=""
45 +IUSE="doc"
46
47 DEPEND="dev-python/setuptools
48 - dev-python/virtualenv
49 + >=dev-python/virtualenv-1.7
50 dev-python/pip
51 - >=dev-python/pytest-2.2.3"
52 + dev-python/pytest
53 + >=dev-python/py-1.4.9
54 + dev-python/argparse
55 + doc? ( dev-python/sphinx )"
56 RDEPEND="${DEPEND}"
57
58 -#src_test() {
59 -# testing() {
60 -# py.test -x
61 -# }
62 -# python_execute_function testing
63 -#}
64 +src_prepare() {
65 + epatch "${FILESDIR}"/${P}-rm_version_test.patch
66 +}
67 +
68 +src_compile() {
69 + distutils_src_compile
70 + use doc && emake -C doc html
71 +}
72 +
73 +src_test() {
74 + testing() {
75 + PYTHONPATH=. py.test -x
76 + }
77 + python_execute_function testing
78 +}
79 +
80 +src_install() {
81 + distutils_src_install
82 + use doc && dohtml -r doc/_build/html/
83 +}
84
85
86
87 1.5 dev-python/tox/ChangeLog
88
89 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/ChangeLog?rev=1.5&view=markup
90 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/ChangeLog?rev=1.5&content-type=text/plain
91 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/ChangeLog?r1=1.4&r2=1.5
92
93 Index: ChangeLog
94 ===================================================================
95 RCS file: /var/cvsroot/gentoo-x86/dev-python/tox/ChangeLog,v
96 retrieving revision 1.4
97 retrieving revision 1.5
98 diff -u -r1.4 -r1.5
99 --- ChangeLog 30 Jul 2012 07:01:23 -0000 1.4
100 +++ ChangeLog 31 Oct 2012 07:44:08 -0000 1.5
101 @@ -1,6 +1,10 @@
102 # ChangeLog for dev-python/tox
103 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
104 -# $Header: /var/cvsroot/gentoo-x86/dev-python/tox/ChangeLog,v 1.4 2012/07/30 07:01:23 patrick Exp $
105 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tox/ChangeLog,v 1.5 2012/10/31 07:44:08 idella4 Exp $
106 +
107 + 31 Oct 2012; <testuser@g.o> +files/tox-1.4.2-rm_version_test.patch,
108 + tox-1.4.2.ebuild:
109 + Added patch to xfail flawed tests, added doc use flag
110
111 *tox-1.4.2 (30 Jul 2012)