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

This commit is contained in:
Andreas Billmeier 2022-10-18 00:26:53 +02:00 committed by Andreas Billmeier
parent e8df66c50c
commit cc140fcfcf
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 7 additions and 8 deletions

View File

@ -1,3 +1,3 @@
DIST tailer-0.4.1.tar.gz 7504 BLAKE2B cb15df98bc947976409dcd323f86ee91916045061db633617dde216c3b42ab095de5cd7b89b95d3f875f928d5772ae098a1cb7170122fcdcae386964caa71b25 SHA512 c1f0f4cf9356c58366e3d86087bc922378a5d5d9833385e8b0f9acd16211a7ff486c4ea3be13208b85a9766b3fa163071216de54c7170395c18ba6da61650da3
EBUILD tailer-0.4.1.ebuild 732 BLAKE2B eeea5337fe012bde3a050a5fc84e33201de4714edc1510ad0e9ca7abbc8d376016d8edb11747365e63f401bcbb761c4734d6388558435a83b912a0fedd449027 SHA512 dd371fabd41aea59160546a68a846658add7b140846496aa182100a990b81de441d102c351ba450ce15e8a316846fa958277c36fdf9cb58dbe95396c09f7691a
EBUILD tailer-0.4.1.ebuild 661 BLAKE2B f6279a2b141c6fa2df87008da35d298ff367baa08073aac28bdc17e1bb7185c1d6b23a11a78d0c7e8331f7a01f85b2887045436e42d0733937df8f799cc81a71 SHA512 efa1d2650499dc1c5177efefb0a7e5c2cde8ef7d7a3ed6f2a6d8d0df3596b275a17b3eaff573661e58eb46c29399e5677343039087b7b049e6c901c691933c9d
MISC metadata.xml 451 BLAKE2B 644a94b3bf3a4ab1ace60ced431022960633164cc39186733e9f299c4ca2be318ede8d1dfb351b5d16b998d9679e2ccb5fe84a712e679b5cd0f0b044fea3ec28 SHA512 e23f8d69df953d0a6df337fad15c85fa8955265b8aef7fc90a7895a9ef817948880e5f7346ddb21192cb6e5850630fb6ea734d9f130bc3beb454d7a45d505517

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,21 +13,20 @@ 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 )"
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