Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenv/
Date: Thu, 24 Feb 2022 18:02:58
Message-Id: 1645725500.6e796bf7fa58cfd0497b13ca359c4cd2d647a268.arthurzam@gentoo
1 commit: 6e796bf7fa58cfd0497b13ca359c4cd2d647a268
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 24 17:53:50 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 24 17:58:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e796bf7
7
8 dev-python/virtualenv: add 20.13.2
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/virtualenv/Manifest | 1 +
13 dev-python/virtualenv/virtualenv-20.13.2.ebuild | 97 +++++++++++++++++++++++++
14 2 files changed, 98 insertions(+)
15
16 diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest
17 index 91fd3316e0c2..175310d32a99 100644
18 --- a/dev-python/virtualenv/Manifest
19 +++ b/dev-python/virtualenv/Manifest
20 @@ -2,3 +2,4 @@ DIST virtualenv-20.11.2.tar.gz 9953645 BLAKE2B 8bd0e5bee4fad2cdb13b1ce3e018191ef
21 DIST virtualenv-20.12.1.tar.gz 9956052 BLAKE2B 1507e45de7d1383062b18a2796baf91befec576200560e3a07a5b78e563d6c93cd8f1b3aea327d2edf4d9e582a9a4a9c62f03e9f8cf023318ea4a6cd1fdc6c79 SHA512 1f1a721f1b03cab72330827bca68741cc7f3d4c713a44eb50028ce7b72101cf7530f12cb1fbbff1c94ce9ce621601484845069f34d0c36250f80d8186b2501f9
22 DIST virtualenv-20.13.0.tar.gz 9957090 BLAKE2B 7ff73c458b319c2a4545e6ad468cfdf3b4d48eec02f2d82843fd5276a0f97b72a953079849295ab2467fc78d6fb304774cac800b8744cbf7a295cc3fc4dbb433 SHA512 72aa8cffe92551479ad4ec93395597cd9f77ddaf2063e36d5836277199a96ab2d57236d94b99b7038a60ada103a2d8a37ae4b13ffaaa6ed8e786245d9fbbf6d6
23 DIST virtualenv-20.13.1.tar.gz 11990886 BLAKE2B 9db9504576406f7992f5ad132241e91042e57fc9b37b0a539c11a79499e1b6da9eea997fa9bbba85ba1e3e388b3dc9245bf02f4ee87408547590b9a34ff6f389 SHA512 97204361a308cced55b07b868b2039662b7c9d82cf4ecf64df18ff9723312e73bc9eb2a88937fb6b5f19c2bae3289784cf28bca46f138603fd55d8a76c6e2897
24 +DIST virtualenv-20.13.2.tar.gz 12111439 BLAKE2B 956c5c7f1215bfb46279b29634ab0cab523bb44578077837bab47634495462ccc0f8010a438d3eeebfe6afec0900cfa14dd015dabbc31a8e56c9f34312f2f260 SHA512 7e5ef7927637ab1d029c8831889846acb13948c8cfafc17d56ca815f23f682207da0f3b3291936585a9b059c10ec35813fb53511f19462f867edaf5f197c0135
25
26 diff --git a/dev-python/virtualenv/virtualenv-20.13.2.ebuild b/dev-python/virtualenv/virtualenv-20.13.2.ebuild
27 new file mode 100644
28 index 000000000000..f40a630e4ff5
29 --- /dev/null
30 +++ b/dev-python/virtualenv/virtualenv-20.13.2.ebuild
31 @@ -0,0 +1,97 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
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="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
49 +
50 +LICENSE="MIT"
51 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
52 +SLOT="0"
53 +
54 +RDEPEND="
55 + >=dev-python/backports-entry_points_selectable-1.0.4[${PYTHON_USEDEP}]
56 + >=dev-python/distlib-0.3.1[${PYTHON_USEDEP}]
57 + >=dev-python/filelock-3[${PYTHON_USEDEP}]
58 + >=dev-python/platformdirs-2[${PYTHON_USEDEP}]
59 + >=dev-python/setuptools-41[${PYTHON_USEDEP}]
60 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
61 +# coverage is used somehow magically in virtualenv, maybe it actually
62 +# tests something useful
63 +BDEPEND="
64 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
65 + test? (
66 + dev-python/coverage[${PYTHON_USEDEP}]
67 + dev-python/flaky[${PYTHON_USEDEP}]
68 + >=dev-python/pip-20.0.2[${PYTHON_USEDEP}]
69 + >=dev-python/pytest-freezegun-0.4.1[${PYTHON_USEDEP}]
70 + >=dev-python/pytest-mock-2.0.0[${PYTHON_USEDEP}]
71 + >=dev-python/pytest-timeout-1.3.4[${PYTHON_USEDEP}]
72 + dev-python/wheel[${PYTHON_USEDEP}]
73 + >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
74 + )"
75 +
76 +# (unpackaged deps)
77 +#distutils_enable_sphinx docs \
78 +# dev-python/sphinx-argparse \
79 +# dev-python/sphinx_rtd_theme \
80 +# dev-python/towncrier
81 +distutils_enable_tests pytest
82 +
83 +src_configure() {
84 + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
85 +}
86 +
87 +python_test() {
88 + local EPYTEST_DESELECT=(
89 + tests/unit/activation/test_xonsh.py
90 + tests/unit/seed/embed/test_bootstrap_link_via_app_data.py::test_seed_link_via_app_data
91 + tests/unit/create/test_creator.py::test_cross_major
92 + )
93 + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
94 + 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-isolated]'
95 + 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-global]'
96 + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-isolated]'
97 + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-global]'
98 + 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-isolated]'
99 + 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-global]'
100 + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-isolated]'
101 + 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-global]'
102 + 'tests/unit/create/test_creator.py::test_zip_importer_can_import_setuptools'
103 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9-64-bin-]'
104 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9--bin-]'
105 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10-64-bin-]'
106 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10--bin-]'
107 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7-64-bin-]'
108 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7--bin-]'
109 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3-64-bin-]'
110 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3--bin-]'
111 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9-64-bin-]'
112 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9--bin-]'
113 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10-64-bin-]'
114 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10--bin-]'
115 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7-64-bin-]'
116 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7--bin-]'
117 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3-64-bin-]'
118 + 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3--bin-]'
119 + )
120 +
121 + epytest
122 +}
123 +
124 +pkg_postinst() {
125 + elog "Please note that while virtualenv package no longer supports"
126 + elog "Python 2.7, you can still create py2.7 virtualenvs via:"
127 + elog " $ virtualenv -p 2.7 ..."
128 +}