update anthemav-1.2.0

This commit is contained in:
Andreas Billmeier 2021-08-28 08:53:07 +02:00 committed by Andreas Billmeier
parent e64bfa6171
commit c216c38d31
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST anthemav-1.1.10.tar.gz 15109 BLAKE2B 13bea5014ea82a059954d5577b5b272ef1e4efce2b4735ddb2687d54e645ad3af98ce8d90d8b80ee293c6985b16409f4a5e36585f0f2ed5fb3192b64d1b07bac SHA512 78ed89809fdb44fa7f9f93438245b582eef73bce98ce5d602d0bf25920e3fdfe513d9c42fcba84b32e030e113158757479dba7934d145c581cb48b9cb0a75fc1
DIST anthemav-1.2.0.tar.gz 16813 BLAKE2B 3e521d91103c908a9c4ad0d2827eb13bd92cec393f802a5f06e3bf06ac7e0c1131adb4c23144ea78a5bf177ba9382e81f0db63eb44421651f761cef53f25fb02 SHA512 47e0a7d478c8885948ece5b10c58dac09e68aa9ad8d1b16c1529bb598fbd13855482f7958fe5c4b39e0c373142897915bc3e0c0e09d74d13a6172adef9cbeacf
EBUILD anthemav-1.1.10.ebuild 702 BLAKE2B b3361429fbd790e5a6de549086b09ba98932269e36187bc80d31422e65527f7bac417e6c0def8c74c86f4990318241cc56758579954cd500600aaed556dc43ab SHA512 45ff96d644faaa45f00a12cd933496fc1d14fa6f23e9f07017da0c08f3abcae773dc7a5b742a6f453c30392ec05bf17d25034236043c0e3d44b04f5541e00e74
EBUILD anthemav-1.2.0.ebuild 702 BLAKE2B b3361429fbd790e5a6de549086b09ba98932269e36187bc80d31422e65527f7bac417e6c0def8c74c86f4990318241cc56758579954cd500600aaed556dc43ab SHA512 45ff96d644faaa45f00a12cd933496fc1d14fa6f23e9f07017da0c08f3abcae773dc7a5b742a6f453c30392ec05bf17d25034236043c0e3d44b04f5541e00e74
MISC metadata.xml 453 BLAKE2B 40e0b3d31c38e6d8f7293e99f6b89c77e83625004c94b3887555001717001c81defd27357560f724b0dc5c36ed0af4ce6b4523cbd647867cb3a5dc83f4d408cf SHA512 22f28ad6a0026373bb1015663a5be1561e43312ef06f7ae459aab16d2ba8b0d91c59f47385f300b6e047ced838fa5050b9854d3328b23104e8fb777b06a58468

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python API for controlling Anthem Receivers"
HOMEPAGE="https://github.com/nugget/python-anthemav https://pypi.org/project/anthemav/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="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
}