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-12.0.5.ebuild
Date: Sun, 04 Jan 2015 01:23:25
Message-Id: 20150104012320.EED2DECFE@oystercatcher.gentoo.org
1 radhermit 15/01/04 01:23:20
2
3 Modified: ChangeLog
4 Added: virtualenv-12.0.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.134 dev-python/virtualenv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.134&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.134&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?r1=1.133&r2=1.134
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v
20 retrieving revision 1.133
21 retrieving revision 1.134
22 diff -u -r1.133 -r1.134
23 --- ChangeLog 24 Dec 2014 04:12:32 -0000 1.133
24 +++ ChangeLog 4 Jan 2015 01:23:20 -0000 1.134
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/virtualenv
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.133 2014/12/24 04:12:32 radhermit Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.134 2015/01/04 01:23:20 radhermit Exp $
31 +
32 +*virtualenv-12.0.5 (04 Jan 2015)
33 +
34 + 04 Jan 2015; Tim Harder <radhermit@g.o> +virtualenv-12.0.5.ebuild:
35 + Version bump.
36
37 *virtualenv-12.0.4 (24 Dec 2014)
38
39
40
41
42 1.1 dev-python/virtualenv/virtualenv-12.0.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-12.0.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-12.0.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: virtualenv-12.0.5.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-12.0.5.ebuild,v 1.1 2015/01/04 01:23:20 radhermit Exp $
52
53 EAPI="5"
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Virtual Python Environment builder"
59 HOMEPAGE="http://www.virtualenv.org/ http://pypi.python.org/pypi/virtualenv"
60 SRC_URI="https://github.com/pypa/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
61
62 LICENSE="MIT"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
64 SLOT="0"
65 IUSE="doc test"
66
67 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
68 DEPEND="${RDEPEND}
69 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
70 test? (
71 dev-python/mock[${PYTHON_USEDEP}]
72 dev-python/pytest[${PYTHON_USEDEP}]
73 )"
74
75 DOCS=( docs/index.rst docs/changes.rst )
76
77 PATCHES=(
78 "${FILESDIR}"/${PN}-1.8.2-no-versioned-script.patch
79 "${FILESDIR}"/${PN}-12.0-skip-broken-test.patch
80 )
81
82 python_compile_all() {
83 use doc && emake -C docs html
84 }
85
86 python_install_all() {
87 use doc && local HTML_DOCS=( "${S}"/docs/_build/html/. )
88 distutils-r1_python_install_all
89 }
90
91 python_test() {
92 py.test || die "Tests fail with ${EPYTHON}"
93 }