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

This commit is contained in:
Andreas Billmeier 2022-10-15 19:47:44 +02:00 committed by Andreas Billmeier
parent b368c823ac
commit f6c1ec2532
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,3 @@
DIST base36-0.1.1.tar.gz 2782 BLAKE2B 243f33426dfe655e5a5a0ee31741cabaeb3d0e58dde497a447455642de244afe3f27bb714e449188aa014561c1aa0021300009eb0d0d2351379401232f582691 SHA512 bc0c3fdf091d05c76d5d077b07f4f1a61834d327b5e41a7989bbe131f62779f175c1679a3f3618915caf09b6637d5fe1776007039a3ba7a3713ffc661362db08
EBUILD base36-0.1.1.ebuild 744 BLAKE2B f74febc6f9e4a6a8323f74df83003f565e17432b92b96341f7a816c0c45a54ebcb9044de74818b1637e9c85bb25f95f232f86699941d909afec9edba7abe58eb SHA512 a8651917bb7ad3f4f3509be3597575199c45673b810f16d331c2033a6d4470946767e9c4c42301d630481f6666fbead4102d6ba17049bf0dc4d28f35387e61b6
EBUILD base36-0.1.1.ebuild 749 BLAKE2B c09c2fdc633f3388458d525c8a5c91682f38edc7b7e228532eaee578e388a66dd76da3067ba246f1111d1f892bbcfc92782921711da2b8e371bed23d57f5bf4e SHA512 8681f79ed76a84202087b26072f180d53930be5d4dba3bb40a5e87dccc7dcb1e54842596025c2fd82ded09290ae6572f54c4b7db705162998e0f397446412fe8
MISC metadata.xml 450 BLAKE2B 856d21f8317a75c1515dbb3aee9c79daf7d69256008a5e84707ed899bd5d3e0fcbf80a757a51e00b5f7c3edf5c3459c19e29d27a8185fdce9a8b9979f378c394 SHA512 4a4685d2c282e26a207003a6129b6adbe541a06ea238f9f003fa232e6a39ee322184584d9886c156bc0722fe6bdd5a4f0fb679ca38a36327a4c56dbe0f489e8e

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