add yalesmartalarmclient-0.1.6

This commit is contained in:
Andreas Billmeier 2019-11-24 21:36:09 +01:00
parent de132869ad
commit d143c001e2
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 46 additions and 1 deletions

View File

@ -1,5 +1,5 @@
2019-11 23 (reverse added today)
* add xfinity-gateway-0.0.4
* add xfinity-gateway-0.0.4, yalesmartalarmclient-0.1.6
* add wirelesstagpy-0.4.0, wunderpy2-0.1.6, xboxapi-0.1.1
* add ibm-watson and ibm-cloud-sdk-core
* add ibmiotf-0.3.4 and ibmiotf-0.4.0

View File

@ -0,0 +1,3 @@
DIST yalesmartalarmclient-0.1.6.tar.gz 3754 BLAKE2B 6dd4af6028733e41568abdc810787ad3ccb772a25098baeacfa02ab4ec554eec2a9ee9c6f48ed44d1ed5b5e4d7e8dc1f689c6b463a730307f1763bfa9e86063f SHA512 1f058a87269dab139c3ebddd31380c25b94ece75c88d05d33c573e833d9eb7b02b759db3013b8a4125b05b66f483f8b493ea0e34487e88626cc3f9ac54546b41
EBUILD yalesmartalarmclient-0.1.6.ebuild 749 BLAKE2B 72ee0d5f7d80aa811e0130f4c274d3fe3e144f451fc40577ace82cd32f579217d8810fd2c85e98266620d15506dfcf6846192b5a7dc41bf38d98b20a031cbc54 SHA512 73b5ba6f2b042c5ea01fa656d2a5898c03fc7243c14ff812ca48ced210e92b3282a48042c778ad8207bd3e516c174df1adeb94b9459d6fd6e464df7bc022cd2c
MISC metadata.xml 346 BLAKE2B d04a137a1894b983181dab0628c48a78dde3f3a9237f110b485596b8af932791b217d8973c7cc568f8c1d9e6b8a8dcc7a66c14fd3db11ac882815556bf7e8a1a SHA512 4b7a5a622af9959e66d6a47e783413934a777d9b4e888fd6f31ae795986f8d030dc8004d4a54d3c72d791c983bc6dd91891278d8e7862c61f37a07319905b89f

View File

@ -0,0 +1,12 @@
<?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">yalesmartalarmclient</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# 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="Interact with Yale Smart Alarm systems"
HOMEPAGE="https://github.com/domwillcode/yale-smart-alarm-client https://pypi.org/project/yalesmartalarmclient/"
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-2.0[${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
}