update yalesmartalarmclient-0.3.3

This commit is contained in:
Andreas Billmeier 2021-06-12 17:25:15 +02:00 committed by Andreas Billmeier
parent a4544c6f98
commit 6148809c66
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -79,6 +79,7 @@
* update venstarcolortouch-0.14
* update watchdog-2.1.2
* update xknx-0.18.2
* update yalesmartalarmclient-0.3.3
2021-06-04
* cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)

View File

@ -1,3 +1,5 @@
DIST yalesmartalarmclient-0.1.6.tar.gz 3754 BLAKE2B 6dd4af6028733e41568abdc810787ad3ccb772a25098baeacfa02ab4ec554eec2a9ee9c6f48ed44d1ed5b5e4d7e8dc1f689c6b463a730307f1763bfa9e86063f SHA512 1f058a87269dab139c3ebddd31380c25b94ece75c88d05d33c573e833d9eb7b02b759db3013b8a4125b05b66f483f8b493ea0e34487e88626cc3f9ac54546b41
DIST yalesmartalarmclient-0.3.3.tar.gz 11652 BLAKE2B f4932bb7aad7cf733c136aa5a93176166333aeae0597f43baed1be5161517f0bca6d5058b1e2c13f3e34fca526482e6e29e953f8f9603e013a32f494c097958b SHA512 3fc5003cd00b13d60e9a2648dabad4112f32a62878519d7703f16d74b5e566fbe92f786ea0fcca79ba1ab357e6193b43a564966f1fba8528bfbdda8383217fe1
EBUILD yalesmartalarmclient-0.1.6.ebuild 763 BLAKE2B 0a051f27b5c9dd9675bbe75b3e3b81aa4ca835ea6091e7e05bfbe86d72a67b55568d01bb43cb69140470a76307879d753b28b58248ca7cb6c361220e1c7d8afd SHA512 2eb5a562658b62821544d095a57ca12a9ea54826251b467c8cf2e7fb2030619d91e5736ec8c94d6e52283973f080e82f070188da3fccff0ae30ff7d8b9ec5502
EBUILD yalesmartalarmclient-0.3.3.ebuild 818 BLAKE2B 756a8b20f39abf3dd9ae916c4cde8c9125083c21a796b24cb72fe3b963a65a0809e315ab1d19532d16dee72dc5ccedb5ac2cfa4ed1b1eeadd38ce9ada97afb33 SHA512 4b0453cad4f5015e2dc53c67aee265da182b679235e472bc0ba97f642d0debbd6a22985f0b021b6bb70017d8904f284050fa4dc4f734a34cfc948a718e9e0d17
MISC metadata.xml 339 BLAKE2B 6d53b4ccf6d4b6cc2259a31a68238ebe0095df3f513ed5b287df1ee4434140af90d305a955bd0b291f651fedb1a89321ab73bbc706f957bc066463f6f1ddda76 SHA512 cf8149a37b95d645c10e63c677e9fe575a68f2efacf0d3064ccad63a8aebf43abe7c132d50e86f3b93057d15a59ed22bf4e17fdb705d09df1617b4b06319377c

View File

@ -0,0 +1,33 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
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 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]
>=dev-python/backoff-1.10.0[${PYTHON_USEDEP}]"
BDEPEND="
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
}