From 77a13ce9dcebde9d43373a241f52d9318f0ae6e5 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sat, 12 Jun 2021 18:20:02 +0200 Subject: [PATCH] add boschshcpy-0.2.17 --- CHANGELOG.txt | 2 +- dev-python/boschshcpy/Manifest | 2 ++ .../boschshcpy/boschshcpy-0.2.17.ebuild | 35 +++++++++++++++++++ 3 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 dev-python/boschshcpy/boschshcpy-0.2.17.ebuild diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 1b39d9a00..8c5fb3f77 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -88,7 +88,7 @@ * update backoff-1.10.0 * update demjson-2.2.4 * add aiosyncthing-0.6.3 - * add boschshcpy-0.2.19 + * add boschshcpy-0.2.19, boschshcpy-0.2.17 * add garages-amsterdam-2.1.1 * add garminconnect-aio-0.1.1 * add krakenex-2.1.0 diff --git a/dev-python/boschshcpy/Manifest b/dev-python/boschshcpy/Manifest index b2e8ca992..2bd30d1c1 100644 --- a/dev-python/boschshcpy/Manifest +++ b/dev-python/boschshcpy/Manifest @@ -1,3 +1,5 @@ +DIST boschshcpy-0.2.17.tar.gz 23938 BLAKE2B 584b1729e7b551087d5b7ff1c601c7522b8f9410ded83733ecd721f70c06d947baabaf344abd33e347edf888b28442abd359bb038f1c8d64955d168b1d30c1d2 SHA512 0245aa96bf488b804847f634f1c17dc698618cce352c562ee88dd36e2d68bd9d6e5fb9e9c8bdd8f385538dda683bf81726ee2cff3a6e2edfd626b0ca8dce9aee DIST boschshcpy-0.2.19.tar.gz 24056 BLAKE2B 1abeac3968b15028d5ac1a62886416c2a049a66c19eeb8b391ce7e5e78445197dfde669401d9111bf6d32fd16805e497b6d00244d688077b70037b5252c86cb2 SHA512 bd08ecda159a61274e2d03198d15aa56b5d302f01199ff13d7b441a79ac4ad6c0823e299a6b1d4b3134f27cd879d145668a7145a87baff012a0d9df55fee4bb2 +EBUILD boschshcpy-0.2.17.ebuild 889 BLAKE2B 32d90e62f674671757a76f701036a47b1a3d90c7e90fa322571467be7f264712a47cae3bd73d724aeb63e64b9caf07b724544d8591b632810a2fb8c686e4fa7a SHA512 904103590952ff61ced7a7185a4a78ccff6ce63d99e944639e33284d3b1c4d992b3de7af75407a44e50a1569e8670b956c14a29d89b3956c8c5936a4c40b2bae EBUILD boschshcpy-0.2.19.ebuild 889 BLAKE2B 32d90e62f674671757a76f701036a47b1a3d90c7e90fa322571467be7f264712a47cae3bd73d724aeb63e64b9caf07b724544d8591b632810a2fb8c686e4fa7a SHA512 904103590952ff61ced7a7185a4a78ccff6ce63d99e944639e33284d3b1c4d992b3de7af75407a44e50a1569e8670b956c14a29d89b3956c8c5936a4c40b2bae MISC metadata.xml 493 BLAKE2B a1a00c4f127d3ceb666aed80834db4ae0a1ec56c4ddbb3937ecf1525ba88f9d4f225719ab17ace6d27eb8308e7ae8dd963b9e25c5606884bafa16f68ef29953d SHA512 9152dfe93397ad40453fe6a411d623af86dc96598e300f0f9b6bc8062b8c742170a1570a536fbf2f6efe17a59ed582c44221b48382d786694245f023e2dd0c6a diff --git a/dev-python/boschshcpy/boschshcpy-0.2.17.ebuild b/dev-python/boschshcpy/boschshcpy-0.2.17.ebuild new file mode 100644 index 000000000..5202288d5 --- /dev/null +++ b/dev-python/boschshcpy/boschshcpy-0.2.17.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Bosch Smart Home Controller API Python Library" +HOMEPAGE="https://github.com/tschamm/boschshcpy https://pypi.org/project/boschshcpy/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DOCS="README.md" + +RDEPEND=">=dev-python/cryptography-3.3.2[${PYTHON_USEDEP}] + ~dev-python/getmac-0.8.2[${PYTHON_USEDEP}] + >=dev-python/requests-2.22[${PYTHON_USEDEP}] + >=dev-python/zeroconf-0.28.0[${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 +}