bump ring-doorbell-0.2.8

This commit is contained in:
Andreas Billmeier 2019-12-28 16:52:23 +01:00
parent fa0e491735
commit 86849b1ff3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 0 deletions

View File

@ -10,6 +10,7 @@
* bump zigpy-xbee-homeassistant-0.8.0
* bump shodan-1.21.1
* bump python-qbittorrent-0.4.1
* bump ring-doorbell-0.2.8
2019-12-24 homeassistant-0.103.4
* bump keba-kecontact-1.0.0

View File

@ -1,5 +1,7 @@
DIST ring-doorbell-0.2.3.tar.gz 28358 BLAKE2B 084c141bdb6b5dca7a6f4ebb5e42f7cefd724a2e71d8a8f7ef8b3b4096ca5ed2323f2c2c86ce52212ea6857f6487bdd19b40062d9341874d37c25a14bc987882 SHA512 d79a999ed70800d8ad0dc72273d04fdbca2ba623233e4d6b0f40fde5baf0037d1405421a1fa06b94e724eb7ef46af64b5f15ad2ad413705d31ea422e449a1915
DIST ring-doorbell-0.2.5.tar.gz 28722 BLAKE2B 112f655af80024218ea30c324e6a8a71b3cfc67a200ee0268e838ffe60b9cf4e16fc33d08ba1a67432a7a1a6694c6ae2ee9d99f3a5c241a9cd5514d10a627a0c SHA512 e5804513ce0f24dd0227bd9588504cc09f147ef0b16919318c150876fa76725b6f8b8aa7f4d8df495c9afe914f7b4d1fc01eb5247dcf71b8de72f618925a05a2
DIST ring-doorbell-0.2.8.tar.gz 29386 BLAKE2B f6cfba04e0ceaf446e8da0a3ed42f4fe79f157fce0ec3e484f0c2199be67996db06f4516c3126b9ba899f2e2e4ece527dac54efc25f989b57a99ea1974b4fb86 SHA512 b2d1165ece27786bb14d0fd99ae120a05c48a0054058399d77c483eaf53cb28bacb4032b0b73a91dea06899d5b5dac7c0c303c73b2212cb171698d0d4aee926d
EBUILD ring-doorbell-0.2.3.ebuild 872 BLAKE2B 594327b3f7446f6a36bf63038960aacb7ad93111956d75b3bc9b4fda640e73c1096f57c2de25739b5ab23749db463089056c5970a9756c54b9f54091f4dab9b2 SHA512 f89f6e9f5ab76c53189d78ca034f0846f2594adf40e11b9cb344cddc1bda539e6db992edc29ebc9173eb9b5badfa0b4750be54a02fdda499f125542d0c9e550f
EBUILD ring-doorbell-0.2.5.ebuild 872 BLAKE2B 594327b3f7446f6a36bf63038960aacb7ad93111956d75b3bc9b4fda640e73c1096f57c2de25739b5ab23749db463089056c5970a9756c54b9f54091f4dab9b2 SHA512 f89f6e9f5ab76c53189d78ca034f0846f2594adf40e11b9cb344cddc1bda539e6db992edc29ebc9173eb9b5badfa0b4750be54a02fdda499f125542d0c9e550f
EBUILD ring-doorbell-0.2.8.ebuild 872 BLAKE2B 594327b3f7446f6a36bf63038960aacb7ad93111956d75b3bc9b4fda640e73c1096f57c2de25739b5ab23749db463089056c5970a9756c54b9f54091f4dab9b2 SHA512 f89f6e9f5ab76c53189d78ca034f0846f2594adf40e11b9cb344cddc1bda539e6db992edc29ebc9173eb9b5badfa0b4750be54a02fdda499f125542d0c9e550f
MISC metadata.xml 480 BLAKE2B cd8a2fc3797917c7dc4f2c6a4c09dc3a70a7f6fd4e9d00045fca89673a8cb0bc11eb3ece0e7ce28974c228b1d46eb389d8d5aff8c507d8e2d24cb1215870c22b SHA512 09116319a7d774436c87cf246ebd79288b9841cc18ed4064f6c8c5d250a1c6241a6b7faf8c57de9e0758ef25b048bdcbc35e6bcfe9e3542d017df74f49cf3e12

View File

@ -0,0 +1,34 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
MY_PN=${PN/-/_}
DESCRIPTION="A Python library to communicate with Ring Door Bell (https://ring.com/)"
HOMEPAGE="https://github.com/tchellomello/python-ring-doorbell https://pypi.org/project/ring-doorbell/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
S="${WORKDIR}/${MY_PN}-${PV}"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}