dev-python/enum-compat: remove olds, cleanup, enable pytest

This commit is contained in:
Andreas Billmeier 2022-10-16 07:57:30 +02:00 committed by Andreas Billmeier
parent dc955d8b33
commit 612655c07f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,3 @@
DIST enum-compat-0.0.3.tar.gz 1389 BLAKE2B 54c5a9c724a6d5b627baada613ddf6debae85f6e6749bc7ee8c1117bdc051c3f45cdfdadb39f0a37267b797ff9a0d6a832c0fc7f07b12919b6f3181ffbb0acc8 SHA512 7d1b0e4eed9dfbd7575b24b05ab177ea914ca27cdafa4fa760ffccd83d075553e46e5a40c34b00b51a2b169e0e468f4976e863e96175f37ef54257a259759801
EBUILD enum-compat-0.0.3.ebuild 716 BLAKE2B f711609779e9e9479de0ed33d2da483b07acd162bbad174f318c657e5e7e98332207b1cb53479799b3b3946acf9d94dd11842bcfa6e920f18712803ec4882271 SHA512 c200ac6d66d827ace9940a812e275ac59216c15253857dccc2518fa4464b1a03de693c81f6bba45692cda783e7619f142edd2bac16ee8e5e9d610f0e58720104
EBUILD enum-compat-0.0.3.ebuild 721 BLAKE2B f41cb7a36235d9a8e0c14e27d46a2b9ed22350d6dd5b7236a06334aceefdfd2fcca4485526e5eb218b0f97dd2f76db2457a9e935ba61fc07ee9879b1038e73cd SHA512 c90a32c45c6f46466e5a947db44cc1087bbc3f07e29094933e68485e539f2e7fce3c1ba480220dbb5914bd652cb1b6143313a881e1de345a7e85e9d8b770b857
MISC metadata.xml 453 BLAKE2B 12ecfb217f5ff96a1d4c9a68bb9527267dadb3c6904db714d1ab98404d8a1857feff0c0f240a669c88804bd62461a25900870b6c9d719c33b9841feb4b307d08 SHA512 0a540779d28892bdcdd9480b14b19eb0b339ecdcba9794823f02fc31d81616f0e12e5943ff78f62183c374325755931209b4ba683e64429b43e07b1e6a678b52

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