update pyruckus-0.12

This commit is contained in:
Andreas Billmeier 2020-10-15 19:35:28 +02:00 committed by Andreas Billmeier
parent 5279044f92
commit dfe6d72538
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -1,6 +1,7 @@
2020-10-15
* bump xbox-webapi-2.0.8
* bump pyvolumio-0.1.3
* update pyruckus-0.12
2020-10-14
* add greeclimate-0.9.0

View File

@ -1,3 +1,5 @@
DIST pyruckus-0.12.tar.gz 3834 BLAKE2B 733aa5a59a2c05a524ba0a0a03284c33b56fdfff8073393db8080c5b91bb4cd2b08a19bc1074322b3cd1e04510a8e427b6b80de334534a1ce0f4218967017c12 SHA512 9e0d78c8049294e19b296118527c6284871bc8c3dfb44ee2b104e8e31c4a5c7f390330cb29431b7cc2c8adcf2ec8b20111496306f691b2dc04610eaeddd41914
DIST pyruckus-0.7.tar.gz 3269 BLAKE2B e2b90812401f5c578487a96fd90ed8b20d072344140f2c7aeb4b4618d590a97dfa90d0f075c2ee35cde45b04bda1e0d820678c54ae99a66caaa615dc16e81fbf SHA512 422507c39a62a011fa58fa816a51d5daea3457787f5ff6e9466fc2a856490b3c079c15334def7271050515ae3846b9dffd75e23802c00076be3a9015b3d39c01
EBUILD pyruckus-0.12.ebuild 806 BLAKE2B dfe0a09b78db5e101919fe6b0f020e2190f8d88a17867cad9eb9496ee2fc8c9a54fb7844f8c9d00a96acffcc8db461a882be765639882dc00bc7263b99d7b098 SHA512 799252679983e261928857ee1982296a7521c52ae4e06fa6e987cff37438926b93dc466f82b9858d5a744b767f864181fac8b0b0f7654e0753b38408f4ef8d5b
EBUILD pyruckus-0.7.ebuild 753 BLAKE2B ba748816c6d3bcccb9d2e7b5ae79ead9c9984173b1c086e763af9372b8ed28b7ab3594d59498e692f2da1277f9c34bedac3e9573cf4a00abb6776f7e40b22750 SHA512 b54db1f94a7a394f12c25bda663841d432fe9dce00ed7bb3e9b3b8eb49fef6160986cf24f528a9b7d251d39f97253ecd8438f2d882715499ee0848d2c03c9aa2
MISC metadata.xml 447 BLAKE2B fc6314682c66960a7ef7eb94f5b938807e4d710a792c4f20c65e3ef68aa2b3b69c8a3edee966b8f222e0fe8df3f2e6400c2b41f7e7c171c345154b6d33847d80 SHA512 724f9c79e540a4635f70b13da6399978e9dde8d7341960b6bd92ad0e814aac663201f00d25a85d632914da0f8e1975beb80558a9207b75c0a38a218ee802bd95

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..8} )
inherit distutils-r1
DESCRIPTION="Python API to interact with a Ruckus Unleashed device."
HOMEPAGE="https://github.com/gabe565/pyruckus https://pypi.org/project/pyruckus/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/pexpect-4.0[${PYTHON_USEDEP}]
>=dev-python/python-slugify-4.0.1[${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
}