Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/
Date: Sat, 10 Aug 2019 22:01:08
Message-Id: 1565474460.857a88a8c8054b0de848e093829a622b82a7da2d.prometheanfire@gentoo
1 commit: 857a88a8c8054b0de848e093829a622b82a7da2d
2 Author: rain0r <hihn.rainer <AT> gmail <DOT> com>
3 AuthorDate: Sun Aug 4 12:36:59 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 10 22:01:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857a88a8
7
8 - Update to virtualenvwrapper-4.8.4 incl. EAPI 7 - virtualenvwrapper-4.8.2-r1. with EAPI7 and python3_7 - Removed unused use flag - Changed keywords to unstable
9
10 Signed-off-by: Rainer Hihn <hihn.rainer <AT> gmail.com>
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-python/virtualenvwrapper/Manifest | 1 +
14 .../virtualenvwrapper-4.8.2-r1.ebuild | 32 ++++++++++++++++++++++
15 .../virtualenvwrapper-4.8.4.ebuild | 32 ++++++++++++++++++++++
16 3 files changed, 65 insertions(+)
17
18 diff --git a/dev-python/virtualenvwrapper/Manifest b/dev-python/virtualenvwrapper/Manifest
19 index 5f6d8c727fd..7b01680fcc0 100644
20 --- a/dev-python/virtualenvwrapper/Manifest
21 +++ b/dev-python/virtualenvwrapper/Manifest
22 @@ -1,2 +1,3 @@
23 DIST virtualenvwrapper-4.7.1.tar.gz 89930 BLAKE2B 8e101f04e365dbb6244bc787f853dd90b15d7b33a44725ac1e047cfa74845b9fe11ca100c8437536d80943f29be1dbe10920eef2ce9766bd95ec05cd96951eba SHA512 f972179992728b8b600388b34562fa9de355f526e4ee25ea88840700a57f196a60eba91ac3137e7d826925c7a8ade7479af383bcbfb8b9b837d0a374b8b3c4fd
24 DIST virtualenvwrapper-4.8.2.tar.gz 91331 BLAKE2B a01a971ccfdf1822d65fe6d2f3ae09fde2646c8a6246f54316afb6e5d5068078e77732fed3a9805371fefeed7a4357c27b52eed24e9bd03492965779d6a50836 SHA512 53d92f653b988873da5a46e316a40ef767d97f75072e311aa4a8ae45c8aabb49569e36cc35597f9bdfc1f883a51eb648d5f01f4ea8b3237fae30a21dca67d7bc
25 +DIST virtualenvwrapper-4.8.4.tar.gz 334920 BLAKE2B cd790b1e98cca7d09ea9c80df5d52380335d4a0ea4e6d95f7bd48d78583e0d842e1145ea08d8d8c73516adbe8d6c75bd53c17943723f859860a0cad105a2b058 SHA512 461938100061e11af0ee9b17405d991ae34e5ec9c79cc12614962d3178b588a2da710baa15ac626960b09177c1b5b10c7bc590cb4c126ebd2f719d0f1527c9c4
26
27 diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild
28 new file mode 100644
29 index 00000000000..976d371facf
30 --- /dev/null
31 +++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild
32 @@ -0,0 +1,32 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
43 +HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
44 + https://pypi.org/project/virtualenvwrapper/"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +# testsuite doesn't work out of the box. Demand of a virtualenv outstrips setup by the eclass
52 +RESTRICT=test
53 +
54 +RDEPEND="
55 + dev-python/virtualenv[${PYTHON_USEDEP}]
56 + dev-python/stevedore[${PYTHON_USEDEP}]
57 + dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
58 +DEPEND="${DEPEND}
59 + dev-python/setuptools[${PYTHON_USEDEP}]
60 + dev-python/pbr[${PYTHON_USEDEP}]"
61 +
62 +python_test() {
63 + bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
64 +}
65
66 diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
67 new file mode 100644
68 index 00000000000..976d371facf
69 --- /dev/null
70 +++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
71 @@ -0,0 +1,32 @@
72 +# Copyright 1999-2019 Gentoo Authors
73 +# Distributed under the terms of the GNU General Public License v2
74 +
75 +EAPI=7
76 +
77 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
78 +
79 +inherit distutils-r1
80 +
81 +DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
82 +HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
83 + https://pypi.org/project/virtualenvwrapper/"
84 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
85 +
86 +LICENSE="BSD"
87 +SLOT="0"
88 +KEYWORDS="~amd64 ~x86"
89 +
90 +# testsuite doesn't work out of the box. Demand of a virtualenv outstrips setup by the eclass
91 +RESTRICT=test
92 +
93 +RDEPEND="
94 + dev-python/virtualenv[${PYTHON_USEDEP}]
95 + dev-python/stevedore[${PYTHON_USEDEP}]
96 + dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
97 +DEPEND="${DEPEND}
98 + dev-python/setuptools[${PYTHON_USEDEP}]
99 + dev-python/pbr[${PYTHON_USEDEP}]"
100 +
101 +python_test() {
102 + bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
103 +}