update greeclimate-0.9.1

This commit is contained in:
Andreas Billmeier 2020-10-17 09:51:30 +02:00 committed by Andreas Billmeier
parent 03b934e605
commit 21b520385a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 0 deletions

View File

@ -3,6 +3,9 @@
* update httpcore-0.12.0
* update httpx-0.16.1
* add respx-0.14.0
* update greeclimate-0.9.1, fixes
- https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/187
- https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/188
2020-10-16 homeassistant-0.116.4
* bump elkm1-lib-0.8.3

View File

@ -1,3 +1,5 @@
DIST greeclimate-0.9.0.tar.gz 25810 BLAKE2B 0619843ffbdf169455d0c9e15e5b6978793e87e51c4e5a1bec93af02e05346e26f5193b5538c5462f6342a2076dee49a6d70c0e96de926369b32f9ada4322ca5 SHA512 f6fc9ccbbaeaaeaa39fcd26c7088e188476d177976437c0f8a6b94a5106948ac049ba0cd0ab30755d98a8b9851f8fbf1713d4af9de708142f788b297d7affc5f
DIST greeclimate-0.9.1.tar.gz 22291 BLAKE2B e8d638563ca2996a2f2cfb98cc6edf9311b2d52a1630d59760589567adad0833897c74ee74da42bf6b4e3b2d677040c97f2fb49bb1101b30d2297f28b8df9b74 SHA512 3390c68780c80d40b8d9a01c0953958b0bf00ce1646c957dec802528539f8249248ff9cd6f00686544f51f44ad2447359721eaa9d62981576c115425bd32563d
EBUILD greeclimate-0.9.0.ebuild 1206 BLAKE2B 746a8dab39439e62e1868ee65a54bbb3278801db3a79b028a420030aaee336de84c74f2085f98a3d8fc3c2970c5fdc184889d5480a8cb5ab4ac535b0f6145fef SHA512 29ee34ddc5a2a508cc8448e854d3445dda8d2cbc4cbb11e81af718f53942c6d6a833da3ca62455014eee190a0f86d1578005035f4baff6925909eba35562d3e8
EBUILD greeclimate-0.9.1.ebuild 811 BLAKE2B 00deb585cd508dc1ee6c564b2e22062e5813dc58c66f32cc70215d0d8a25d43f550a7270417b34c2ac8a4f72614347c72b821166a985a04e94d25259412e754c SHA512 0e928620f9d2f632ba2b2670e2ce6ec71176721dc65dc1ee40d02f9df24b732fe7bdc913ec2863ef7bbaf163eb813832d3d029deda875bc1f57a6f283531215b
MISC metadata.xml 330 BLAKE2B c5801ae882766ed7532d5e2e1b7f65c2772f6dae8a9c2b531ebc14765ffe5fad5dda00545923c61687af5298962b11a19e9cc39c78022ca3c46d12cdcacf188b SHA512 bb00158c7eacde17e399eb8b44c193853a9981239678f34447a39e1bde5f58917ccc16ce557cd959aa0d0afb309cbbead0172928589bba13747e91bb97486933

View File

@ -0,0 +1,34 @@
# 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="Discover, connect and control Gree based minisplit systems"
HOMEPAGE="https://github.com/cmroche/greeclimate https://pypi.org/project/greeclimate/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="~dev-python/netifaces-0.10.9[${PYTHON_USEDEP}]
~dev-python/pycryptodome-3.9.8[${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
}