diff --git a/CHANGELOG.txt b/CHANGELOG.txt index bd0c1080f..04be8a35b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,6 @@ +2020-06-14 + * bump bellows-0.17.0 + 2020-06-11 homeassistant-0.111.0 * bump androidtv-0.0.43 * bump ihcsdk-2.7.0 diff --git a/dev-python/bellows/Manifest b/dev-python/bellows/Manifest index 6d9c0c12b..a9d1f1acd 100644 --- a/dev-python/bellows/Manifest +++ b/dev-python/bellows/Manifest @@ -1,5 +1,7 @@ DIST bellows-0.16.1.tar.gz 59015 BLAKE2B 8a2ab648a4e65d22cd9cf7a438dadeb77c917076d916bd647af38d14e43fbf89acd5bb6e83649ba91ed7a900d7b08bae31307b9f1f201be6af7585c20792ec2a SHA512 b88f8835854fe6a2777cb7d3b0d4cc29c315e08d58dc7104ec59a84e692f0d4878b3f9fbb98de1c20e619a0dc482853279081464ffb35131e9f8ca5fc38f1eb0 DIST bellows-0.16.2.tar.gz 59610 BLAKE2B aeb91ee227931340a6a4d120a43f8e7def4c583a4c6e95c77f62976ad381a58912dcf1d2f7dbd05e3a696b6d8e038b81527ea92c39a59c5293a9b4a531ecd0f7 SHA512 2e0c5ecb516277cead94d3ba6250a48a237064bc33753697e0c7fbeac442798c6c19a98225267aabcdbb04b8666db365c253badc414320b7b3623cde2c4c6897 +DIST bellows-0.17.0.tar.gz 59746 BLAKE2B 66128b07238c039124c589285935cfef670828e9d1499bd5135ea942c57d91e863d446f60040cc708e6adca68e4954645f9c943d2d7b315de5eceeb96cc1e6da SHA512 09da4165ab0a6decd5b13476012683c5500367febb1c3c2ee8c609c81d40fe6a97524037ed47d1abd436d94167c2b8387babfdb95177fb502f5e7d7843a00877 EBUILD bellows-0.16.1.ebuild 935 BLAKE2B 53be5e9554340ea64898c6d65c95058ec38e4bc6ef5715dc7e9f96eaaff385afe26ea0f4bc138fad377f345ca996f631877a9968d123a813892a1d60793d4fed SHA512 e8568f5005cc9056a469883aec37e28da245af7ca5190e9af1e610a050c96bda30dfcd631aa61da6a01acb76e462504330de0341a7ccaa3f9460611e9114d392 EBUILD bellows-0.16.2.ebuild 935 BLAKE2B 53be5e9554340ea64898c6d65c95058ec38e4bc6ef5715dc7e9f96eaaff385afe26ea0f4bc138fad377f345ca996f631877a9968d123a813892a1d60793d4fed SHA512 e8568f5005cc9056a469883aec37e28da245af7ca5190e9af1e610a050c96bda30dfcd631aa61da6a01acb76e462504330de0341a7ccaa3f9460611e9114d392 +EBUILD bellows-0.17.0.ebuild 935 BLAKE2B 53be5e9554340ea64898c6d65c95058ec38e4bc6ef5715dc7e9f96eaaff385afe26ea0f4bc138fad377f345ca996f631877a9968d123a813892a1d60793d4fed SHA512 e8568f5005cc9056a469883aec37e28da245af7ca5190e9af1e610a050c96bda30dfcd631aa61da6a01acb76e462504330de0341a7ccaa3f9460611e9114d392 MISC metadata.xml 451 BLAKE2B 3c733715e596fca1ac49954a45fe0b7fdba4340e13142c37b72b5458127d551e86f96dd3f72bc66b71236f4d7733c761215308f297437b0ab5f3aeba64731dcd SHA512 781633f3b5e2ee5b475aff01c628656f523be1f6538e9dff77f780363213874bd49d87090e459249f4706379804e7c65cf1aa11f147d79bcd1837ad6865f9dce diff --git a/dev-python/bellows/bellows-0.17.0.ebuild b/dev-python/bellows/bellows-0.17.0.ebuild new file mode 100644 index 000000000..2de95bc4d --- /dev/null +++ b/dev-python/bellows/bellows-0.17.0.ebuild @@ -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 +}