bump bond-home-0.0.9

This commit is contained in:
Andreas Billmeier 2020-07-12 17:35:11 +02:00 committed by Andreas Billmeier
parent 2e9de80836
commit 84979e29db
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* fix influcdb-client compile problems
* blinkpy-0.15.1 bumped
* bump pyHS100-0.3.5.1
* bump bond-home-0.0.9
2020-07-11 homeassistant-0.112.4
* bump zha-quirks-0.0.41

View File

@ -1,3 +1,5 @@
DIST bond-home-0.0.8.tar.gz 2558 BLAKE2B 06c6129462b5397c3543eb01303d6675e926c1cfb48317bba7afc639eaf5eda55741374aa8d53ec3803a4d8041d393f378ac37a590fb9214c61a5de35ba9a1a8 SHA512 9b7f47e297302a033dd0c2744ed70af90079a0e7919ffb40fc39e1caf601638085365083de66b9b4143714e74043b7f346a646e14fc5564f6d0ec6b92e2bbef4
DIST bond-home-0.0.9.tar.gz 2871 BLAKE2B 451edd06ce57819750ad5dacab98760772c9a6c2ad5010fa44d29ad8985b86be66737cc608976d2f29108ef824ae33461a93414b8cc6d99dfadfecf4cafdc4d6 SHA512 3033cc5ab7082facfa508768ba19c2caa4812181d4d0d76f02ea541d8be744aee7a1f652700f1fa76631d3bb46211de75e32c57da0178397660f481a49738cd0
EBUILD bond-home-0.0.8.ebuild 720 BLAKE2B 6359ca3a305da78c765c485e1ef64ea50adaba5c152184e6db67ec2ba2189f5ff5d9c2785589962a4d183785afcaa0a173a03c0dedb4e6f1559098ecd461a1da SHA512 e27cd263036079bc93b573f430e1079a26cda1e51b8bbfc215e6b776e1d4eb541670737f4bc4f2003c855a9e360e2a480db17de3347308f741eb5a41085f7df9
EBUILD bond-home-0.0.9.ebuild 720 BLAKE2B 6359ca3a305da78c765c485e1ef64ea50adaba5c152184e6db67ec2ba2189f5ff5d9c2785589962a4d183785afcaa0a173a03c0dedb4e6f1559098ecd461a1da SHA512 e27cd263036079bc93b573f430e1079a26cda1e51b8bbfc215e6b776e1d4eb541670737f4bc4f2003c855a9e360e2a480db17de3347308f741eb5a41085f7df9
MISC metadata.xml 449 BLAKE2B cd91184320e492f98080794659cd1f52103733a4787d320b03e8f8157ada3065d758b3d9a4a660dd237bb56447818504c2eac08a30276d288b73ba7bf633d2ab SHA512 39c47106888aaf1cf100be38a14df89abe24b15b24fdc75f9179625ebfc1db3baf2ffa0c23aadd10b123907387f8c07a8b8a0ca497ea09614a3275afcbb7eb26

View File

@ -0,0 +1,30 @@
# 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="Python library for controlling BOND Home Hub"
HOMEPAGE="http://github.com/nguyer/bond-home https://pypi.org/project/bond-home/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
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
}