dev-python/hlk-sw16: remove olds, cleanup, enable pytest

This commit is contained in:
Andreas Billmeier 2022-10-16 09:33:48 +02:00 committed by Andreas Billmeier
parent 426b19ea1f
commit 5ad2ef1b0b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 7 additions and 6 deletions

View File

@ -1,3 +1,3 @@
DIST hlk-sw16-0.0.9.tar.gz 3790 BLAKE2B abcf4db40d17df5c7609e773ac6302ae2c6bc6c29a52848dcaa35c151e4e388ab1ee742f36bd1b5be484058d8cf980217a981245c8f207c816fa416cdf074220 SHA512 4c2461d89d78a57133b36f3ac1714874cf7821b27a951825fe2ccbca78edb6d9298238b275dda0bdf64fed383c18130525f389be6b15d0c841a8546686949395
EBUILD hlk-sw16-0.0.9.ebuild 692 BLAKE2B 28cf7f317dfbd7d4a55ec94e6557962a18975caaa1ef9cd51448996ede23045a44d540bc59d83ef301670e9a1a6d1ef5174c09cb0bf95bc76184b9d654007504 SHA512 3255c2e438bda5ba90ebd1350b5eeb1b5dd07dda2ef86a94debc9131583c646a9f1523283304ab8f92669e57224f48f0947dc050b83d850370fb09626c3044c7
EBUILD hlk-sw16-0.0.9.ebuild 683 BLAKE2B 3de4f79e5b50513039a5b2c12277e7c68fb31c1e14a7f3cc8b16fbce9861b3eace15d2bc654d6a683fcbaac519e992814182a5d56ac21b5a1d9a452fcb649ad6 SHA512 cbe7e26b3ae00fa0537fc359cabb213b353d323140a5b6ce967c249e70aabf38877b5e9313c3fdec32e3fae5ce27c2055c93d52968bb5b6d922518c921f96e7e
MISC metadata.xml 460 BLAKE2B 9bcaf23b3c1c800e810a73f88bcc3bec3d4b0d6e298390c3b61459841e39b5a9e99cae0cc0e8494c5becbb9d7e79aca586b7aa802e25aa9c8d14f05881d0e242 SHA512 03ec07c6f28a77c8f6659046c0142fccb19c203810fe74f74d50226d8bf3e015f1269cda2246313217b9363d559c59e8c1592b06c2d10c9ef2e6383c4c34f6d2

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