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

This commit is contained in:
Andreas Billmeier 2022-10-15 20:45:28 +02:00 committed by Andreas Billmeier
parent caec158b47
commit 6eefa5244d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,3 @@
DIST directv-0.4.0.tar.gz 7153 BLAKE2B 0f6d3c1fe8c1d9428780001c5895c6ae8b4d9a7968492407f223de860ffd8146f9c10cdab641980366e72eb83c1d8be0a2d4c384f5bced8c1d933cec0f77b6d7 SHA512 e8c16675bcba3e5b0f7278f2272b6e5cf47b3a211de80616d326da5bdedeba1f8ef629d8227d9e343f008f2675ac225faf89d0faec9dd3b3e34c2003c79bcff1
EBUILD directv-0.4.0.ebuild 821 BLAKE2B f6cd4ba2c99bef119a67db3840e0bd2d128bb1080bf384af9af3d58612aa157c3ac907fce1be21afe665f075424bc9c61a4e05d3b280d8bf7e59acfd696b5866 SHA512 8fb9a6297bd6077bc3dcf77ed888b6939cced121aed1cfb31d8dc33ad1b2722a4cefb55dd9621db0e72f1b79fae4c9d2a02d0678bf8baff8e30d3a1b1fd37ca3
EBUILD directv-0.4.0.ebuild 822 BLAKE2B 446e5887c2bd04548fb318edb8b5077bf684a0925aca0f8b9f2b0c7566c66cffd99e5f4537159c3a24902a42158ceb404b01eb35468830d5639f19fcb7d81022 SHA512 213c784eed0a976ad9fd81a1fb3b40b606cf6a9fd1550ea3fbe7c2ba133797b5febbc112b2be82963f247049469211d6514b2b1fe4df76721be96845f9e4679f
MISC metadata.xml 460 BLAKE2B 784527ea7b0319a1da5f3cc0986835643d2dd610f98fa558a1ac9eae7d537f8ccf8a12217e3f5eb16da0ed1cc8e5d0aa722a81d885fed4eea72139b7735d4d48 SHA512 dfed4fd4f44af156780c1b4231ef5a1cc7362051a82fbd77db5ffbd9a429cc244223732ed416f688edde107b28ce9c11ff4eb67584f368cca0d911cab1fe0fc2

View File

@ -1,9 +1,9 @@
# Copyright 1999-2020 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 )"
@ -32,3 +32,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest