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/pytest-runner/
Date: Sat, 07 Mar 2020 15:46:04
Message-Id: 1583595240.f51ecfc24e520dd7f9d2bcda06489a1e94889a8a.mgorny@gentoo
1 commit: f51ecfc24e520dd7f9d2bcda06489a1e94889a8a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 7 15:34:00 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 7 15:34:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f51ecfc2
7
8 dev-python/pytest-runner: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-runner/Manifest | 1 -
13 dev-python/pytest-runner/pytest-runner-4.2.ebuild | 43 -----------------------
14 2 files changed, 44 deletions(-)
15
16 diff --git a/dev-python/pytest-runner/Manifest b/dev-python/pytest-runner/Manifest
17 index 339a4428076..19e68b277eb 100644
18 --- a/dev-python/pytest-runner/Manifest
19 +++ b/dev-python/pytest-runner/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-runner-4.2.tar.gz 11947 BLAKE2B 97495bead800a81d879659f1ee522822f76fe8ac80579537d43e21e663323d7c10be8d2da7d05ffdb0931145149d8c10ef7c72b3ab4da2ce856d44d3f00a724e SHA512 278da7add27f77134e63470747ffd9fe663d93ab8e7cebfbae98902bb1d5ffba45277574107f958255251cb9e499b85a0db3e8173f9f10fb31d1561ca709a379
22 DIST pytest-runner-5.2.tar.gz 15534 BLAKE2B 0bcbd5991808aaa4b85b9071ce142e03287683e919687fa76f5b7929ad07dca6ae6edaf7ad30a1bc1ba0163f43505ec18ab2cd5e0462399b8252c8ca761d7b29 SHA512 5fc62a4e681cfa0ef25dc815ccbbfe1a7ca0e9e7783c2ba2db0da7d2539f11c08d6c3fad2ab3dfe7f0d50fe7bfb41127b11ec9af67ef8e32361655bc910c8245
23
24 diff --git a/dev-python/pytest-runner/pytest-runner-4.2.ebuild b/dev-python/pytest-runner/pytest-runner-4.2.ebuild
25 deleted file mode 100644
26 index d3062452b42..00000000000
27 --- a/dev-python/pytest-runner/pytest-runner-4.2.ebuild
28 +++ /dev/null
29 @@ -1,43 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Adds support for tests during installation of setup.py files"
40 -HOMEPAGE="https://pypi.org/project/pytest-runner/ https://github.com/pytest-dev/pytest-runner"
41 -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86"
45 -SLOT="0"
46 -IUSE="doc test"
47 -
48 -RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
49 -DEPEND="
50 - dev-python/setuptools[${PYTHON_USEDEP}]
51 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
52 - doc? (
53 - dev-python/jaraco-packaging[${PYTHON_USEDEP}]
54 - dev-python/rst-linker[${PYTHON_USEDEP}]
55 - dev-python/sphinx[${PYTHON_USEDEP}]
56 - )
57 - test? ( ${RDEPEND} )
58 -"
59 -
60 -# Tests require network access to download packages
61 -RESTRICT="test"
62 -
63 -python_compile_all() {
64 - if use doc; then
65 - esetup.py build_sphinx
66 - HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
67 - fi
68 -}
69 -
70 -python_test() {
71 - esetup.py pytest
72 -}