dev-python/pulsectl: remove olds, cleanup, enable pytest

This commit is contained in:
2022-10-16 15:58:49 +02:00
committed by Andreas Billmeier
parent 12502476e1
commit cfc1308e28
2 changed files with 6 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
DIST pulsectl-20.2.4.tar.gz 39937 BLAKE2B 47d22c6f30f31ea7d36a93ed95d63e18f8078d5559a02b125c6e3ac2a7f2c4bdd0fa7acf49007a525bff29a3e78dd58f49a8b127330623f45e46f809ee18290c SHA512 afedaf39825d9bbd90906c918799d9bf2cac5e582e41422f220df07ca49974369cf32e99dcec8051a7d2fef953eee09024db88c86f675c251ab7c6b33f56b166
EBUILD pulsectl-20.2.4.ebuild 767 BLAKE2B 78546e64d6745793c8b055e0010a8e926b0a846e473e6f12c49580c171b4111cc68562adfd9c9304037ac12842fa7b0a968c34d7458250fc2267c6635493d139 SHA512 b7f3aff147eb6c63fc0ccfb1bdb6e9a4846e6c21ebf0b80d3bd7e69e223027f8b5280fcd6508ee84fa787e11b9e2df5edb3d30e2f875c17531d17acfbfed66ee
EBUILD pulsectl-20.2.4.ebuild 759 BLAKE2B f329e1302056d6322be223477759a2930505f65b6abcb52be3a5d1cd8f5024ec451b5263490a17922d143a0106f003549bb4dc90b669262c43d61147f9459c8c SHA512 4544e13094f3e8f3e78ec2f0ede84874e8693b10065a63c75724d378e846f51907814e241a9c3178e83940b4460a6f95a70104aac39a9477ecb9c53c74643043
MISC metadata.xml 472 BLAKE2B 10edab4f46dccccef14831a9dffa806b9f2ac34cb997b4f96ec9698bc95c778825197d9cc78e94ccba7400d370854921dc2452a50ce9d0310307954a3106b019 SHA512 6b6e6702d3bbcecd224b9759837e88ffb58c0d550b28f36a708f3f59de82ff6ecf57774019f0c68467755413d13a981d83c784cee0a032a995c2310344d5a171

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@@ -13,13 +13,12 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
@@ -31,3 +30,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest