update pyarlo-0.2.4

This commit is contained in:
Andreas Billmeier 2020-12-09 20:35:07 +01:00 committed by Andreas Billmeier
parent f372aba05b
commit 2c68e441f3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 46 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2020-12-09
* update pyarlo-0.2.4
2020-12-08 homeassistant-1.0.0_beta2
* update ring-doorbell-0.6.2
* update voluptuous-0.12.1

View File

@ -1,3 +1,5 @@
DIST pyarlo-0.2.3.tar.gz 17847 BLAKE2B 672d586f419da574fb6abaf21eed43f2d7470531acfc83696f32bc45855402343295dc545f2fb0005fcf5db83ebcbc403b8ef40ae96c27364c146dd22955142c SHA512 49e5d1e3f2bf82af92e5a8a52c59527b77f0123cee89388fa9a731a4c58824a34ce1d9bb4b1f7284aaa8b97cf2c81e781d8147d5a4a48c9a1dfeab6884c61008
DIST pyarlo-0.2.4.tar.gz 18428 BLAKE2B ff0e52e702d1188a8caf985d080996fb78c1c92fc8b0516faa1afa97957f6051e8171f81b9cdbdc3c220dfabe42a8e9d82d41154ce1b926d662b0641e3383b96 SHA512 82afc4f588bcdd8af5231ff6bd50d9eed0c4d9247ad0f73ae28d8bb21c34da79dad37ad07873d989bbb3b1600a1b3f430d28589d3623d1e86d7392823e1abc00
EBUILD pyarlo-0.2.3.ebuild 723 BLAKE2B c6581445d267e8344d161dd478af9a26a20a5b860e3fa87ef1562948191ccb2c6eb56aa046e19e352f9e1f1ab2c132c9508d099389d6d0b2021e9c95b39148de SHA512 3eb7a196bf2276fb186e03ce9e498ff3ee7d481b71e9bef9ddd1d75601998c3b65cb870907b6679b5c0d460a31a8f8e0df2dffa9d9e22b1f6c25b4748e67cb2a
MISC metadata.xml 252 BLAKE2B 507e0ddc9d50b879ff374b903b142f85d020dfd6c486aba2af84fe082c878e780edbb79188ae10104d57db0eb775c86814cc8c06891a3854c9da840a4d377050 SHA512 9470ac9c8a5a4f80e3f767e7aa198addc7b21866c63b2a310e9f41ce65817672fb77423117bdd619e99cb62322025aeadf50717e23eafabf99080fcc106820af
EBUILD pyarlo-0.2.4.ebuild 859 BLAKE2B c354845f937bc96b102fd38b63c0256058a0cc27dd860fd3886ad4375900ab377efc3ad1038029d4a1ae4c0abb6e5b0defa2d973a6a42a9c69259b41a98b778c SHA512 9d095640f61b168b8ee86a28c8a53a642988258a97fb258997cef63c11dd7a38c689a1e2274165be3a5575492837703c6f5bd6e35c87ce12a82f37c66ba32f94
MISC metadata.xml 466 BLAKE2B db1b6231c6ea3b70cf54906809997802b679e6e291df7c088f5f31447038bf78aa3b31f1eb7c0be41f32a4c99a17e82a07a68b74342de27ccb69e2a70c66b9bd SHA512 e9104f357a117b30018127da7e11d0260472af62b7f3b9b1640e2834578f7cdef9ae3cf4e76fbadcddd445ed6fdcbf42e60ccd60ea72cf48064e126988b10ad5

View File

@ -5,4 +5,11 @@
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyarlo</remote-id>
<maintainer status="unknown">
<email>tchello.mello@gmail.com</email>
<name>Marcelo Moreira de Mello</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
DESCRIPTION="Python Arlo is a library written in Python 2.7/3x that exposes the Netgear Arlo cameras as Python objects."
HOMEPAGE="https://github.com/tchellomello/python-arlo https://pypi.org/project/pyarlo/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/sseclient-py[${PYTHON_USEDEP}]"
BDEPEND="${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
}