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: Thu, 30 Jul 2020 20:46:37
Message-Id: 1596141986.2cfc4b800f96925c16e83eee42d581aa9529b940.mgorny@gentoo
1 commit: 2cfc4b800f96925c16e83eee42d581aa9529b940
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 20:42:41 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 20:46:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cfc4b80
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 .../pytest-forked/pytest-forked-1.1.3.ebuild | 31 ----------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/dev-python/pytest-forked/Manifest b/dev-python/pytest-forked/Manifest
17 index e9962f0efc1..ce18ac0f5aa 100644
18 --- a/dev-python/pytest-forked/Manifest
19 +++ b/dev-python/pytest-forked/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST pytest-forked-1.1.3.tar.gz 7308 BLAKE2B 70711228a5a815de23cbd07b2b628e336a26ccecf420dc9d30d9e9b7ed33bc362b0ba74a8f90fb7cb8dc9e7e0f61d2ac22da55584a84e8ac3a26fcfc2878a802 SHA512 2086884b0e78841b3cdf8eb2b144b8fa60ba95e4be79bc58a2b5775a5f997dddef59377f7c993e54974fbbe13e73fe8688eed4d035e85293e35a143c5f0180f3
22 DIST pytest-forked-1.2.0.tar.gz 9533 BLAKE2B f9762fd34ffa05eb0abe143388c9608563b0b3d8d5f8c6cbb2e5e36271f4625f10e573042e66d5be5f7f9e124cb5171e570e0d59f2bc1100d2d88ee54c9b4e9b SHA512 d7ed2c36213cfb81988e84e370e0504add77fdb79d31aed4d7aabb73943042f860b4a3ca6c9aad7de5b11234631b1e0f66eb067fcb46079d2cc4ba53ef0cabfb
23 DIST pytest-forked-1.3.0.tar.gz 9850 BLAKE2B cbe44d87052c5a3bc58934ac17153401810004aaa38b53ff3100384535cb2ea0fa99dada706113f324fa0a135ddbd9b97488319b4a9554d912388c341b62943c SHA512 25d639aa43380155d7744f1d05a95e0144f5fe7dea42ff3c2bba3803a07d73b5eb008525469330c5dda14800fe4b611241691be197132f31f88f66930c3ecac0
24
25 diff --git a/dev-python/pytest-forked/pytest-forked-1.1.3.ebuild b/dev-python/pytest-forked/pytest-forked-1.1.3.ebuild
26 deleted file mode 100644
27 index 08d46d8c9a5..00000000000
28 --- a/dev-python/pytest-forked/pytest-forked-1.1.3.ebuild
29 +++ /dev/null
30 @@ -1,31 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -DISTUTILS_USE_SETUPTOOLS=rdepend
37 -PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="run tests in isolated forked subprocesses"
42 -HOMEPAGE="https://pypi.org/project/pytest-forked/ https://github.com/pytest-dev/pytest-forked"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -SLOT="0"
46 -LICENSE="MIT"
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="
52 - >=dev-python/pytest-3.1.0[${PYTHON_USEDEP}]"
53 -
54 -BDEPEND="
55 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
56 - test? ( ${RDEPEND} )"
57 -
58 -python_test() {
59 - distutils_install_for_testing
60 - pytest -vv -p no:flaky || die "Tests failed under ${EPYTHON}"
61 -}