Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/virtualenv: virtualenv-13.0.3.ebuild ChangeLog
Date: Tue, 02 Jun 2015 08:49:32
Message-Id: 20150602084927.086A8A10@oystercatcher.gentoo.org
1 jlec 15/06/02 08:49:27
2
3 Modified: ChangeLog
4 Added: virtualenv-13.0.3.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
9
10 Revision Changes Path
11 1.148 dev-python/virtualenv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.148&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.148&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?r1=1.147&r2=1.148
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v
20 retrieving revision 1.147
21 retrieving revision 1.148
22 diff -u -r1.147 -r1.148
23 --- ChangeLog 31 May 2015 11:19:00 -0000 1.147
24 +++ ChangeLog 2 Jun 2015 08:49:26 -0000 1.148
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/virtualenv
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.147 2015/05/31 11:19:00 zlogene Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.148 2015/06/02 08:49:26 jlec Exp $
30 +
31 +*virtualenv-13.0.3 (02 Jun 2015)
32 +
33 + 02 Jun 2015; Justin Lecher <jlec@g.o> +virtualenv-13.0.3.ebuild:
34 + Version Bump
35
36 31 May 2015; Mikle Kolyada <zlogene@g.o> virtualenv-12.0.5.ebuild:
37 arm stable wrt bug #538528
38
39
40
41 1.1 dev-python/virtualenv/virtualenv-13.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-13.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-13.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: virtualenv-13.0.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-13.0.3.ebuild,v 1.1 2015/06/02 08:49:26 jlec Exp $
51
52 EAPI="5"
53
54 PYTHON_COMPAT=( python2_7 python3_{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 https://github.com/pypa/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 ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~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.1.1-skip-broken-test.patch
80 )
81
82 python_compile_all() {
83 use doc && emake -C docs html
84 }
85
86 python_test() {
87 py.test || die "Tests fail with ${EPYTHON}"
88 }
89
90 python_install_all() {
91 use doc && local HTML_DOCS=( "${S}"/docs/_build/html/. )
92 distutils-r1_python_install_all
93 }