update aiomusiccast

This commit is contained in:
Andreas Billmeier 2021-08-28 08:54:50 +02:00 committed by Andreas Billmeier
parent 2c5a0ff688
commit 91140ce8f3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 35 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST aiomusiccast-0.8.0.tar.gz 27835 BLAKE2B ab21f87a83119eb2f1e1279afdc1785461dd7d36787b05d057b52c0006fe188b1201d901d76d6d329b89014d2c16d95204025b22da605465845a73bc7c3604a0 SHA512 6b3d870fcf491689453c531f43856af253657ab440ab5d3e7858f2674a26643563bcca81e128f64d1462a080d3611e6781861368433003335dcbcc23d31b937d
DIST aiomusiccast-0.8.2.tar.gz 28272 BLAKE2B 7ba267d490395117c3951d0c6ed9e1b915d9269c22596d7ab5e10d0bb10be3447740511666bac1430929c8bfe306a161b296451c1142bb5b9fa2605a15e63bf0 SHA512 95955e3de7d6362754f19d31938486960636c6aecba58d14bcd87da08722a9780eecb395883a33830bb4a3d2c754adcd6942deacca764e6dc19e65a6cea0926b
DIST aiomusiccast-0.9.1.tar.gz 29834 BLAKE2B 22181dc7eee6593888f05003d05aada6c917eb919794074776145e7a44b88f0a9f203916d8eeb0d3dc7a0b7bfb8d26a51cdfa7cacd978f4de204dbc85fa8631d SHA512 57593537e0c6e174731ab50f9487b8e5faa62a2b0daf5bfd6879c3c92a7899103db3f952dde9922540c28b0fe7d888551e6bd19155c6c6e68783e76c588648c9
EBUILD aiomusiccast-0.8.0.ebuild 820 BLAKE2B 1b4cfbba2bd35276bf74245fd662396d8b11e19a72c7dfac1a830622127b782fb148ef9170c29ed38c69c1e15d4b8cf78e5cd0b321c477896500910ddfbf853c SHA512 b28898bf02e587674debb7411661dfa1fab6d6372017c2c7520e43bea232575bb3b3c636540d71bdefef0a68099256e7cfa240af9d8842d0daaeb3d16c917d79
EBUILD aiomusiccast-0.8.2.ebuild 815 BLAKE2B 75916ec639767d3a16564e88b6f6bde3b960909bc7d8a1f6b4d64c57280af45c491d4e565e6d1b24a392b26079c8efedfd5b3884811f664f9ec1708040392eb3 SHA512 b73fc695037d8b10707003827c3a2537fb92121298418f77178b5fe96919c5ba9a9b95bb6ac78cbbaab72420d05951ffcbe798aeb71cbb1899e8e74465f7eb80
EBUILD aiomusiccast-0.9.1.ebuild 829 BLAKE2B a42ba2b51da37531362b3323b7dcc26722a8d66708785ff7b96a091c1b31ed0a509ac9321043e668b47436e475558f3ae8e3901f9e39463024411487088c3747 SHA512 17af839c46ea1a9f31ac9a0eeff9684d2783d01629036382d802e0b04ddefcf8f01a991db017b1cf68735273842adcce72721702c0790947fcdce96a2c627b51
MISC metadata.xml 457 BLAKE2B 169f91e63ad70f7087939016d289bac00192f91ca3f391b83eb4fd0837014a42eab5765243ff0cd12c718715ee57437b6fed63e2af82358d323205a7ee7cdadb SHA512 646628b6f88bee3a075e71c498f5f5a707a3ff41292b4ac57c4f40a492a16a29a8afec7561cbf187c44bda01b5d46df98ed168c6d0ec1362b19851479c842293

View File

@ -0,0 +1,33 @@
# 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="Companion library for musiccast devices intended for the Home Assistant integration."
HOMEPAGE="https://github.com/vigonotion/aiomusiccast/ https://pypi.org/project/aiomusiccast/"
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.md"
RDEPEND=">=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}