add plugwise-0.8.3

This commit is contained in:
Andreas Billmeier 2020-11-21 09:18:59 +01:00 committed by Andreas Billmeier
parent 5fc574b750
commit d3677a7b11
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 58 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* update dsmr-parser-0.23
* bump beewi-smartclim-0.0.10
* update zigpy-0.28.0
* add plugwise-0.8.3
2020-11-19 homeassistant-0.118.1
* bump home-assistant-frontend-20201111.2

View File

@ -0,0 +1,3 @@
DIST plugwise-0.8.3.tar.gz 50233 BLAKE2B 81653c27671492fd535857d5b3ec368552003603de8aee7c21580d54911b133a8153e62e0cc06d042f3efba2a4a266db1fa75456029c36868b00952c7703b757 SHA512 495a6ce3ced8765785dc29c1ca56009161098eb0ff6c50e942d03fca985c3e6b7fe95805922e3838fa38afeaac5e3976c6e798c8a82048f8f21de3249f7d54fc
EBUILD plugwise-0.8.3.ebuild 1074 BLAKE2B d72216e25e93256d29a4cc3f679ee9d3a8cd59d63127561aa879e43d7239ff0822f8696c48183515c4cd45b3b882a7852f6cce45868639ea26b98fb137d25960 SHA512 d18857cc746aca7f5021e92d35b1cf689adedd0a4c89747981e50751256351f426ba938d048966a517c66428cdc123960faf8186d83325efac0a65d44c2f76e0
MISC metadata.xml 447 BLAKE2B 9b78f25d4ceeb259d3eabe60e222b47cae15bfc845a74c8640bf53440061f8a385067b2374754fc525cd78dabef7daa3439374b9cb5aee5ed5bba498f1112083 SHA512 6935774d4bc3e598c2c6df1fcc42ba2e4e9727e48804f66b88ac8cb2139bcc8a3d4994ad21059f725b07759e872cb025d4aa8a82c8d7e2b38b730d32db68af9b

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">plugwise</remote-id>
<maintainer status="unknown">
<email>info@compa.nl</email>
<name>Plugwise-team</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,39 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
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="${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
}