add pyialarm-0.3

This commit is contained in:
Andreas Billmeier 2019-11-23 09:49:07 +01:00
parent d28153792c
commit 7e5f61394b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
* add pyialarm-0.3
* add Hydrawiser-0.1.1
* add aiopvapi-1.6.14
* bump aiohue-1.9.2

View File

@ -0,0 +1,3 @@
DIST pyialarm-0.3.tar.gz 2107 BLAKE2B 207ccdf260e652e2bc8b3cdd8ec6fd84ddfedeae8af444815b3ca408a8bc4e1ab459a10f221e8ba611bbf7b0bbf200c474e770cfdfeaf4dd34e600ef92b74ce5 SHA512 9bbbaa1eae5fc664338fde7a4da1cb5a0f01340a3c306ce83b338425771520a51fea95d105f917c779a88422d82addb21ef321240fec23977ab4d2264b515125
EBUILD pyialarm-0.3.ebuild 806 BLAKE2B e0fcb436dc0b390c2ef48f6cfa22103da67712a6f3dd8a720f1c2877ab1b226779a9f1c4a4b2409eaa575606ff827d69fa34751fe7ac91d0411b8409c0fef554 SHA512 63e49d93addfa69ac92a0739e12513f6d35d709bdc03172301bad3f593b665647553b6f9a62750b3d1d602bde4be109928efcfc6144f55ec0ca7e04a914fcb6b
MISC metadata.xml 473 BLAKE2B a18a96fe640019177d36e09b779791bb7951b21980925a3c1ad51e6fa52a030e3a7b66ecef427b733b7da79074e0ec2aacaa2f903ccf01b206b8c29bbf6e7540 SHA512 1a2abb5000540531ae1639e28db950101a640dc96dd8143fecfbe53eefbe43691c82c9743bf866c4faf2767bfa9e2183a9a0cc8be49f497d605eb2abec21db5e

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pyialarm</remote-id>
<maintainer status="unknown">
<email>aasonykk+pyialarm@gmail.com</email>
<name>Ludovico de Nittis</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# 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
DESCRIPTION="A simple library to interface with iAlarm systems, built for use with Home-Assistant"
HOMEPAGE="https://github.com/RyuzakiKK/pyialarm https://pypi.org/project/pyialarm/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/beautifulsoup:4[${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
}