dev-python/sonos-websocket: add 0.1.0, 0.1.2, fix 0.1.1
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
84ec740c6c
commit
fb9004131f
@ -1,3 +1,7 @@
|
||||
DIST sonos-websocket-0.1.0.tar.gz 5049 BLAKE2B a162936d953308d2aba0c1076097d074ba66fb16ce097c064e3403e8bc1c80bf482769b26e9fbaaa276697dbaa109616b6ee95bbacf3d3b53362c46dd3dc4eb3 SHA512 9f56c96e60a980923e575f629299206696a33817bc0206044c938bd97afcf9c76f59817b83e07cf5081348e54d8fea908562f551163e4926384673c08a7fd582
|
||||
DIST sonos-websocket-0.1.1.tar.gz 5069 BLAKE2B e7d9d228d4c6111a749583aaebebdaa1fba07a9a77c9c6c4cacfd6796985a64087d24b971797372a6763f379af4a2f0e3825ce5e2d643b10bfc3bbd455d57dbb SHA512 11bbc4be8f6adfbcd065002ca5b0642c1f709435389f28b0ddca49c0baf00526511b3e1c30570a76b41fa7c964bad2e7fe8e9c7ba8de11b472933653b874179e
|
||||
EBUILD sonos-websocket-0.1.1.ebuild 709 BLAKE2B 3d5a9f395eff6c39bb582d92ed795a75ef1a9e9a4852e49e6e0b5f1e2a05022895e0514c8a0983b26085636660649c300019a85587c2646fb36b1bc0dd7c442c SHA512 e9f78356054573ffda7b323494e8e572aa7588ef5d515d3057db5f5e9f97b5cd4d320c975bcf2b2a0e66fcde76d6128a1c531a90e8af996b5c549462610b14ce
|
||||
DIST sonos-websocket-0.1.2.tar.gz 5079 BLAKE2B c3c97aeaa579c7b2314ba888ca6c21f2c57e5083c0c3636a94033045c6bd4bbcce25f71ef81e72d31a2b795ab040636068bd2bedd8290eec2fc7239473211bfc SHA512 d09c87b21bb3811e775ce171bd660b45577789eeb280191d3f30840b9006dd41c87a9aef8e662912acf3a079b05e03abbc949c14a23f54bacf84504c5bafb4de
|
||||
EBUILD sonos-websocket-0.1.0.ebuild 710 BLAKE2B 8b7887dc9224ded1227bd0df886372ccd14c284d45b140d4b8ba39a820d751933e4c43489a017d307a319210f12d71f05a82d4b517f717c6c691c727ecdde343 SHA512 027b6ac9bb137a2df54f9b0e4699963a7bd0f4607ce5f8b94dcb103d6fbcf3981a35a8a71954b2496ac56755bd482de311006f53175bd5775261c756b80ff67c
|
||||
EBUILD sonos-websocket-0.1.1.ebuild 710 BLAKE2B 8b7887dc9224ded1227bd0df886372ccd14c284d45b140d4b8ba39a820d751933e4c43489a017d307a319210f12d71f05a82d4b517f717c6c691c727ecdde343 SHA512 027b6ac9bb137a2df54f9b0e4699963a7bd0f4607ce5f8b94dcb103d6fbcf3981a35a8a71954b2496ac56755bd482de311006f53175bd5775261c756b80ff67c
|
||||
EBUILD sonos-websocket-0.1.2.ebuild 710 BLAKE2B 8b7887dc9224ded1227bd0df886372ccd14c284d45b140d4b8ba39a820d751933e4c43489a017d307a319210f12d71f05a82d4b517f717c6c691c727ecdde343 SHA512 027b6ac9bb137a2df54f9b0e4699963a7bd0f4607ce5f8b94dcb103d6fbcf3981a35a8a71954b2496ac56755bd482de311006f53175bd5775261c756b80ff67c
|
||||
MISC metadata.xml 541 BLAKE2B b890a1d476d441fe1b1e786ed7a07bd6e045dc221c5f3e66806c4f8e76c873883f6a62c5dd9757415d8ec7d9746bc7ae69ac345a87bf208c8d4f3925c5093051 SHA512 8c07870765f52f3f26232056996fea78508c1657bd1ce42d924f242f738df4ce090b5f65dd14002c45faf1e3809d0f7e183715131e9f34dfc3a8a000f5816932
|
||||
|
32
dev-python/sonos-websocket/sonos-websocket-0.1.0.ebuild
Normal file
32
dev-python/sonos-websocket/sonos-websocket-0.1.0.ebuild
Normal file
@ -0,0 +1,32 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
DESCRIPTION="An asynchronous Python library to communicate with Sonos devices over websockets."
|
||||
HOMEPAGE=" https://pypi.org/project/sonos-websocket/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
|
32
dev-python/sonos-websocket/sonos-websocket-0.1.2.ebuild
Normal file
32
dev-python/sonos-websocket/sonos-websocket-0.1.2.ebuild
Normal file
@ -0,0 +1,32 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
DESCRIPTION="An asynchronous Python library to communicate with Sonos devices over websockets."
|
||||
HOMEPAGE=" https://pypi.org/project/sonos-websocket/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user