Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenv/
Date: Thu, 21 May 2020 07:08:10
Message-Id: 1590044878.4b5775e57a097a3589dd4b02e8202c51ff134ea5.mgorny@gentoo
1 commit: 4b5775e57a097a3589dd4b02e8202c51ff134ea5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 05:27:05 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 07:07:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b5775e5
7
8 dev-python/virtualenv: Bump to 20.0.21
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/virtualenv/Manifest | 1 +
13 dev-python/virtualenv/virtualenv-20.0.21.ebuild | 90 +++++++++++++++++++++++++
14 2 files changed, 91 insertions(+)
15
16 diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest
17 index e9fb322bc9f..3ecc7f8bc5b 100644
18 --- a/dev-python/virtualenv/Manifest
19 +++ b/dev-python/virtualenv/Manifest
20 @@ -2,3 +2,4 @@ DIST virtualenv-16.0.0.tar.gz 1968312 BLAKE2B efc25f7c12335bb8619c3de125af3693d7
21 DIST virtualenv-16.7.10.tar.gz 5116776 BLAKE2B 42f0a4b4330850b504f8febd991ef6ecdcbb0821efdd94ca324a8cc34a68a760a8a98de97f0cb2384d8e6cbb0ce8f261995c6433886444e29b75ba0ce09ca12c SHA512 f06d7c354ce1910f04dbcbe1a77e60392653bbe4f638bafbe9284454db2c0e5d63cf9159201d0916fc01aaba91d45fb733b63096c38517fcd83fd00ed8b26d28
22 DIST virtualenv-16.7.9.tar.gz 5116740 BLAKE2B 10b77c4d74d3b1be60d567caf60b48274893777313d7151350df1d8a7d86d7cbd299c6c04734cbad134512e2ea05f5bc694648b6e9307019ffd9b91f7d0cdaf5 SHA512 d7379941e299c44beba30eaab68d5f1a6650f767b24f95d5e8abd05c1529dca4c1423113a41ff42690bb2b2bd4fe05c3e47a8fed4f9df0972188f6c77034436b
23 DIST virtualenv-20.0.18.tar.gz 7982748 BLAKE2B f759ff1c42aaf9229e3f8dedd7b50df12e3a7616f979e18a5a91d58afd190beea86c67e0f7c530ba327427f3a4967ab27d7b922723c9ce92cba844946f8eb8ff SHA512 9295acb4d21da13c93fcf2a73244137a6fd8384313cf2685b67295f3be8cf33aaf6d22fc9ba4fa93dbfd81429eeaf4eb46d752fb717f0f74c172a754b92d41e6
24 +DIST virtualenv-20.0.21.tar.gz 8036935 BLAKE2B 63519368c951989a4112abd77bc8dbdb3548872ccd2da8c8fb8ed0d8dd2b99271df4b666dc5618eb4ccb650ecefff07d57e47ba6ce56c770de432e79f5eb1931 SHA512 168bd977bfecf98b76a20c6059fa372a3a9681e778539d962c7062a19ffdf3387c89eca50e03a4fe83ff2ae8affaf8ec3f87141d0c94240ea205df329a113651
25
26 diff --git a/dev-python/virtualenv/virtualenv-20.0.21.ebuild b/dev-python/virtualenv/virtualenv-20.0.21.ebuild
27 new file mode 100644
28 index 00000000000..a2cafd2f792
29 --- /dev/null
30 +++ b/dev-python/virtualenv/virtualenv-20.0.21.ebuild
31 @@ -0,0 +1,90 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python{2_7,3_{6,7,8}} pypy3 )
38 +DISTUTILS_USE_SETUPTOOLS=manual
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Virtual Python Environment builder"
43 +HOMEPAGE="
44 + https://virtualenv.pypa.io/en/stable/
45 + https://pypi.org/project/virtualenv/
46 + https://github.com/pypa/virtualenv/
47 +"
48 +SRC_URI="https://github.com/pypa/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="MIT"
51 +KEYWORDS="~amd64 ~ppc ~x86"
52 +SLOT="0"
53 +IUSE="test"
54 +RESTRICT="!test? ( test )"
55 +
56 +RDEPEND="
57 + >=dev-python/appdirs-1.4.3[${PYTHON_USEDEP}]
58 + >=dev-python/distlib-0.3.0[${PYTHON_USEDEP}]
59 + >=dev-python/filelock-3[${PYTHON_USEDEP}]
60 + >=dev-python/setuptools-41[${PYTHON_USEDEP}]
61 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
62 + $(python_gen_cond_dep '
63 + >=dev-python/contextlib2-0.6.0[${PYTHON_USEDEP}]
64 + >=dev-python/pathlib2-2.3.3[${PYTHON_USEDEP}]
65 + ' -2)
66 + $(python_gen_cond_dep '
67 + >=dev-python/importlib_metadata-0.12[${PYTHON_USEDEP}]
68 + ' -2 python3_{6,7} pypy3)
69 + $(python_gen_cond_dep '
70 + >=dev-python/importlib_resources-1.0[${PYTHON_USEDEP}]
71 + ' -2 python3_6 pypy3)"
72 +# coverage is used somehow magically in virtualenv, maybe it actually
73 +# tests something useful
74 +BDEPEND="${RDEPEND}
75 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
76 + test? (
77 + dev-python/coverage[${PYTHON_USEDEP}]
78 + >=dev-python/pip-20.0.2[${PYTHON_USEDEP}]
79 + >=dev-python/pytest-mock-2.0.0[${PYTHON_USEDEP}]
80 + >=dev-python/pytest-timeout-1.3.4[${PYTHON_USEDEP}]
81 + dev-python/wheel[${PYTHON_USEDEP}]
82 + $(python_gen_cond_dep '
83 + >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
84 + ' -3)
85 + )"
86 +
87 +distutils_enable_sphinx docs \
88 + dev-python/sphinx_rtd_theme \
89 + dev-python/towncrier
90 +distutils_enable_tests pytest
91 +
92 +src_prepare() {
93 + # we don't have xonsh
94 + rm tests/unit/activation/test_xonsh.py || die
95 + # require internet
96 + sed -e 's:test_seed_link_via_app_data:_&:' \
97 + -i tests/unit/seed/test_boostrap_link_via_app_data.py || die
98 + # TODO: investigate
99 + sed -e 's:test_cross_major:_&:' \
100 + -i tests/unit/create/test_creator.py || die
101 + sed -e 's:test_py_info_to_system_raises:_&:' \
102 + -i tests/unit/discovery/py_info/test_py_info.py || die
103 +
104 + distutils-r1_src_prepare
105 +}
106 +
107 +src_configure() {
108 + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
109 +}
110 +
111 +python_test() {
112 + # TODO: fix/skip with more granularity tests on pypy3
113 + if has "${EPYTHON}" pypy3 python2.7; then
114 + einfo "Skipping broken tests on pypy3"
115 + continue
116 + fi
117 +
118 + distutils_install_for_testing
119 +
120 + pytest -vv || die "Tests fail with ${EPYTHON}"
121 +}