bump yalesmartalarmclient-0.3.8

This commit is contained in:
Andreas Billmeier 2022-02-26 10:59:05 +01:00 committed by Andreas Billmeier
parent cf0fc1d8a6
commit 8814c02886
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 34 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST yalesmartalarmclient-0.3.4.tar.gz 12062 BLAKE2B 3b6de51a00c52482f8545b52ebbeb0a31e7d57abcb22fa97acf7e95f42fdc7e63daa4082ed2c06d833ed7b0fe81d86af237e9831f8aee875ac3b3edce9611fb6 SHA512 4652e04ed08fded7c070d7cf6f7314690c5ebfcdd96081cab927b7834107d8611f482d10c956c88b88c9329849052d60f3792e2342971b8d04e12b397a83ad5c
DIST yalesmartalarmclient-0.3.7.tar.gz 12861 BLAKE2B ac89b44eef1b6b4255f76b0d3282c1b6c2645963825b058712849d58f42efe17ebd1957209f361a3e6548c70932e05e18dd41610673706b4195512a9ada019aa SHA512 28527e79773490b24faafd955137c8c0b9f130e7fc76ecd579994efc4d84244defb88ebd0826a34d3ec0d56e23ebbce2039d9e03c15be0920d163c72bb47ce6c
DIST yalesmartalarmclient-0.3.8.tar.gz 12883 BLAKE2B 19bba68eb5755062dbff6a4d440e24d3f9eff706f677323b11fd3e6c715a7b5c4f53f7bc9aa171afa509cdea8223d54aeb7d7a1ee8fd16c8111e4a9319832ee6 SHA512 af9d515b28c4bbb9d3bd3009d45775a25c701554e4e6aaff387fd5066b6ca1ae9a59e7183f12664aeb7a6abf48b3af5520d70574a01cedc9bd60041a89e38e33
EBUILD yalesmartalarmclient-0.3.4.ebuild 818 BLAKE2B fa86a9bc3fd33b2fa013ea1c791426aff5791da19b71536c63aa84363af405e5f6863f56ed1dc1c82fde45be031323f400212fba422dee2f7ab88aa1d882b5ed SHA512 7982e9d5d9b6f0ffbf4bba7a795e714740847369259f5ce976308b143a656ecd88899389a8a429b6d4b8149bfe76d02af4ca358e877423404ea8b37754ff30d0
EBUILD yalesmartalarmclient-0.3.7.ebuild 769 BLAKE2B d51cc0d5ad4040fd7d25857e0324809bc2bba1717bca3631001cffb034a581688ffb9519c4c34ca06da88e807bc61391192362505541ebeaf7334a486db11494 SHA512 dd2a1947f3673f48b76e46e6762ab7fa50015cc7d0908a627525ef3ce902790a0b7da883daf28cba8657c62c06a78e2f52792918dfedc5238c5a7428ac6c01ed
EBUILD yalesmartalarmclient-0.3.8.ebuild 769 BLAKE2B d51cc0d5ad4040fd7d25857e0324809bc2bba1717bca3631001cffb034a581688ffb9519c4c34ca06da88e807bc61391192362505541ebeaf7334a486db11494 SHA512 dd2a1947f3673f48b76e46e6762ab7fa50015cc7d0908a627525ef3ce902790a0b7da883daf28cba8657c62c06a78e2f52792918dfedc5238c5a7428ac6c01ed
MISC metadata.xml 339 BLAKE2B 6d53b4ccf6d4b6cc2259a31a68238ebe0095df3f513ed5b287df1ee4434140af90d305a955bd0b291f651fedb1a89321ab73bbc706f957bc066463f6f1ddda76 SHA512 cf8149a37b95d645c10e63c677e9fe575a68f2efacf0d3064ccad63a8aebf43abe7c132d50e86f3b93057d15a59ed22bf4e17fdb705d09df1617b4b06319377c

View File

@ -0,0 +1,32 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
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}]"
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
}