bump bellows-0.16.2

This commit is contained in:
Andreas Billmeier 2020-05-20 18:15:59 +02:00
parent ffa6959ffb
commit 9c1fcdab66
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 0 deletions

View File

@ -11,6 +11,7 @@
* bump pydaikin-2.0.2
* bump pyatag-0.3.1.2
* bump pysonos-0.0.30
* bump bellows-0.16.2
2020-05-17 homeassistant-0.110.0_beta3
* add gogogate2-api-1.0.3

View File

@ -1,3 +1,5 @@
DIST bellows-0.16.1.tar.gz 59015 BLAKE2B 8a2ab648a4e65d22cd9cf7a438dadeb77c917076d916bd647af38d14e43fbf89acd5bb6e83649ba91ed7a900d7b08bae31307b9f1f201be6af7585c20792ec2a SHA512 b88f8835854fe6a2777cb7d3b0d4cc29c315e08d58dc7104ec59a84e692f0d4878b3f9fbb98de1c20e619a0dc482853279081464ffb35131e9f8ca5fc38f1eb0
DIST bellows-0.16.2.tar.gz 59610 BLAKE2B aeb91ee227931340a6a4d120a43f8e7def4c583a4c6e95c77f62976ad381a58912dcf1d2f7dbd05e3a696b6d8e038b81527ea92c39a59c5293a9b4a531ecd0f7 SHA512 2e0c5ecb516277cead94d3ba6250a48a237064bc33753697e0c7fbeac442798c6c19a98225267aabcdbb04b8666db365c253badc414320b7b3623cde2c4c6897
EBUILD bellows-0.16.1.ebuild 935 BLAKE2B 53be5e9554340ea64898c6d65c95058ec38e4bc6ef5715dc7e9f96eaaff385afe26ea0f4bc138fad377f345ca996f631877a9968d123a813892a1d60793d4fed SHA512 e8568f5005cc9056a469883aec37e28da245af7ca5190e9af1e610a050c96bda30dfcd631aa61da6a01acb76e462504330de0341a7ccaa3f9460611e9114d392
EBUILD bellows-0.16.2.ebuild 935 BLAKE2B 53be5e9554340ea64898c6d65c95058ec38e4bc6ef5715dc7e9f96eaaff385afe26ea0f4bc138fad377f345ca996f631877a9968d123a813892a1d60793d4fed SHA512 e8568f5005cc9056a469883aec37e28da245af7ca5190e9af1e610a050c96bda30dfcd631aa61da6a01acb76e462504330de0341a7ccaa3f9460611e9114d392
MISC metadata.xml 451 BLAKE2B 3c733715e596fca1ac49954a45fe0b7fdba4340e13142c37b72b5458127d551e86f96dd3f72bc66b71236f4d7733c761215308f297437b0ab5f3aeba64731dcd SHA512 781633f3b5e2ee5b475aff01c628656f523be1f6538e9dff77f780363213874bd49d87090e459249f4706379804e7c65cf1aa11f147d79bcd1837ad6865f9dce

View File

@ -0,0 +1,35 @@
# 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="Library implementing EZSP"
HOMEPAGE="https://github.com/zigpy/bellows https://pypi.org/project/bellows/"
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/click[${PYTHON_USEDEP}]
~dev-python/click-log-0.2.0[${PYTHON_USEDEP}]
~dev-python/pure_pcapy3-1.0.1[${PYTHON_USEDEP}]
dev-python/pyserial-asyncio[${PYTHON_USEDEP}]
dev-python/voluptuous[${PYTHON_USEDEP}]
>=dev-python/zigpy-0.20.1[${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
}