bump python-songpal-0.12

This commit is contained in:
Andreas Billmeier 2020-05-09 12:43:29 +02:00
parent 312566ff79
commit acc24de177
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -21,6 +21,7 @@
* add bellows-0.16.1
* update pydaikin-2.0.0
* bump zeroconf-0.26.1
* bump python-songpal-0.12
2020-05-03 homeassistant-0.109.3
* adopting semantic versioning in hass-nabucasa

View File

@ -1,5 +1,7 @@
DIST python-songpal-0.11.1.tar.gz 25698 BLAKE2B f2d57e26ede952608bab9c366827f25eb369ff5b6f878f022577f63864859d1b9366c99ffa90fea09968603414c168f2286fbf094711afec32b4f07d534d2987 SHA512 eb966a5e218fb38dc5817e1bc5c53e0954c5079e7c10a7c3cb6c67657621cad2528a7df454ecffaac3beed6e402568f9d2ba2a0ea180de9ea6d7f5c75fa17515
DIST python-songpal-0.11.2.tar.gz 25745 BLAKE2B 5913c717a74af0d5aa0952337eae1d63535a2d803d2c2e5ac09da1fcde8989a9d4b5a945ce7c5c67cdd096ad61394c131da38667d8e6cfba3f2e01227d770825 SHA512 f98759b72a6f52974934994297d755423680aec803688cb6957d2dd9722e3f593a77a355285b2d00948b71b9433eb9002f7b6938620c905108559574af92ab95
DIST python-songpal-0.12.tar.gz 41237 BLAKE2B 2940b0bbf8b136827048b5b0f1bf79e150144de36447f020f1f416de60fc6a17070fe3ec8ec8016bce0adff1eb5e018128cb8e1b23d595f744b74f95ebf7be52 SHA512 0bef348d76ab509f429071aacce6fdf5b1d905ccefce448a3ab0205b02d79ef57a4f367757b79ffb19ff91a8d9f65ffd35c8caca8407392650c1125648ea12e8
EBUILD python-songpal-0.11.1.ebuild 706 BLAKE2B 345c9e069b077a70fd9eeb5af60c1cde280dcc811ead31accba1438ad2d68ea395c461e9b6d63eb3d85c5d10de2c746cd4210b6df4da784d826db5d018e634f3 SHA512 825f39c94aa1bb3cddda790c24fadafabac88cb3fdff2edb9eac4a15a1f1c2848b0a64993e92d035364ff2eb6073aa4ba8558afe4f01f01ddb8526086ea1912a
EBUILD python-songpal-0.11.2.ebuild 875 BLAKE2B 59fd15cb6101277d75e00cfc64d74c0f0c0b8d50e791c48ef7b9aba36e0e326a60c10ea0bdb453898d3582f2ddbc9b3cbd18552d17a5973f27b7bc8066e8b313 SHA512 52647f402e139c9c3665b7511deeb8aa411b8451002a216599037a85dc542730e024aaaaff7fee5ae0e97e8b3722445f40f9c68021b63efb667d40cb6cb90440
EBUILD python-songpal-0.12.ebuild 875 BLAKE2B 59fd15cb6101277d75e00cfc64d74c0f0c0b8d50e791c48ef7b9aba36e0e326a60c10ea0bdb453898d3582f2ddbc9b3cbd18552d17a5973f27b7bc8066e8b313 SHA512 52647f402e139c9c3665b7511deeb8aa411b8451002a216599037a85dc542730e024aaaaff7fee5ae0e97e8b3722445f40f9c68021b63efb667d40cb6cb90440
MISC metadata.xml 452 BLAKE2B 88f2474981aca5c6a401fb5ede01e784020654f1298cdc3b856926515dbc4fc21643bd0a955d4ef94732e3cd581e3d278b0016ca84fdbf5a17cbb2c7751e61e5 SHA512 c174c2cd66b072d81f8e5f7594fadd49c2b0c969de89d0920647b57e5aa1f8d27b0dc130eb84551af35971dd6bcdd95147319fd0972d48a2500e9f6b1e0ed5ec

View File

@ -0,0 +1,33 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python library for interfacing with Sony's Songpal devices"
HOMEPAGE="https://github.com/rytilahti/python-songpal https://pypi.org/project/python-songpal/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
>=dev-python/click-7.0[${PYTHON_USEDEP}]
dev-python/attrs[${PYTHON_USEDEP}]
dev-python/async-upnp-client[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
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
}