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

This commit is contained in:
2022-10-17 20:34:29 +02:00
committed by Andreas Billmeier
parent 4e8c0b24e7
commit 921ea03a9f
2 changed files with 7 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
DIST python-blockchain-api-0.0.2.tar.gz 2153 BLAKE2B d3f0f82942bc0b27ddeb19a45704c2c52b902ea73a83abea0eae3bfae9b11efe6ae1d02a06bfc9a3afea0dac995f75ce305875efcbbcdb0e2a196e080b76db81 SHA512 3c9500a0d123c07448c6983af4b0f5a08420c17a887545dd629876fe93a015456f9f916491cc3b154ecd6e037f229de9b3409e780e89ff293201353b1fec251c
EBUILD python-blockchain-api-0.0.2.ebuild 775 BLAKE2B 4457b8f1196294d2c31058c692839acda23a28ba386fcbdb30d23389062cb601e9e4583237d4aea8d26799c532ce3ee61f12228a47373d670c4875106d545fb7 SHA512 5c406ddb925385f231237e33e581e040e2c3b13c3083340dbb9fe47acbff2c1f5f1ec59a58af6ff6968da51ce5296218bcc898e8bd8d54be386e93ad021b1876
EBUILD python-blockchain-api-0.0.2.ebuild 780 BLAKE2B fa9d34633a7aee8f2c071adc2db1116b84987c459f5170b4d625ebc5ef06d26c082694e085fbc1fb8f770a141d2a74c63368ea405882d5ac0c93f7415759d989 SHA512 dbc4fab79f98339d502c42de182e8507bf71539cec7652dbcaa2a11d64119bf4476ca3037a28f0be77433db8c3fb09191aa85feff5b581918a236a7163910c6d
MISC metadata.xml 464 BLAKE2B ad6927bfbe4cd26cb91375a528a7253ce030581936cad34bb69dbbfe1b99b365848541c33de5e2b454a588c53715edb0e99bf466109f14f107065ba194c281e6 SHA512 5f6c8f36db72b1d6ed062a6365bf9036813dfbd8564ae3b61e38dc814f58ca20b39632c56f8dfc97bcfff345f1dd3932f63b6bb9411d30f847f02a8eeec6dc2c

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