add mutesync-0.0.1

This commit is contained in:
Andreas Billmeier 2021-05-15 12:27:51 +02:00 committed by Andreas Billmeier
parent 8deea37ce5
commit ceeae7bbb8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 1 deletions

View File

@ -43,7 +43,7 @@
* bump pysonos-0.0.45
* bump HATasmota-0.2.12
* update homeassistant-2021.5.2
* add mutesync-0.0.2
* add mutesync-0.0.2, mutesync-0.0.1
* add motioneye-client-0.3.6
* add PyMetEireann-0.2
* add python-picnic-api-1.1.0

View File

@ -1,3 +1,5 @@
DIST mutesync-0.0.1.tar.gz 1949 BLAKE2B a78062bf0dc43c3cc53e7ad4987286db219b27412f6bd8fa84469285f8b79d239afee52ede9ac2db18b379335d293db19302d2356b96e20cb8fcb62cd5425831 SHA512 c81d031ddbbee4b3eff31df9e608f9b815047a17f160908a134470d1692a0317da41fdb043018af6beb44826a0d65e9b9a56d23dbf8d6adf5894f46414375344
DIST mutesync-0.0.2.tar.gz 1718 BLAKE2B c9b4432df058e72a02ab5cad0ece94fe36f07af8ca7134c6040b605c963b03630b23ea4283506b4c80124ee91ab06a91de8ffd3334593abb1528e302ba797dc5 SHA512 a24a06749b742db417565b510456d6f877670f69c2af8d7f8c262d45902231c2ac16586deda609baac7b237d01193d3e4664ccd7a42ae9b43570ab2b7e883882
EBUILD mutesync-0.0.1.ebuild 792 BLAKE2B d1887c3e4b24c3357c979647d077dd02973940751aca6909cf29d434bc8430c3560f1c4a7de8e7c3ea29762c38a8f47c0488ee1f6f2a2ba634984fa977e4567e SHA512 3c90ac5bbf831cdeecb10d300b9165206e87676c2d73576cbdc12f9a55ca9c9438118c7eb3042524041e13ed42e6f61d0e65fb256afc0b3fc514b09e5f104337
EBUILD mutesync-0.0.2.ebuild 792 BLAKE2B d1887c3e4b24c3357c979647d077dd02973940751aca6909cf29d434bc8430c3560f1c4a7de8e7c3ea29762c38a8f47c0488ee1f6f2a2ba634984fa977e4567e SHA512 3c90ac5bbf831cdeecb10d300b9165206e87676c2d73576cbdc12f9a55ca9c9438118c7eb3042524041e13ed42e6f61d0e65fb256afc0b3fc514b09e5f104337
MISC metadata.xml 454 BLAKE2B 089ae956ecd4743c668e3c649eac503c5841a428159d532e5caf0b6ae8c4245e58358b5b2d5dea8f4ff21016a9d619af529e080bf5013bad50b9aae1517cfce8 SHA512 f557ccb9b4bfef05ca9271d036a83035953dd37fcb18304a784ef9e09de04560356ab1cef9dc9f26232f5a7d8e0bd05a70248874b91a216153252b3441ddffd8

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_{7..9} )
inherit distutils-r1
DESCRIPTION="Asynchronous library to control mutesync devices."
HOMEPAGE="https://github.com/currentoor/pymutesync https://pypi.org/project/mutesync/"
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"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/async_timeout[${PYTHON_USEDEP}]"
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
}