Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-faulthandler/
Date: Sat, 14 May 2022 17:46:20
Message-Id: 1652550243.5e8f8a858d135186408b5b797f7a4b0d4d5f1ec8.arthurzam@gentoo
1 commit: 5e8f8a858d135186408b5b797f7a4b0d4d5f1ec8
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 14 17:44:03 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat May 14 17:44:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e8f8a85
7
8 dev-python/pytest-faulthandler: EAPI=8, PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 .../pytest-faulthandler-2.0.1-r1.ebuild | 23 ++++++++++++++++++++++
13 1 file changed, 23 insertions(+)
14
15 diff --git a/dev-python/pytest-faulthandler/pytest-faulthandler-2.0.1-r1.ebuild b/dev-python/pytest-faulthandler/pytest-faulthandler-2.0.1-r1.ebuild
16 new file mode 100644
17 index 000000000000..9ca73b3ca2ae
18 --- /dev/null
19 +++ b/dev-python/pytest-faulthandler/pytest-faulthandler-2.0.1-r1.ebuild
20 @@ -0,0 +1,23 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Pytest plugin that activates the fault handler module for tests"
31 +HOMEPAGE="https://github.com/pytest-dev/pytest-faulthandler"
32 +SRC_URI="
33 + https://github.com/pytest-dev/pytest-faulthandler/archive/${PV}.tar.gz
34 + -> ${P}.tar.gz
35 +"
36 +
37 +LICENSE="MIT"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86"
40 +
41 +RDEPEND="
42 + >=dev-python/pytest-5.0[${PYTHON_USEDEP}]
43 +"