diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-12-02 16:06:33 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-12-02 16:06:33 +0200 |
commit | 62048eeb1cf1088a69ae03d8ba75aaa2cecbe979 (patch) | |
tree | 3442a534fe09840974478de9607549f1aae5b592 /dev-python/wurlitzer | |
parent | sys-devel/gdb: Stabilize 12.1-r2 hppa, #883961 (diff) | |
download | gentoo-62048eeb1cf1088a69ae03d8ba75aaa2cecbe979.tar.gz gentoo-62048eeb1cf1088a69ae03d8ba75aaa2cecbe979.tar.bz2 gentoo-62048eeb1cf1088a69ae03d8ba75aaa2cecbe979.zip |
dev-python/wurlitzer: add 3.0.3, PEP517
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/wurlitzer')
-rw-r--r-- | dev-python/wurlitzer/Manifest | 1 | ||||
-rw-r--r-- | dev-python/wurlitzer/wurlitzer-3.0.3.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/dev-python/wurlitzer/Manifest b/dev-python/wurlitzer/Manifest index 6e56a56b9cf2..b6d117b0e673 100644 --- a/dev-python/wurlitzer/Manifest +++ b/dev-python/wurlitzer/Manifest @@ -1 +1,2 @@ DIST wurlitzer-3.0.2.tar.gz 9846 BLAKE2B fe3223d1305891b60b9b3c361e05047d227f5682c63a47135b0d3e95bc373918266ec4cc141c947ff68795da12a8ea0c3c9c7e7a6ea31de8af22766b3354bbca SHA512 b0398699a15910511726053d32aa883fba249df9e7de393d645e4ac927d6ee9950fb459d27129d2806e39494245250b23ddf41acd349af514056dba1739cb1c8 +DIST wurlitzer-3.0.3.tar.gz 10171 BLAKE2B bf0ab15aaf0b693df64e0e9db38309ad1dad117aa97c1f380021ca81153eaf08ef742a97cf7451e72cc3473a2824fe142d8d8cd7ea1b28a367ed5761527c8d6a SHA512 6914ca77af8540bd949b74dfffe58b6ff9de603474e42e973b712f91a11dc906d7753f769932d26106c0543e98f42929741ed4de9ae14601eeadbd0dc5bfca35 diff --git a/dev-python/wurlitzer/wurlitzer-3.0.3.ebuild b/dev-python/wurlitzer/wurlitzer-3.0.3.ebuild new file mode 100644 index 000000000000..5c0e6bfb4973 --- /dev/null +++ b/dev-python/wurlitzer/wurlitzer-3.0.3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) +inherit distutils-r1 + +DESCRIPTION="Capture C-level stdout/stderr in Python" +HOMEPAGE=" + https://github.com/minrk/wurlitzer/ + https://pypi.org/project/wurlitzer/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests pytest + +python_test() { + epytest test.py +} |