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, 18 Apr 2021 07:06:03
Message-Id: 1618729544.2bdffe9c578c0ed84dd904c7113e08464e2383a2.mgorny@gentoo
1 commit: 2bdffe9c578c0ed84dd904c7113e08464e2383a2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 18 06:51:53 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 18 07:05:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bdffe9c
7
8 dev-python/virtualenv: Remove old
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.4.2.ebuild | 99 --------------------------
14 2 files changed, 100 deletions(-)
15
16 diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest
17 index e4bbbab105c..10c11a90820 100644
18 --- a/dev-python/virtualenv/Manifest
19 +++ b/dev-python/virtualenv/Manifest
20 @@ -1,3 +1,2 @@
21 DIST virtualenv-16.7.10.tar.gz 5116776 BLAKE2B 42f0a4b4330850b504f8febd991ef6ecdcbb0821efdd94ca324a8cc34a68a760a8a98de97f0cb2384d8e6cbb0ce8f261995c6433886444e29b75ba0ce09ca12c SHA512 f06d7c354ce1910f04dbcbe1a77e60392653bbe4f638bafbe9284454db2c0e5d63cf9159201d0916fc01aaba91d45fb733b63096c38517fcd83fd00ed8b26d28
22 -DIST virtualenv-20.4.2.tar.gz 10578406 BLAKE2B e9b50a40407954c411076244c09a57601553c16b750231ee451e1954a91f1c18740804246e3e4ba2ff55da021e976cab80da86a1b9d01e3cd3d494aa95f07129 SHA512 3ae13f0ca2af8be1cd95affdbfe58d43f930cf616a38963252219d4efc2523b1c3e8d922b3ab2200ac4cadc76c1237ddb4828ac15b5122771e96f7401a852d4e
23 DIST virtualenv-20.4.3.tar.gz 10579193 BLAKE2B 02102579eb72b7e4ea8fa182b3c7ef5d8b9d95992b5f73b0f24737522dfae988a91953c49df5aa17541f3f0b1c54557ece7feba173a9cce3bb65964bddbd6edb SHA512 d79479d73fc87f34462e775629306bd20ff5d25eb1829c6719f08c800df6a5db03254b04773766a703d903d577cf74b8409a026196ba98d0f5f94f70604ed576
24
25 diff --git a/dev-python/virtualenv/virtualenv-20.4.2.ebuild b/dev-python/virtualenv/virtualenv-20.4.2.ebuild
26 deleted file mode 100644
27 index 12313fb1c44..00000000000
28 --- a/dev-python/virtualenv/virtualenv-20.4.2.ebuild
29 +++ /dev/null
30 @@ -1,99 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{7..9} pypy3 )
37 -DISTUTILS_USE_SETUPTOOLS=manual
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Virtual Python Environment builder"
42 -HOMEPAGE="
43 - https://virtualenv.pypa.io/en/stable/
44 - https://pypi.org/project/virtualenv/
45 - https://github.com/pypa/virtualenv/
46 -"
47 -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
48 -
49 -LICENSE="MIT"
50 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
51 -SLOT="0"
52 -IUSE="test"
53 -RESTRICT="!test? ( test )"
54 -
55 -RDEPEND="
56 - >=dev-python/appdirs-1.4.3[${PYTHON_USEDEP}]
57 - >=dev-python/distlib-0.3.1[${PYTHON_USEDEP}]
58 - >=dev-python/filelock-3[${PYTHON_USEDEP}]
59 - >=dev-python/setuptools-41[${PYTHON_USEDEP}]
60 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
61 - $(python_gen_cond_dep '
62 - >=dev-python/importlib_metadata-0.12[${PYTHON_USEDEP}]
63 - ' python3_{6,7} pypy3)
64 - $(python_gen_cond_dep '
65 - >=dev-python/importlib_resources-1.0[${PYTHON_USEDEP}]
66 - ' python3_6 pypy3)"
67 -# coverage is used somehow magically in virtualenv, maybe it actually
68 -# tests something useful
69 -BDEPEND="
70 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
71 - test? (
72 - ${RDEPEND}
73 - $(python_gen_cond_dep '
74 - dev-python/coverage[${PYTHON_USEDEP}]
75 - dev-python/flaky[${PYTHON_USEDEP}]
76 - >=dev-python/pip-20.0.2[${PYTHON_USEDEP}]
77 - >=dev-python/pytest-5[${PYTHON_USEDEP}]
78 - >=dev-python/pytest-freezegun-0.4.1[${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 - >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
83 - ' 'python3*')
84 - )"
85 -
86 -distutils_enable_sphinx docs \
87 - dev-python/sphinx_rtd_theme \
88 - dev-python/towncrier
89 -
90 -src_configure() {
91 - export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
92 -}
93 -
94 -python_test() {
95 - local deselect=(
96 - tests/unit/activation/test_xonsh.py
97 - tests/unit/seed/embed/test_bootstrap_link_via_app_data.py::test_seed_link_via_app_data
98 - tests/unit/create/test_creator.py::test_cross_major
99 - )
100 - [[ ${EPYTHON} == pypy3 ]] && deselect+=(
101 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-isolated]'
102 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-global]'
103 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-isolated]'
104 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-global]'
105 - 'tests/unit/create/test_creator.py::test_zip_importer_can_import_setuptools'
106 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9-64-bin-]'
107 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9--bin-]'
108 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7-64-bin-]'
109 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7--bin-]'
110 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3-64-bin-]'
111 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3--bin-]'
112 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9-64-bin-]'
113 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9--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 -
120 - distutils_install_for_testing --via-root
121 - pytest -vv ${deselect[@]/#/--deselect } ||
122 - die "Tests fail with ${EPYTHON}"
123 -}
124 -
125 -pkg_postinst() {
126 - elog "Please note that while virtualenv package no longer supports"
127 - elog "Python 2.7, you can still create py2.7 virtualenvs via:"
128 - elog " $ virtualenv -p 2.7 ..."
129 -}