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-1.11.2.ebuild ChangeLog
Date: Mon, 03 Feb 2014 10:01:38
Message-Id: 20140203100133.CB5092004C@flycatcher.gentoo.org
1 jlec 14/02/03 10:01:33
2
3 Modified: ChangeLog
4 Added: virtualenv-1.11.2.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.112 dev-python/virtualenv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.112&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?rev=1.112&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/ChangeLog?r1=1.111&r2=1.112
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v
20 retrieving revision 1.111
21 retrieving revision 1.112
22 diff -u -r1.111 -r1.112
23 --- ChangeLog 24 Dec 2013 12:52:43 -0000 1.111
24 +++ ChangeLog 3 Feb 2014 10:01:33 -0000 1.112
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/virtualenv
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.111 2013/12/24 12:52:43 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.112 2014/02/03 10:01:33 jlec Exp $
31 +
32 +*virtualenv-1.11.2 (03 Feb 2014)
33 +
34 + 03 Feb 2014; Justin Lecher <jlec@g.o> +virtualenv-1.11.2.ebuild:
35 + Version Bump
36
37 24 Dec 2013; Agostino Sarubbo <ago@g.o> virtualenv-1.10.1.ebuild:
38 Stable for x86, wrt bug #490816
39
40
41
42 1.1 dev-python/virtualenv/virtualenv-1.11.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-1.11.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/virtualenv/virtualenv-1.11.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: virtualenv-1.11.2.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.11.2.ebuild,v 1.1 2014/02/03 10:01:33 jlec Exp $
52
53 EAPI="5"
54
55 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
56
57 inherit distutils-r1
58
59 DESCRIPTION="Virtual Python Environment builder"
60 HOMEPAGE="http://www.virtualenv.org/ http://pypi.python.org/pypi/virtualenv"
61 SRC_URI="https://github.com/pypa/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
62
63 LICENSE="MIT"
64 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
65 SLOT="0"
66 IUSE="doc test"
67
68 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
69 DEPEND="${RDEPEND}
70 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
71 test? (
72 dev-python/mock[${PYTHON_USEDEP}]
73 dev-python/nose[${PYTHON_USEDEP}]
74 )"
75
76 DOCS=( docs/index.rst docs/news.rst )
77 PATCHES=( "${FILESDIR}"/${PN}-1.8.2-no-versioned-script.patch )
78
79 python_compile_all() {
80 use doc && emake -C docs html
81 }
82
83 python_install_all() {
84 use doc && HTML_DOCS=( "${S}"/docs/_build/html/. )
85 distutils-r1_python_install_all
86 }
87
88 python_test() {
89 nosetests || die
90 }