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-faulthandler/
Date: Sat, 11 Sep 2021 16:28:16
Message-Id: 1631377400.ec096a0abb67ecb8c3185d3fc0d48f3ad4edc45d.mgorny@gentoo
1 commit: ec096a0abb67ecb8c3185d3fc0d48f3ad4edc45d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 11 16:23:20 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 11 16:23:20 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec096a0a
7
8 dev-python/pytest-faulthandler: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-faulthandler/Manifest | 1 -
13 .../pytest-faulthandler-1.6.0.ebuild | 35 ----------------------
14 2 files changed, 36 deletions(-)
15
16 diff --git a/dev-python/pytest-faulthandler/Manifest b/dev-python/pytest-faulthandler/Manifest
17 index 3b5372a2547..782d8185b0a 100644
18 --- a/dev-python/pytest-faulthandler/Manifest
19 +++ b/dev-python/pytest-faulthandler/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-faulthandler-1.6.0.tar.gz 6656 BLAKE2B 0fe66827e09c6b566ac6a9aa3fd4da03f0f5c4ea1e8601b16ed1a211c33150bcc0eaac5b47786040f571ceb266300bcb5142e2a8d977aeb69f89bd0ecefec4c3 SHA512 23146b1c0965e66ac201cae82192f3833daad2563f2177d916050df14b532a3eb78f2dd3b888cec3d28121b334ee86c9b762c5aadb8fb624c9a4288fbad693a5
22 DIST pytest-faulthandler-2.0.1.tar.gz 3629 BLAKE2B f66b6989673b179b3ad3f583b9e7b9615b08e1e062f06969f37bd8a9a57e58bd0207544b0c11aa4a9d03f4db40a125bbbe1924160b2bdcb2c0c589de07281570 SHA512 184b4228693db0f15fdcf250f09c3ee9ef4767e744af9000ec46876f0c68e17434a6d1e25c7d59f610b2baa659d7af5a784cbf0e5e29b105f48d50d00cb1a7ca
23
24 diff --git a/dev-python/pytest-faulthandler/pytest-faulthandler-1.6.0.ebuild b/dev-python/pytest-faulthandler/pytest-faulthandler-1.6.0.ebuild
25 deleted file mode 100644
26 index 01da741b3e6..00000000000
27 --- a/dev-python/pytest-faulthandler/pytest-faulthandler-1.6.0.ebuild
28 +++ /dev/null
29 @@ -1,35 +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_{7,8,9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Pytest plugin that activates the fault handler module for tests"
40 -HOMEPAGE="https://github.com/pytest-dev/pytest-faulthandler"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -
47 -BDEPEND="
48 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
49 - test? (
50 - dev-python/pytest-mock[${PYTHON_USEDEP}]
51 - )
52 -"
53 -
54 -DEPEND="
55 - >=dev-python/pytest-4.0[${PYTHON_USEDEP}]
56 - <dev-python/pytest-5.0[${PYTHON_USEDEP}]
57 -"
58 -
59 -distutils_enable_tests pytest
60 -
61 -python_test() {
62 - distutils_install_for_testing
63 - pytest -vv || die "Tests failed with ${EPYTHON}"
64 -}