dev-python/notify-events: remove olds, cleanup, enable pytest

This commit is contained in:
Andreas Billmeier 2022-10-16 14:28:16 +02:00 committed by Andreas Billmeier
parent 2a5ff4a1cb
commit 5aa4efdc34
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 7 additions and 6 deletions

View File

@ -1,3 +1,3 @@
DIST notify-events-1.0.4.tar.gz 3924 BLAKE2B 0a015cd6df4e51fe81ab8f2d6805c4bf699b2fa7256bdbd44088ecd01be7a359dac5c5895880a526d371840d99274804a691ccb39c8e28b307ae08e32a7efceb SHA512 340f22b1d7b491d2d7f218239b6618cbec3434a1b48f6bdfc41e123513afbb591784815d6e0a879e99e928d5feb26b872da123e1a35b51200284b955c9381868
EBUILD notify-events-1.0.4.ebuild 840 BLAKE2B cdce54845865aca39ffddb2803cf4cf971d4a5becf2216a7341bbd3be1cfe71c6bfb63acc91421b2506bf6b637388d3782449a8dd9268a07a22fdcfad674ac68 SHA512 f112df5534b6b65f230d287aa522ea1c03eeb843be6a51366605d1a2a9c1b58ea4edcbeb2bea68bdb7f27904a00499434ac929a9341dc9cd00b7b4f5a89560b0
EBUILD notify-events-1.0.4.ebuild 843 BLAKE2B 3377dbb8c274a91dafa08b6cc30b636dd81d505d4cfd8b84b21538869c976da11edc600f2aa9dadf97c519b2bc70ab57563283eb46db094da25684ee041f6746 SHA512 48c1a3bd5c15e29abaae61a0f61e538792795020437442e1a1fc3d85a995967024a2128a1b47bc5f7201d1f628f661fa07b17b7b75c8521b1c232964f5b8e897
MISC metadata.xml 460 BLAKE2B a6a431b74711588b9375593a98ba029bb1aecb47ee8927cdcfdc2e7b1d5b1ca32ceaffb75368e4ce1c2d6d29449b18e9b7ad60197cc553646e74af707085dd60 SHA512 5bc237afe63951de329200113e122c3bc7861170546bf5419a83c0b703067b7de6ca6c1147a26ea9dfed29a6d5017e7189f40a0b6745b8fd9ce3632d5300ecf9

View File

@ -1,22 +1,21 @@
# 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
DESCRIPTION="Extension to integrate your project with Notify.Events service."
HOMEPAGE="https://github.com/notify-events/python https://pypi.org/project/notify-events/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 x86 amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
@ -32,3 +31,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest