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.7.2.ebuild ChangeLog
Date: Thu, 28 Aug 2014 06:49:59
Message-Id: 20140828064955.27FD141A5@oystercatcher.gentoo.org
1 idella4 14/08/28 06:49:55
2
3 Modified: ChangeLog
4 Added: tox-1.7.2.ebuild
5 Log:
6 bump; add pypy support
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.19 dev-python/tox/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/tox/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 6 Jul 2014 12:50:50 -0000 1.18
24 +++ ChangeLog 28 Aug 2014 06:49:55 -0000 1.19
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/tox
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/tox/ChangeLog,v 1.18 2014/07/06 12:50:50 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tox/ChangeLog,v 1.19 2014/08/28 06:49:55 idella4 Exp $
30 +
31 +*tox-1.7.2 (28 Aug 2014)
32 +
33 + 28 Aug 2014; Ian Delaney <idella4@g.o> +tox-1.7.2.ebuild:
34 + bump; add pypy support
35
36 06 Jul 2014; Michał Górny <mgorny@g.o> tox-1.4.3-r1.ebuild,
37 tox-1.4.3.ebuild, tox-1.7.1.ebuild:
38
39
40
41 1.1 dev-python/tox/tox-1.7.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/tox-1.7.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/tox/tox-1.7.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tox-1.7.2.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/tox/tox-1.7.2.ebuild,v 1.1 2014/08/28 06:49:55 idella4 Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
54
55 inherit distutils-r1
56
57 DESCRIPTION="virtualenv-based automation of test activities"
58 HOMEPAGE="http://tox.testrun.org http://pypi.python.org/pypi/tox"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc test"
65
66 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
67 >=dev-python/virtualenv-1.11.2[${PYTHON_USEDEP}]
68 dev-python/pip[${PYTHON_USEDEP}]
69 >=dev-python/py-1.4.17[${PYTHON_USEDEP}]"
70 DEPEND="${RDEPEND}
71 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
72 test? ( >=dev-python/pytest-2.3.5[${PYTHON_USEDEP}] )"
73
74 python_prepare_all() {
75 # Prevent un-needed d'loading
76 sed -e "s/, 'sphinx.ext.intersphinx'//" -i doc/conf.py || die
77 distutils-r1_python_prepare_all
78 }
79
80 python_compile_all() {
81 use doc && emake -C doc html
82 }
83
84 python_test() {
85 distutils_install_for_testing
86 py.test -x || die "Testsuite failed under ${EPYTHON}"
87 }
88
89 python_install_all() {
90 use doc && HTML_DOCS=( "${S}"/doc/_build/html/. )
91 distutils-r1_python_install_all
92 }