Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/virtualenv: virtualenv-13.1.0.ebuild ChangeLog
Date: Thu, 02 Jul 2015 06:23:34
Message-Id: 20150702062322.3A9D374C@oystercatcher.gentoo.org
1 patrick 15/07/02 06:23:22
2
3 Modified: ChangeLog
4 Added: virtualenv-13.1.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.151 dev-python/virtualenv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.151&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.151&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?r1=1.150&r2=1.151
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v
20 retrieving revision 1.150
21 retrieving revision 1.151
22 diff -u -r1.150 -r1.151
23 --- ChangeLog 28 Jun 2015 15:13:51 -0000 1.150
24 +++ ChangeLog 2 Jul 2015 06:23:22 -0000 1.151
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.150 2015/06/28 15:13:51 zlogene Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.151 2015/07/02 06:23:22 patrick Exp $
30 +
31 +*virtualenv-13.1.0 (02 Jul 2015)
32 +
33 + 02 Jul 2015; Patrick Lauer <patrick@g.o> +virtualenv-13.1.0.ebuild:
34 + Bump
35
36 28 Jun 2015; Mikle Kolyada <zlogene@g.o> virtualenv-12.0.5.ebuild:
37 alpha stable wrt bug #538528
38
39
40
41 1.1 dev-python/virtualenv/virtualenv-13.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-13.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-13.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: virtualenv-13.1.0.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.1.0.ebuild,v 1.1 2015/07/02 06:23:22 patrick 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 }