dev-python/numato-gpio: remove olds, cleanup, enable pytest

This commit is contained in:
2022-10-16 14:32:56 +02:00
committed by Andreas Billmeier
parent 47accc19b0
commit 96b0345424
2 changed files with 7 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
DIST numato-gpio-0.10.0.tar.gz 11468 BLAKE2B eb9737281848b01918c282cbbaceb3339b7f2876b23c2cb618bd7acc478916354bdf84fb7bce55e82d79800e173d62a35dee18967288fa52d844e50b8437ee9a SHA512 bf0e338762410c6b6ebb9cd57cc1ced7a72db52a8a66793aa05862978247860b5778108e299bef33c882c77bdf9e4d9f9da430f0e8f5d5f5ba123c9e02b3cb8d
EBUILD numato-gpio-0.10.0.ebuild 763 BLAKE2B 6b3f7de7e8daed4c5936a08b9b8dbd751073630573789bfd43d505544f648b62840414d53a832adb1c62db8f4af83d529fc595110764420e459c87e263d58ac5 SHA512 827f9a819b34d82b9490ac85a7a43b666ed52ce2962ea87fcb43909cdc15770b850e81cd360202e63a68af99ffe7ee1d5df30a298dfddf70f7ad29601294d301
EBUILD numato-gpio-0.10.0.ebuild 765 BLAKE2B 1036b0a33f8f51a08a00eaec18ffb82ac8e58fd25c049550e54d343c42279e4853f52f4734e6fb9e2e32b98a1302d1f1ccb8e715ffd930b36c96727b40ca97d9 SHA512 58a33127024377ab6653b6d4005a7adf2aad86929573765cec9755ab1b45dc8ec8297915ee90ee4e93cedc86943001b14071b5a2ff200a4c94b5b643549e5f80
MISC metadata.xml 452 BLAKE2B b160beff69295ad0dfd0701bfefe3801262444db3d8879dac8d0070762513dda36a1f4c4b67d7e2b6f8e650a0735b290e3c0439e7d0cf7a21f22e51d28e108ee SHA512 4db250e87841ff4e113f4528a6bef181a48579322528e9588eeec6ac71241cb34eb926326dad385b9cd1e0a9567fd41fcd3e93747b96eaa5ad74b2a326eaefb2

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_{7..9} )
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 )"
@@ -31,3 +31,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest