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

This commit is contained in:
2022-10-17 23:48:50 +02:00
committed by Andreas Billmeier
parent a94424d784
commit 6260e2d35d
2 changed files with 7 additions and 7 deletions

View File

@@ -1,3 +1,3 @@
DIST snapcast-2.1.3.tar.gz 9259 BLAKE2B 12e22f616f2d2c03e32da234bf28dd0d7605cdc96e7cb124f8aa1a0de7b210c36f6879d19dfe442f4ae95569859567c4f41d4d6e491895e91e4e82ee4b72726b SHA512 f55a4620e891f60ccc8293b2f397dd6ff148fb49cd6db3971b4bb0ceae0194244131b7d3f1555a2075d64af93b8e5beb0aeb1f3650bee886b2ad46587e2541d0
EBUILD snapcast-2.1.3.ebuild 806 BLAKE2B 5b29ee00c9dd1a70628d39dd772a557d54aaefa8cd2c20b2629afe14043d00333d26e90db935996f889ca69c40a6929a59934c4f7f0db40fab5f9298c1f8c679 SHA512 5bff6f180c0db83586db1a6ecec2077f84202df38c7efaea3c01eeb9c83791e092d16f1ff4033cf23b7555c226f17b95ea6565bb3c5e776263a0b33324ecfb87
EBUILD snapcast-2.1.3.ebuild 743 BLAKE2B 9347a9416593697a91dcf64f22c259b4295d90e40486b2f42181e39136813640e5ccadba14e0f33b8a4f61c49c224b2f1682e68e7712f1a5974ed06a22f522c3 SHA512 9524096803e49aeb05c6807788097f095c12f343892c51b8197768e8c545135feb5d1041b7d40fcec4bfc39cd46229244e285990a9996e91512a688d1a5aed27
MISC metadata.xml 457 BLAKE2B 9c0139e1df1f268d47a7c9c68f140dba7bf375c5ab7f32f43265f8c054a8213d30dcd1c2b161358f9eeda9663c9fe2398a75f0f4e1d4799f5d431314f69438ad SHA512 e9f42b8e06251b5fdfc3ebfdce72c2ab09ed43cc8ff998f4d5af0cb3a0043e15ad7a305b98c81f5a0e769ef7b2d2843f45312d0c32175496829d31635e9a7e78

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="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@@ -13,7 +13,7 @@ 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 )"
@@ -24,11 +24,11 @@ BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/construct-2.5.2[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest