dev-python/linode-api: remove olds, cleanup, enable pytest

This commit is contained in:
Andreas Billmeier 2022-10-16 10:55:05 +02:00 committed by Andreas Billmeier
parent cc4c32c793
commit 9f01672e8a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,3 @@
DIST linode-api-4.1.9_beta1.tar.gz 45044 BLAKE2B 7765cf013afef1f5ab3cc1965a4f4302775e4ac3d4ad11d8e870a4cf59564de3971fc0ef88b0c31ddc0762187583cabdfe74b56bca3803a227b91eba5b02a769 SHA512 9bb0c3b2bb48d819ea104a39d96eae1b9229f1682f4f89a615ed9bad05afde7cd81f257946cad4ab46c7be806fb48aedbf95658b11b6187707b3fd4fcc9523c7
EBUILD linode-api-4.1.9_beta1.ebuild 1048 BLAKE2B c4b1cb3c6dc5be55880900fffd7cc20f4b5ffc31c92d48cb79244a6963943269bc5933175df9ce055a6ae04c27dcfd9cdf7f69fe6ff8d53a2e8411bf4c936eb2 SHA512 4d01a020b37cbce71f436f5f23015e84674ab4ec24a448c68d3062f1285c5efc716243e45562a68646851fe3a79cd6c7f43d756f09a30632a36951eb1a8e6bb4
EBUILD linode-api-4.1.9_beta1.ebuild 1053 BLAKE2B 3163c9803ba4d008c8dbbba43c81afe3a88ae45ebc417142d020bf75752898336134155cdac9efc33f55535824805d92141e4bbdca65ddb22af46abeba38151f SHA512 767b7817fca1bf1473a66aa9273af2cc605f0196e6657bfdf0c2e25275e58a66bf345ca74e4e172bf1b3ff1f77f92353cebe1f0c38782d32ed492a408e721ae1
MISC metadata.xml 450 BLAKE2B 67533ba57f8e5185079459e6f36cd8efb127a63484a443dd9e281a6cb23b30ebb7b3ff8a3c18f8a4d712642634937b359a96788fb0bb5892364995bd8311a348 SHA512 dbdae905c2fa10359fa0de6f44a3b7a734896fd759683df34b3b46e148757e09440f7e770e9e209db756f08b3298dfdf3afee220ba39991890df67bed8eb9c6b

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
@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
@ -43,3 +43,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest