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/tox/
Date: Sat, 29 Jan 2022 07:23:07
Message-Id: 1643440979.8c7bdf0fc2dabd8d09bd2067a8c89a56ee2b828b.mgorny@gentoo
1 commit: 8c7bdf0fc2dabd8d09bd2067a8c89a56ee2b828b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 29 07:04:55 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 29 07:22:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c7bdf0f
7
8 dev-python/tox: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tox/Manifest | 1 -
13 dev-python/tox/tox-3.24.4-r1.ebuild | 69 -------------------------------------
14 2 files changed, 70 deletions(-)
15
16 diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest
17 index 9c408f778335..bb4c9d3b1e8c 100644
18 --- a/dev-python/tox/Manifest
19 +++ b/dev-python/tox/Manifest
20 @@ -1,2 +1 @@
21 -DIST tox-3.24.4.tar.gz 306760 BLAKE2B 332c99d021bc3c25549fd95d051baaa1f0dc3aaf776928320826bb7e6bce6444fd5a993e1dbff3a4ebbde9dbb59e30d07eae4b04096294b3a186b130b8312587 SHA512 49e2cb74f119b5cc049d2a64479e56307cea1f36a5586840cca12cb8f4ce8a2ba991cc6142bef7f095a7d32b44f7513f89cce56d89deaff0e12194ceb3da6249
22 DIST tox-3.24.5.tar.gz 306305 BLAKE2B a6d3338d21068d9123505a29da3beec4fd5a15c263bcaf5ba62f65a253d04e11d453bef159d06e88b2cbac9a895d786d0d9444cc16cd3de7a868eac6919b82ea SHA512 4e1ef81c978977e905edbdc00ff971eb4132b9009ce21456fcebf95d8ee2c583e04e464f1db5ca6e5454f4f1ad0353ffc9df7898f6389fe8084dc5b9726ca59b
23
24 diff --git a/dev-python/tox/tox-3.24.4-r1.ebuild b/dev-python/tox/tox-3.24.4-r1.ebuild
25 deleted file mode 100644
26 index e23a2e4b7f90..000000000000
27 --- a/dev-python/tox/tox-3.24.4-r1.ebuild
28 +++ /dev/null
29 @@ -1,69 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="virtualenv-based automation of test activities"
39 -HOMEPAGE="https://tox.readthedocs.io https://github.com/tox-dev/tox https://pypi.org/project/tox/"
40 -SRC_URI="https://github.com/tox-dev/tox/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
45 -# doc disabled because of missing deps in tree
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - dev-python/filelock[${PYTHON_USEDEP}]
51 - dev-python/packaging[${PYTHON_USEDEP}]
52 - >=dev-python/pluggy-0.12[${PYTHON_USEDEP}]
53 - dev-python/pip[${PYTHON_USEDEP}]
54 - dev-python/py[${PYTHON_USEDEP}]
55 - >=dev-python/six-1.14[${PYTHON_USEDEP}]
56 - dev-python/toml[${PYTHON_USEDEP}]
57 - >=dev-python/virtualenv-16.0.0[${PYTHON_USEDEP}]"
58 -# TODO: figure out how to make tests work without the package being
59 -# installed first.
60 -BDEPEND="
61 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
62 - test? (
63 - ${RDEPEND}
64 - >=dev-python/flaky-3.4.0[${PYTHON_USEDEP}]
65 - >=dev-python/freezegun-0.3.11[${PYTHON_USEDEP}]
66 - >=dev-python/pytest-4.0.0[${PYTHON_USEDEP}]
67 - dev-python/pytest-mock[${PYTHON_USEDEP}]
68 - )"
69 -
70 -src_configure() {
71 - export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
72 -}
73 -
74 -python_test() {
75 - local EPYTEST_DESELECT=(
76 - # broken without Internet
77 - tests/unit/session/test_provision.py::test_provision_non_canonical_dep
78 - tests/integration/test_provision_int.py::test_provision_interrupt_child
79 -
80 - # expects python2 to exist
81 - tests/unit/interpreters/test_interpreters.py::test_tox_get_python_executable
82 -
83 - # fragile and relies on checking stdout
84 - tests/unit/util/test_spinner.py::test_spinner_progress
85 - )
86 -
87 - [[ ${EPYTHON} != pypy3 ]] && EPYTEST_DESELECT+=(
88 - # TODO?
89 - tests/unit/interpreters/test_interpreters.py::test_find_alias_on_path
90 -
91 - # broken without tox installed first
92 - # TODO: why it can't import itself?
93 - tests/integration/test_parallel_interrupt.py::test_parallel_interrupt
94 - )
95 -
96 - distutils_install_for_testing --via-venv
97 - epytest --no-network
98 -}