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

This commit is contained in:
2022-10-16 16:45:51 +02:00
committed by Andreas Billmeier
parent e85205d4a3
commit 27912a7950
2 changed files with 7 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
DIST pycmus-0.1.1.tar.gz 20925 BLAKE2B 9df6843a61390007b824950b05f58fc5df17222a5eacc6699cde0707f94a66d5fb69d29f5217bb6b8029710012d84592562b823ea72522d279991a6da0492353 SHA512 f8ca1d8959d5701127dd43d1b1e419a075628a9257c896a4c15e5a045ca70c0ab300b328c9e09b1c8211975a5cf47673aec074df7760fb4d341a27b2ee453df5
EBUILD pycmus-0.1.1.ebuild 755 BLAKE2B a726587016206e91e8e4d7bfec775713ccecac059ef13edb154abb771dc029d43b310eeae143093314caaaa9e7d8c1294b0ec39ff6783fcf982e83ec5415ce9b SHA512 7baddd717116543c55f8afdf0b0e2c0dc5a3ffff1796af577956709f1e89b1ce7040885c13b61c275e813ef0700abd4b0b711734c9f6100f92bdd8277014ca1f
EBUILD pycmus-0.1.1.ebuild 756 BLAKE2B bc708744e059e3f19286818d362006498e030fc86698d0124811ab86a5fc44feead669cd57712c58cfc8a5676416cf9e7959a9a907a24e958d9b9b7760da505d SHA512 c2fa8566135e63c7c19206ba68478ba62f508af7abb4521e9a59221f064d67125fb4dfad99eac7d332eef35505698dc27b45c4a99f038f47fb3ef3b44d294a61
MISC metadata.xml 455 BLAKE2B 2ab5cfc65fdb6262204329214013cd9c30610c83ecba96a80e58d8a33702e404c161d594c06ff90d6eca5bf751ff5b84f0b0fbf812a61fe3ef70a69f919a532d SHA512 ea164c54d773dc3fa11938e766f391832e8464d8bc1bdd267df3185eb8954835db7fd67ecafe3ea956655d8c9114d684b50010778e61db93181c2ed083bedc39

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="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
@@ -30,3 +30,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest