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-forked/
Date: Mon, 04 May 2020 11:44:42
Message-Id: 1588592618.4f846d39ad8a502ade48dac572b97b67feee6a79.mgorny@gentoo
1 commit: 4f846d39ad8a502ade48dac572b97b67feee6a79
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:43:38 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:43:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f846d39
7
8 dev-python/pytest-forked: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-forked/Manifest | 1 -
13 dev-python/pytest-forked/pytest-forked-0.2.ebuild | 38 -----------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/dev-python/pytest-forked/Manifest b/dev-python/pytest-forked/Manifest
17 index 23d46b6cb66..8cf2a4b0791 100644
18 --- a/dev-python/pytest-forked/Manifest
19 +++ b/dev-python/pytest-forked/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-forked-0.2.tar.gz 9617 BLAKE2B f306c968447b73ddd606f7929b730d222f30640544ff89f6e3e2171ec3b0e98877e0263fea6564d943789de6daa1c344022f001ef80ca37b2467c1b9c360eed7 SHA512 5e84fcaceed46ee9da8eec051e72acb46f09e2df3458511651604c35d68e3ad06fc41d52578127fd29f0c216dcb5fce1844c614f10501727cbf8fa8f2316f231
22 DIST pytest-forked-1.1.3.tar.gz 7308 BLAKE2B 70711228a5a815de23cbd07b2b628e336a26ccecf420dc9d30d9e9b7ed33bc362b0ba74a8f90fb7cb8dc9e7e0f61d2ac22da55584a84e8ac3a26fcfc2878a802 SHA512 2086884b0e78841b3cdf8eb2b144b8fa60ba95e4be79bc58a2b5775a5f997dddef59377f7c993e54974fbbe13e73fe8688eed4d035e85293e35a143c5f0180f3
23
24 diff --git a/dev-python/pytest-forked/pytest-forked-0.2.ebuild b/dev-python/pytest-forked/pytest-forked-0.2.ebuild
25 deleted file mode 100644
26 index 946da6ffb85..00000000000
27 --- a/dev-python/pytest-forked/pytest-forked-0.2.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="run tests in isolated forked subprocesses"
40 -HOMEPAGE="https://pypi.org/project/pytest-forked/ https://github.com/pytest-dev/pytest-forked"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -SLOT="0"
44 -LICENSE="MIT"
45 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - >=dev-python/pytest-2.6.0[${PYTHON_USEDEP}]"
51 -
52 -DEPEND="
53 - ${RDEPEND}
54 - dev-python/setuptools[${PYTHON_USEDEP}]
55 - dev-python/setuptools_scm[${PYTHON_USEDEP}]"
56 -
57 -python_prepare_all() {
58 - distutils-r1_python_prepare_all
59 -
60 - # remove bundled bytecode
61 - rm -r testing/__pycache__ || die
62 -}
63 -
64 -python_test() {
65 - distutils_install_for_testing
66 - py.test -v || die "Tests failed under ${EPYTHON}"
67 -}