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: Sun, 26 Jun 2022 04:49:15
Message-Id: 1656218940.1a94ba7d7cd798fef3052ae42b1fe0899467ef8c.mgorny@gentoo
1 commit: 1a94ba7d7cd798fef3052ae42b1fe0899467ef8c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 26 03:26:28 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 26 04:49:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a94ba7d
7
8 dev-python/virtualenv: Bump to 20.15.0
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.15.0.ebuild | 103 ++++++++++++++++++++++++
14 2 files changed, 104 insertions(+)
15
16 diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest
17 index 3abc3d0a1a17..90cf8bb31612 100644
18 --- a/dev-python/virtualenv/Manifest
19 +++ b/dev-python/virtualenv/Manifest
20 @@ -1 +1,2 @@
21 DIST virtualenv-20.14.1.tar.gz 12216889 BLAKE2B 7d06b47629dcf4a60299b9b0a192478b20ef820b8a7516569e50b57b2df383781e7e14fd4beda14a3425164997e69c8ed922edb593f86eb3bd85e4ee3a9f2ac1 SHA512 149e78787db23eabd4238baa172bf023ddcf87d59284fdd090269acfa15991aab182f9e168851f88ef810d5c50dd7cdce69d132c46ebedb10080d65a308e63a1
22 +DIST virtualenv-20.15.0.tar.gz 13523195 BLAKE2B c5d4b1fd78998ccdc7a041d11e0fcb569bfd00151975170260e245726eee03b4ef1cf758d43175312e69e4b482f9ec17b4e93e6854c3bfeafa2304eef2688a20 SHA512 2e3cddae926f89ef986a85ddf592b38d53401212e974b65243b9f47290b653798ab2405920c28d3a7961aeb726f25ed6401e19661f1e9ce7afd195e87a0524ab
23
24 diff --git a/dev-python/virtualenv/virtualenv-20.15.0.ebuild b/dev-python/virtualenv/virtualenv-20.15.0.ebuild
25 new file mode 100644
26 index 000000000000..f5652cdcd1be
27 --- /dev/null
28 +++ b/dev-python/virtualenv/virtualenv-20.15.0.ebuild
29 @@ -0,0 +1,103 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Virtual Python Environment builder"
41 +HOMEPAGE="
42 + https://virtualenv.pypa.io/en/stable/
43 + https://pypi.org/project/virtualenv/
44 + https://github.com/pypa/virtualenv/
45 +"
46 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="MIT"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
50 +SLOT="0"
51 +
52 +RDEPEND="
53 + >=dev-python/distlib-0.3.1[${PYTHON_USEDEP}]
54 + >=dev-python/filelock-3[${PYTHON_USEDEP}]
55 + >=dev-python/platformdirs-2[${PYTHON_USEDEP}]
56 + >=dev-python/setuptools-41[${PYTHON_USEDEP}]
57 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
58 +"
59 +# coverage is used somehow magically in virtualenv, maybe it actually
60 +# tests something useful
61 +BDEPEND="
62 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
63 + test? (
64 + dev-python/coverage[${PYTHON_USEDEP}]
65 + dev-python/flaky[${PYTHON_USEDEP}]
66 + >=dev-python/pip-20.0.2[${PYTHON_USEDEP}]
67 + >=dev-python/pytest-freezegun-0.4.1[${PYTHON_USEDEP}]
68 + >=dev-python/pytest-mock-2.0.0[${PYTHON_USEDEP}]
69 + >=dev-python/pytest-timeout-1.3.4[${PYTHON_USEDEP}]
70 + dev-python/wheel[${PYTHON_USEDEP}]
71 + >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
72 + )
73 +"
74 +
75 +# (unpackaged deps)
76 +#distutils_enable_sphinx docs \
77 +# dev-python/sphinx-argparse \
78 +# dev-python/sphinx_rtd_theme \
79 +# dev-python/towncrier
80 +distutils_enable_tests pytest
81 +
82 +src_configure() {
83 + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
84 +}
85 +
86 +python_test() {
87 + local EPYTEST_DESELECT=(
88 + tests/unit/activation/test_xonsh.py
89 + tests/unit/seed/embed/test_bootstrap_link_via_app_data.py::test_seed_link_via_app_data
90 + tests/unit/create/test_creator.py::test_cross_major
91 + )
92 + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
93 + 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-isolated]'
94 + 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-global]'
95 + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-isolated]'
96 + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-global]'
97 + 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-isolated]'
98 + 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-global]'
99 + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-isolated]'
100 + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-global]'
101 + 'tests/unit/create/test_creator.py::test_zip_importer_can_import_setuptools'
102 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9-64-bin-]'
103 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9--bin-]'
104 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10-64-bin-]'
105 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10--bin-]'
106 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7-64-bin-]'
107 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7--bin-]'
108 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3-64-bin-]'
109 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3--bin-]'
110 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9-64-bin-]'
111 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9--bin-]'
112 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10-64-bin-]'
113 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10--bin-]'
114 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7-64-bin-]'
115 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7--bin-]'
116 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3-64-bin-]'
117 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3--bin-]'
118 + )
119 + [[ ${EPYTHON} == python3.11 ]] && EPYTEST_DESELECT+=(
120 + # TODO
121 + tests/unit/discovery/py_info/test_py_info.py::test_py_info_setuptools
122 + tests/unit/discovery/py_info/test_py_info.py::test_custom_venv_install_scheme_is_prefered
123 + )
124 +
125 + epytest
126 +}
127 +
128 +pkg_postinst() {
129 + elog "Please note that while virtualenv package no longer supports"
130 + elog "Python 2.7, you can still create py2.7 virtualenvs via:"
131 + elog " $ virtualenv -p 2.7 ..."
132 +}