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

This commit is contained in:
Andreas Billmeier 2022-10-17 22:37:17 +02:00 committed by Andreas Billmeier
parent 0ebf95d4eb
commit 23137c2d0f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 7 additions and 8 deletions

View File

@ -1,3 +1,3 @@
DIST radiotherm-2.1.0.tar.gz 10381 BLAKE2B 273c454a746ceddf99a27a310be28e1612f0590e92b68d561f8af74d64882d3a85ce086ea0fb31d79edfdc01d3bb0774929899e80b063fa1a3522dbd54767b75 SHA512 b17f37d1238bf359b47d730765aad0ab69c848d940d4edbb259ae6d23cd4188a175cc31b49f4c0a028493d49c8d47386e96b189aa5078ad546437c668b0dba79
EBUILD radiotherm-2.1.0.ebuild 747 BLAKE2B 19527e6010ca52e9c54658d523436104dbb9e950ba5cfce6e63820e0a5b275c0176aeafa9e3e1e71b00d7cbd1ebd9a16df082cf791af88af24dd0ad17a78dc42 SHA512 22f3337ef2913df40b61f2f227c1f47d49f9a07fcb39e0784f16ffe7c5563daa95dedba6f58f50fedbbe13e419b63df236bd0d519d76bdfbc292c7fdb391bccf
EBUILD radiotherm-2.1.0.ebuild 674 BLAKE2B c5bc0f93d15bb01c28785ff082b1b495d4ac8fd4dfcaa3814a63e299395ec03a29c6289b17bbcf92b075ff1b051ca51e3de1b9ccbaf2b6b99f5ef5d807723026 SHA512 c40ded72f896e4d032c345e1d06cfadf37ebf57b5476cc5e5012492556f66a3a2d3339793be3d773969d23391f3cca9f856002b1b0c2d757a2ffa0cf1e2af93f
MISC metadata.xml 458 BLAKE2B 26f419507ffd011c3275d8f474e460326a5b758f297ac49963fa838f43e7e31d4d81492ab4e3243de864548d278e93946d81560f2d0e0c8a55e8579f5dd9887f SHA512 abcf610cf1c1e429addd2658ffb133eb52f274189ae07d91ef0023bbd3c6fc100293f0d8e4ca61c5e84099ec9adde88e7f6e458baea187162551f56b80cffd18

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,21 +13,20 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${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 )"
DOCS="README.rst"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest