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

This commit is contained in:
Andreas Billmeier 2022-10-18 00:07:07 +02:00 committed by Andreas Billmeier
parent afd5c394b1
commit 4947b84a36
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 7 additions and 7 deletions

View File

@ -1,3 +1,3 @@
DIST starline-0.1.5.tar.gz 6053 BLAKE2B d9095e8bfb18c3e97d849b177e5c0d7b0d7e4fc25cb42667624822446786f9ecb0b9796a8459f0c0009e2f8a04e029cc7d88e390cdb6f40ecb90c015b011956f SHA512 8ca830e850bc83812ca50ba36f54b129ff692980bfc6ecc2701d876e3844e35f8cac096b833e398c990f42cbc588954f97213e7f411e0bc9ffe87e11a9597584
EBUILD starline-0.1.5.ebuild 776 BLAKE2B c5005394c416a7fbb3174920a7d27879f036cd0962fb440c9c085858a31e546ad7b2294008a020ed96ac9919abd7be9329bc5ca58e9639041ac5e67bb6ea6cfb SHA512 662e322f469e7fa5f58816081b917086b040613f1b3daabdb2ad1e08833edf3c322182fc54736731eaaede58ea48104779b6ce534ecc0ffe196a73132f452d0d
EBUILD starline-0.1.5.ebuild 714 BLAKE2B c683a6eb5a69aaa98776eebaf0c3e0ad7ca108a03edb79c76d5bf39c48e9a277722c7f431a9ff166e089eb2d64d4fbae91f073905ff7b99c7afa30c15bf12c30 SHA512 b933984ba3904d69448aaa57c90349e8bcb0814d81afa4d152c8bba23d1f8c3112d6c41e445b564aa34660cfcbfbd01d9b13e5b3cb2afa90eb083a23fa532eb3
MISC metadata.xml 458 BLAKE2B 58440d5bbdf6f161584352ce70ce7d903fe9fbaac28ad308c7b31183f5a7dea48903b8e073c76d452e47d8211cdfba2424ac82c1c7dd5d7285322e2c66d202af SHA512 b35243a8ae9aace8d065c881b56a3fbcc73cee79c09473e0a6467baac4c90dd3f7fb84fad47048885c77d4b1bf426f9ad1a5948ac1bda9d7f3a79424d9327809

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,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
@ -23,11 +23,11 @@ RDEPEND=">=dev-python/aiohttp-3.6.1[${PYTHON_USEDEP}]"
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