Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/capturer/
Date: Tue, 08 Nov 2022 09:18:25
Message-Id: 1667899092.229c35ef94b7213ebd20ecb8ba3f0ffc63069461.andrewammerlaan@gentoo
1 commit: 229c35ef94b7213ebd20ecb8ba3f0ffc63069461
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 8 09:09:29 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 8 09:18:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=229c35ef
7
8 dev-python/capturer: update EAPI 7 -> 8, pep517, enable py3.11
9
10 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
11
12 dev-python/capturer/capturer-3.0-r1.ebuild | 27 +++++++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/dev-python/capturer/capturer-3.0-r1.ebuild b/dev-python/capturer/capturer-3.0-r1.ebuild
16 new file mode 100644
17 index 000000000000..211c82b9d04f
18 --- /dev/null
19 +++ b/dev-python/capturer/capturer-3.0-r1.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
27 +DISTUTILS_USE_PEP517=setuptools
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Easily capture stdout/stderr of the current process and subprocesses"
31 +HOMEPAGE="https://capturer.readthedocs.io/en/latest/
32 + https://pypi.org/project/capturer/
33 + https://github.com/xolox/python-capturer"
34 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
35 +
36 +SLOT="0"
37 +LICENSE="MIT"
38 +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
39 +
40 +RDEPEND="dev-python/humanfriendly[${PYTHON_USEDEP}]"
41 +
42 +distutils_enable_sphinx docs
43 +distutils_enable_tests pytest
44 +
45 +python_test() {
46 + epytest ${PN}/tests.py
47 +}