update qnapstats-0.3.1

This commit is contained in:
Andreas Billmeier 2021-03-15 23:34:36 +01:00 committed by Andreas Billmeier
parent 42b18957ed
commit df988ab791
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 0 deletions

View File

@ -29,6 +29,7 @@
* bump openwrt-luci-rpc-1.1.8
* bump pyhiveapi-0.3.9, pyhiveapi-0.3.13
* add unasync-0.5.0
* update qnapstats-0.3.1
2021-03-14
* add aiohttp-3.7.3 from main repo, still needed, fix https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/198

View File

@ -1,5 +1,7 @@
DIST qnapstats-0.2.7.tar.gz 5924 BLAKE2B 53a29b560b4fbc273703f5a4ada286d64c6ed85a1c6eb38a525d87c8fcf308603e775307e60c9bb39ad872170a2d93b7738eafe67a457a2aa28610ecaceada4b SHA512 5b06e11033f9226660117d4b1c49b7ff0da817cf88b2718dbbaf45267b3ecda5285e2d752e022eb0b1ce9845e5794c5ab2ac58b322cb80b9f07ea40c2411bdd0
DIST qnapstats-0.3.0.tar.gz 6003 BLAKE2B c1690665880f19e618804172ee8d60e96ea0f3abfcb46d031cff389b5944182759292287af999602c1955bb3a78215243a8bd76ca4348168d0c20dfcdc249d40 SHA512 6e7cef0eb6ed030a000a259c97a04ccbc29470bf089ee02399664e51fcf32fa76d06aa33110b9a09b8907d71a2e67f00c4df398edfb0f8f21fc8bfe9a7a04069
DIST qnapstats-0.3.1.tar.gz 6313 BLAKE2B 7d0014d2d6fdbcd954131f0ba9e34d816e4f4218c99ab5f1166dd9a7d909eb3dfcc0380236775739e532447c3c90121eae1ba2c47fc94e66e91616a12793636e SHA512 d0d9bf04396d30975ee1ba935b4547a5bc8403f8813fa1279eb7f1e9689c0523b87b6161d23be9aff085f99b40c702935257c71951252c27bd1b3a4ea434f9e6
EBUILD qnapstats-0.2.7.ebuild 695 BLAKE2B cfbc8b7a9023c21ddf0b4ca53f07c2065289a1d431119c86ee887d300ca7ca0178779afd66c9e22527ed63d1fc60d085c6aae47af31048c48716ee43a985bbb3 SHA512 21d6cb27fc78c7b0684e08b59773ac562758777b730b396f6ac61e51ad9f9bbe971ae0b22053e80ae794dcf991a974db048c89880a370092865942031ff72ebc
EBUILD qnapstats-0.3.0.ebuild 702 BLAKE2B e73bd9d3381778ce60643554d8765266236b8a239c41900a5e811afffb602a869b80748614a7d3121aa06bdc7273c9a910e4c1fdfcb8498a2e02bdc1f9c77bd6 SHA512 55b108ee15afc942e26f417b7faa1868e40eaf4fdadbf878ccd6fb5dce98447849a41baf0a80305ee30812f5f3efa8a694e7000ac493d1060181288a284014a3
EBUILD qnapstats-0.3.1.ebuild 804 BLAKE2B 1f8e6640b8c8c63378abeb1b583601db455c3fdf9fc534fef91769a4269deeff4d77b480190c8efaecfa29e65ca9b09685a64011c218f8c57ca140fea614008d SHA512 44d29b6be07bb90bc09eb1c799d7e30f9004ee30100642e9a2128e963a9528d7ca9b4946f3a7119210b830ad84dd83662d2ad01cd62446220f32964695c9afbd
MISC metadata.xml 454 BLAKE2B 3868da783d02344f0497910b31ecf86a2f618450c8db6d201da21a3b32d76ca3ed99c84249a994c7b282f184e95e7f33eea96630b94264877111a1da42025e50 SHA512 1b239c2206123e8d6ea4dff800ba65b746f93d2fd7407a48dd7388c0c18b183b3c5a6909ede16dedad5cfdd6924c0d83cb6cb09064cdcf1dd8fffb81f21e58d1

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_{7..9} )
inherit distutils-r1
DESCRIPTION="Python API for obtaining QNAP NAS system stats"
HOMEPAGE="https://github.com/colinodell/python-qnapstats https://pypi.org/project/qnapstats/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=">=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
>=dev-python/xmltodict-0.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
}