Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-cov/
Date: Fri, 12 Apr 2019 13:47:12
Message-Id: 1555076818.4bdb9c403ad1461ba56dce08a9f2c1f1a3c2a580.vdupras@gentoo
1 commit: 4bdb9c403ad1461ba56dce08a9f2c1f1a3c2a580
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 12 13:46:58 2019 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 12 13:46:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bdb9c40
7
8 dev-python/pytest-cov: remove old
9
10 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-python/pytest-cov/Manifest | 1 -
14 dev-python/pytest-cov/pytest-cov-2.5.1-r1.ebuild | 56 ------------------------
15 dev-python/pytest-cov/pytest-cov-2.5.1-r2.ebuild | 56 ------------------------
16 dev-python/pytest-cov/pytest-cov-2.5.1.ebuild | 55 -----------------------
17 4 files changed, 168 deletions(-)
18
19 diff --git a/dev-python/pytest-cov/Manifest b/dev-python/pytest-cov/Manifest
20 index d656767ad11..a6c3db6454a 100644
21 --- a/dev-python/pytest-cov/Manifest
22 +++ b/dev-python/pytest-cov/Manifest
23 @@ -1,3 +1,2 @@
24 DIST pytest-cov-2.3.1.tar.gz 35378 BLAKE2B 758846db0b06ef9534823d3458ad6211b0cfc14b551a6e1737573a5c1c5bb59c23b26d3448ff8a67d65a4293ce75dd8c79d4916d3d9a7db5021db6b907152230 SHA512 79770beb53fbb43b5d68311c2efd0accbfd890ab6dad299da8c1c0b3d26b54d984807313b1507900cda7004bfb50fedc0bd4341cfcfce47849a4f24fc8184f11
25 -DIST pytest-cov-2.5.1.tar.gz 36201 BLAKE2B ba07d751c7635ee01262a6f2eeffb27393d58afadb625b220237ff9d014ecdda0f18c0b5fd7bdec66fa4a948f2bb70a715af6dc76664e9c573ad56520c8dee1e SHA512 868131d6ea6dd28deec6d653dec23ceb7d3adccfa2c6bcc0a3126bbb11e924e71f200676461b2202f274ce6e14d1799feb0917e3081817d9e8583271c18a43de
26 DIST pytest-cov-2.6.1.tar.gz 35307 BLAKE2B 11974ff70ed5609d7db3c4c35f5b528b0ec36b48cfaf06974a090127706e0964841347592ac3f1e086f46800857ee10c05404045b6a4b467ffa278c2ee1e1957 SHA512 2dfd16e013d8bfbe5d14990f419291b651dd11560328a7e59b5449016d51b17f84d4ee3866fda866c3530389d206b1c4c67c84b23f097281c3963ffd19ea8caa
27
28 diff --git a/dev-python/pytest-cov/pytest-cov-2.5.1-r1.ebuild b/dev-python/pytest-cov/pytest-cov-2.5.1-r1.ebuild
29 deleted file mode 100644
30 index 6683bf30f92..00000000000
31 --- a/dev-python/pytest-cov/pytest-cov-2.5.1-r1.ebuild
32 +++ /dev/null
33 @@ -1,56 +0,0 @@
34 -# Copyright 1999-2019 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=6
38 -
39 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
40 -
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="py.test plugin for coverage reporting"
44 -HOMEPAGE="https://github.com/pytest-dev/pytest-cov https://pypi.org/project/pytest-cov/"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
50 -IUSE="doc test"
51 -
52 -RDEPEND="
53 - >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
54 - >=dev-python/pytest-2.7.3[${PYTHON_USEDEP}]
55 - >=dev-python/cov-core-1.14.0[${PYTHON_USEDEP}]
56 - >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}]
57 - doc? (
58 - dev-python/sphinx[${PYTHON_USEDEP}]
59 - dev-python/sphinx-py3doc-enhanced-theme[${PYTHON_USEDEP}]
60 - )
61 -"
62 -DEPEND="
63 - dev-python/setuptools[${PYTHON_USEDEP}]
64 - test? (
65 - dev-python/virtualenv[${PYTHON_USEDEP}]
66 - dev-python/fields[${PYTHON_USEDEP}]
67 - dev-python/process-tests[${PYTHON_USEDEP}]
68 - || (
69 - >=dev-python/pytest-2.8.0[${PYTHON_USEDEP}]
70 - dev-python/pytest-cache[${PYTHON_USEDEP}]
71 - )
72 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
73 - )
74 -"
75 -
76 -python_compile_all() {
77 - use doc && sphinx-build -b html docs _build/html
78 -}
79 -
80 -python_test() {
81 - PYTHONPATH="${S}/tests:${BUILD_DIR}/lib" \
82 - PYTEST_PLUGINS=${PN/-/_} \
83 - py.test -v -v -x || die "Tests failed under ${EPYTHON}"
84 -}
85 -
86 -python_install_all() {
87 - use doc && HTML_DOCS=( _build/html/. )
88 - distutils-r1_python_install_all
89 -}
90
91 diff --git a/dev-python/pytest-cov/pytest-cov-2.5.1-r2.ebuild b/dev-python/pytest-cov/pytest-cov-2.5.1-r2.ebuild
92 deleted file mode 100644
93 index f82d830d826..00000000000
94 --- a/dev-python/pytest-cov/pytest-cov-2.5.1-r2.ebuild
95 +++ /dev/null
96 @@ -1,56 +0,0 @@
97 -# Copyright 1999-2019 Gentoo Authors
98 -# Distributed under the terms of the GNU General Public License v2
99 -
100 -EAPI=7
101 -
102 -PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 )
103 -
104 -inherit distutils-r1
105 -
106 -DESCRIPTION="py.test plugin for coverage reporting"
107 -HOMEPAGE="https://github.com/pytest-dev/pytest-cov https://pypi.org/project/pytest-cov/"
108 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
109 -
110 -LICENSE="MIT"
111 -SLOT="0"
112 -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
113 -IUSE="doc test"
114 -
115 -RDEPEND="
116 - >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
117 - >=dev-python/pytest-2.7.3[${PYTHON_USEDEP}]
118 - >=dev-python/cov-core-1.14.0[${PYTHON_USEDEP}]
119 - >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}]
120 - doc? (
121 - dev-python/sphinx[${PYTHON_USEDEP}]
122 - dev-python/sphinx-py3doc-enhanced-theme[${PYTHON_USEDEP}]
123 - )
124 -"
125 -DEPEND="
126 - dev-python/setuptools[${PYTHON_USEDEP}]
127 - test? (
128 - dev-python/virtualenv[${PYTHON_USEDEP}]
129 - dev-python/fields[${PYTHON_USEDEP}]
130 - dev-python/process-tests[${PYTHON_USEDEP}]
131 - || (
132 - >=dev-python/pytest-2.8.0[${PYTHON_USEDEP}]
133 - dev-python/pytest-cache[${PYTHON_USEDEP}]
134 - )
135 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
136 - )
137 -"
138 -
139 -python_compile_all() {
140 - use doc && sphinx-build -b html docs _build/html
141 -}
142 -
143 -python_test() {
144 - PYTHONPATH="${S}/tests:${BUILD_DIR}/lib" \
145 - PYTEST_PLUGINS=${PN/-/_} \
146 - py.test -v -v -x || die "Tests failed under ${EPYTHON}"
147 -}
148 -
149 -python_install_all() {
150 - use doc && HTML_DOCS=( _build/html/. )
151 - distutils-r1_python_install_all
152 -}
153
154 diff --git a/dev-python/pytest-cov/pytest-cov-2.5.1.ebuild b/dev-python/pytest-cov/pytest-cov-2.5.1.ebuild
155 deleted file mode 100644
156 index 9b0b6785ecf..00000000000
157 --- a/dev-python/pytest-cov/pytest-cov-2.5.1.ebuild
158 +++ /dev/null
159 @@ -1,55 +0,0 @@
160 -# Copyright 1999-2019 Gentoo Authors
161 -# Distributed under the terms of the GNU General Public License v2
162 -
163 -EAPI=6
164 -
165 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
166 -
167 -inherit distutils-r1
168 -
169 -DESCRIPTION="py.test plugin for coverage reporting"
170 -HOMEPAGE="https://github.com/pytest-dev/pytest-cov https://pypi.org/project/pytest-cov/"
171 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
172 -
173 -LICENSE="MIT"
174 -SLOT="0"
175 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
176 -IUSE="doc test"
177 -
178 -RDEPEND="
179 - >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
180 - >=dev-python/pytest-2.7.3[${PYTHON_USEDEP}]
181 - >=dev-python/cov-core-1.14.0[${PYTHON_USEDEP}]
182 - >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}]
183 - doc? (
184 - dev-python/sphinx[${PYTHON_USEDEP}]
185 - dev-python/sphinx-py3doc-enhanced-theme[${PYTHON_USEDEP}]
186 - )
187 -"
188 -DEPEND="
189 - dev-python/setuptools[${PYTHON_USEDEP}]
190 - test? (
191 - dev-python/virtualenv[${PYTHON_USEDEP}]
192 - dev-python/process-tests[${PYTHON_USEDEP}]
193 - || (
194 - >=dev-python/pytest-2.8.0[${PYTHON_USEDEP}]
195 - dev-python/pytest-cache[${PYTHON_USEDEP}]
196 - )
197 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
198 - )
199 -"
200 -
201 -python_compile_all() {
202 - use doc && sphinx-build -b html docs _build/html
203 -}
204 -
205 -python_test() {
206 - PYTHONPATH="${S}/tests:${BUILD_DIR}/lib" \
207 - PYTEST_PLUGINS=${PN/-/_} \
208 - py.test -v -v -x || die "Tests failed under ${EPYTHON}"
209 -}
210 -
211 -python_install_all() {
212 - use doc && HTML_DOCS=( _build/html/. )
213 - distutils-r1_python_install_all
214 -}