bump plugwise-0.8.5

This commit is contained in:
Andreas Billmeier 2021-01-09 15:20:59 +01:00 committed by Andreas Billmeier
parent d9068d9903
commit 7d78f6a263
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 0 deletions

View File

@ -66,6 +66,7 @@
* bump pychromecast-7.7.2
* dg google-nest-sdm-0.2.6
* bump pydaikin-2.4.1
* bump plugwise-0.8.5
2020-12-21
* update meteofrance-api-1.0.1

View File

@ -1,3 +1,5 @@
DIST plugwise-0.8.3.tar.gz 50233 BLAKE2B 81653c27671492fd535857d5b3ec368552003603de8aee7c21580d54911b133a8153e62e0cc06d042f3efba2a4a266db1fa75456029c36868b00952c7703b757 SHA512 495a6ce3ced8765785dc29c1ca56009161098eb0ff6c50e942d03fca985c3e6b7fe95805922e3838fa38afeaac5e3976c6e798c8a82048f8f21de3249f7d54fc
DIST plugwise-0.8.5.tar.gz 50284 BLAKE2B e23839e7970a25d905b9778ca26364ed828c00dc5e5d711678d1e4549014f8a11ed095f2e58049b114e3a8323c7d9d04fcebbd50457ed4cc658338dbd5177072 SHA512 a9cb27cd912d1f09ecc2ede8db925c036ff9228a239c2b9b043a1c5c02266dc92b6bb99161df11c16a6b4ecae30e9c9178c928709f02c3e760306d03497f36a9
EBUILD plugwise-0.8.3.ebuild 1074 BLAKE2B d72216e25e93256d29a4cc3f679ee9d3a8cd59d63127561aa879e43d7239ff0822f8696c48183515c4cd45b3b882a7852f6cce45868639ea26b98fb137d25960 SHA512 d18857cc746aca7f5021e92d35b1cf689adedd0a4c89747981e50751256351f426ba938d048966a517c66428cdc123960faf8186d83325efac0a65d44c2f76e0
EBUILD plugwise-0.8.5.ebuild 1063 BLAKE2B 19860d9270521add3ed073fb8517d75bd6af48060e2c74635fa143fc43dddd975d0e3c46139795785a80e693d8029a83bb8e22d476a292730f068998ea219563 SHA512 c0efc02cf0f587e57d96f7bee61e9210c206a7117ca98ee6b8b78fe7f84a1a8ed41ed81ec8531e2a681d269f851034b2333e88013efe8205b1cddb042cb6526d
MISC metadata.xml 447 BLAKE2B 9b78f25d4ceeb259d3eabe60e222b47cae15bfc845a74c8640bf53440061f8a385067b2374754fc525cd78dabef7daa3439374b9cb5aee5ed5bba498f1112083 SHA512 6935774d4bc3e598c2c6df1fcc42ba2e4e9727e48804f66b88ac8cb2139bcc8a3d4994ad21059f725b07759e872cb025d4aa8a82c8d7e2b38b730d32db68af9b

View File

@ -0,0 +1,39 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
DESCRIPTION="Plugwise (Adam/Anna/P1/Stick/Stretch) API to use in conjunction with Home Assistant Core."
HOMEPAGE="https://github.com/plugwise/python-plugwise https://pypi.org/project/plugwise/"
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[${PYTHON_USEDEP}]
dev-python/async_timeout[${PYTHON_USEDEP}]
dev-python/crcmod[${PYTHON_USEDEP}]
dev-python/defusedxml[${PYTHON_USEDEP}]
dev-python/pyserial[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/semver[${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
}