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/pytest-cov/
Date: Fri, 05 Nov 2021 09:55:12
Message-Id: 1636090809.06caa591a9bef78ff47407b1d580aacdc4a51ee3.arthurzam@gentoo
1 commit: 06caa591a9bef78ff47407b1d580aacdc4a51ee3
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 5 05:32:51 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 5 05:40:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06caa591
7
8 dev-python/pytest-cov: drop 2.12.1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/pytest-cov/Manifest | 1 -
13 dev-python/pytest-cov/pytest-cov-2.12.1.ebuild | 49 --------------------------
14 2 files changed, 50 deletions(-)
15
16 diff --git a/dev-python/pytest-cov/Manifest b/dev-python/pytest-cov/Manifest
17 index 82e7b5eb161..3099cb0090e 100644
18 --- a/dev-python/pytest-cov/Manifest
19 +++ b/dev-python/pytest-cov/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-cov-2.12.1.tar.gz 60395 BLAKE2B 42e817c63c9d787de9bfaf804217a1e020d5a38e564df0ce2d43d6b4f0631aee43ccae329f44c6d7ac9a5662776463456d72138fd20c65cf8d0accfe118e1e2b SHA512 4c234178febeba1ce93ec0804c3efe181d5d88db9ac02effe14e62eb3b0f7ca1f8757fb4f360551e0d3e35a3b6207892afea85611a49db6c71a2dbaacabc5375
22 DIST pytest-cov-3.0.0.tar.gz 61440 BLAKE2B 85f0b079c4c373191553271e34e78af68ac69ea53e3721aa0d43eb9dd55be935570eb15c0f8b954e4c0de6201c004ddef435ea70b03cfda893ecdcc230c283e7 SHA512 289d1b1e29dcc3461276de4c1bbd3884e4ec957efb7dd4c330bc3f25f1b978cbee64c0e2882b419eee5f9ccf44c9d1a23ce47a1b7cc7e436b9ebe894e4c11ae8
23
24 diff --git a/dev-python/pytest-cov/pytest-cov-2.12.1.ebuild b/dev-python/pytest-cov/pytest-cov-2.12.1.ebuild
25 deleted file mode 100644
26 index 4f559d991ad..00000000000
27 --- a/dev-python/pytest-cov/pytest-cov-2.12.1.ebuild
28 +++ /dev/null
29 @@ -1,49 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="py.test plugin for coverage reporting"
40 -HOMEPAGE="https://github.com/pytest-dev/pytest-cov https://pypi.org/project/pytest-cov/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
51 - >=dev-python/pytest-3.6[${PYTHON_USEDEP}]
52 - >=dev-python/coverage-4.4[${PYTHON_USEDEP}]
53 - dev-python/toml[${PYTHON_USEDEP}]
54 -"
55 -# TODO: figure out how to make tests work without pytest-cov installed
56 -# first
57 -BDEPEND="
58 - test? (
59 - ${RDEPEND}
60 - ~dev-python/pytest-cov-${PV}[${PYTHON_USEDEP}]
61 - dev-python/virtualenv[${PYTHON_USEDEP}]
62 - dev-python/fields[${PYTHON_USEDEP}]
63 - >=dev-python/process-tests-2.0.2[${PYTHON_USEDEP}]
64 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
65 - )
66 -"
67 -
68 -distutils_enable_sphinx docs \
69 - dev-python/sphinx-py3doc-enhanced-theme
70 -
71 -python_test() {
72 - local deselect=(
73 - # attempts to install packages via pip (network)
74 - tests/test_pytest_cov.py::test_dist_missing_data
75 - )
76 -
77 - epytest ${deselect[@]/#/--deselect }
78 -}