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

This commit is contained in:
2022-10-16 11:33:45 +02:00
committed by Andreas Billmeier
parent 611d87287f
commit 54405146ea
2 changed files with 12 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
DIST mutesync-0.0.1.tar.gz 1949 BLAKE2B a78062bf0dc43c3cc53e7ad4987286db219b27412f6bd8fa84469285f8b79d239afee52ede9ac2db18b379335d293db19302d2356b96e20cb8fcb62cd5425831 SHA512 c81d031ddbbee4b3eff31df9e608f9b815047a17f160908a134470d1692a0317da41fdb043018af6beb44826a0d65e9b9a56d23dbf8d6adf5894f46414375344
EBUILD mutesync-0.0.1.ebuild 819 BLAKE2B 16baf4495815c58e272e27388c430e72c898275d73aacc9583dff36484ecb48cedb09eb45cf7cbcba3ceb15630517f301929ba032d1f7ab6bd665ff56fa18f16 SHA512 5f12053cf18a2a45b1f2a003d845900fd55f31d0c12c80843e0b0a5d499fbb53951ca15ab274bf7c72c103c64dce49800fc47b193f6aa4261222ff80012e8b3a
EBUILD mutesync-0.0.1.ebuild 888 BLAKE2B 266915d452c47196f1f3c3afe447f291b1fe8abaffbb5ee0b091db18b01c59378af186978537e7ef75632b5a7f1c5a2b6fb828cd6092e7f4d3198527ac7cb970 SHA512 a458832c8e37b3aedebbbd494f67096f1cf733a6447e264b168cb19d98bdb8e71a3ca292169d68c83fc74935301d4e6f952060cca117f1c9d50bc84ee5b3d384
MISC metadata.xml 454 BLAKE2B 089ae956ecd4743c668e3c649eac503c5841a428159d532e5caf0b6ae8c4245e58358b5b2d5dea8f4ff21016a9d619af529e080bf5013bad50b9aae1517cfce8 SHA512 f557ccb9b4bfef05ca9271d036a83035953dd37fcb18304a784ef9e09de04560356ab1cef9dc9f26232f5a7d8e0bd05a70248874b91a216153252b3441ddffd8

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 )"
@@ -32,3 +32,10 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
src_prepare() {
echo "aiohttp" > requirements.txt
eapply_user
}
distutils_enable_tests pytest