diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 51d609619..2dbd387ea 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -10,6 +10,7 @@ * update pywemo-0.4.45 * bump pyads-3.2.1 * bump aioazuredevops-1.3.5 + * bump bond-api-0.1.8 2020-07-29 homeassistant-0.113.2 * update homeassistant-0.113.2 diff --git a/dev-python/bond-api/Manifest b/dev-python/bond-api/Manifest index ad10d194a..e79fd165d 100644 --- a/dev-python/bond-api/Manifest +++ b/dev-python/bond-api/Manifest @@ -1,5 +1,7 @@ DIST bond-api-0.1.4.tar.gz 3512 BLAKE2B 5166fe921141c836d786b11080138eb86f131cd2f7ac55f51ec21b9db95669edd9067b1f2420d1f30daa9253816fc1d44bea3c7b043b31e7f692531faff74e5e SHA512 164486d37fd3c3d7b43d33f7875e4faafc22f8440ecdf93b5b8fdb55ea705dc93c7c758dfafb69fbf5ce1245fbe60747859961a6611f4cedb1d411c377f0b1fb DIST bond-api-0.1.7.tar.gz 4512 BLAKE2B bc8d5e92b1c3e57b7c9589610c87b2eda4e43b2a3b75106fc0a125ef267837ab35f86c2aee64e9ff1434685d6c7d91f7e8c26d2089e4f7510b5fc1a631f1d604 SHA512 8700a0ea9f1c3c644a3fd89069c5329f1c1c26cb79123a26d3527c564013f54e6a877a6919d658dd3cf2385298370d5379399e8f3c4f45f70aff138e0031d42b +DIST bond-api-0.1.8.tar.gz 4582 BLAKE2B 7a4a07de800f97bc851a5404c0821f229e45a0e19064e6c31951b04374dcaaf3fa23b2f64887bda1dae5224bfff1c5c267c355101eb1b0f30a1e68f73bfec5e8 SHA512 c79626aea9a33da821684b78930be2a347994c73fba0967a1c099b361ff684c280ce9b28943a3fa868e46f9a9cf4c25aa74c734e2583bbf47b9d80805bb131dd EBUILD bond-api-0.1.4.ebuild 805 BLAKE2B 957f86035b6c7e206fb41c3a8a5aa7b51713d6682ba5edbcb840f4ad792cbfd02b957e5b7b0ca107511263df0ab9b3ed6cb416e4e39b99f253e3cadb87e28b2b SHA512 b525d31a332bdc20b8b71dbb7843729fd5350644f3a40c1d151b04d2f93bea1057d4032c5f67268a9c6e7e5a66f3c32e33676d56895dd85532d559c65ce29a6b EBUILD bond-api-0.1.7.ebuild 805 BLAKE2B 957f86035b6c7e206fb41c3a8a5aa7b51713d6682ba5edbcb840f4ad792cbfd02b957e5b7b0ca107511263df0ab9b3ed6cb416e4e39b99f253e3cadb87e28b2b SHA512 b525d31a332bdc20b8b71dbb7843729fd5350644f3a40c1d151b04d2f93bea1057d4032c5f67268a9c6e7e5a66f3c32e33676d56895dd85532d559c65ce29a6b +EBUILD bond-api-0.1.8.ebuild 805 BLAKE2B 957f86035b6c7e206fb41c3a8a5aa7b51713d6682ba5edbcb840f4ad792cbfd02b957e5b7b0ca107511263df0ab9b3ed6cb416e4e39b99f253e3cadb87e28b2b SHA512 b525d31a332bdc20b8b71dbb7843729fd5350644f3a40c1d151b04d2f93bea1057d4032c5f67268a9c6e7e5a66f3c32e33676d56895dd85532d559c65ce29a6b MISC metadata.xml 461 BLAKE2B eaf38c04904474ba1d826566928eef9e06ca491b6f318d468857ac56aa00a59bcf1dc74ab5594a9b020482705147b87dc4b88b8050d6e9ca4eca41782d4a48ca SHA512 06c7040e507e7ea54337b3a87fe91938cb5cf223c11582bb3a12253c408cbed82928178a559ea34e84afc14fba3ce92dcfe29bc9aa7573466a185a55c1bbbafd diff --git a/dev-python/bond-api/bond-api-0.1.8.ebuild b/dev-python/bond-api/bond-api-0.1.8.ebuild new file mode 100644 index 000000000..46157d1cb --- /dev/null +++ b/dev-python/bond-api/bond-api-0.1.8.ebuild @@ -0,0 +1,32 @@ +# 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="Asynchronous Python wrapper library over Bond Local API" +HOMEPAGE="https://github.com/prystupa/bond-api https://pypi.org/project/bond-api/" +MY_PN=${PN//-/_} +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="dev-python/requests[${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 +}