bump qnapstats-0.4.0

This commit is contained in:
Andreas Billmeier 2021-08-20 15:37:53 +02:00 committed by Andreas Billmeier
parent 2969d94f92
commit 0121332e82
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 35 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST qnapstats-0.3.0.tar.gz 6003 BLAKE2B c1690665880f19e618804172ee8d60e96ea0f3abfcb46d031cff389b5944182759292287af999602c1955bb3a78215243a8bd76ca4348168d0c20dfcdc249d40 SHA512 6e7cef0eb6ed030a000a259c97a04ccbc29470bf089ee02399664e51fcf32fa76d06aa33110b9a09b8907d71a2e67f00c4df398edfb0f8f21fc8bfe9a7a04069
DIST qnapstats-0.3.1.tar.gz 6313 BLAKE2B 7d0014d2d6fdbcd954131f0ba9e34d816e4f4218c99ab5f1166dd9a7d909eb3dfcc0380236775739e532447c3c90121eae1ba2c47fc94e66e91616a12793636e SHA512 d0d9bf04396d30975ee1ba935b4547a5bc8403f8813fa1279eb7f1e9689c0523b87b6161d23be9aff085f99b40c702935257c71951252c27bd1b3a4ea434f9e6
DIST qnapstats-0.4.0.tar.gz 6628 BLAKE2B d3ee2b7c34496c5035c7860bdf97fddea3ff8976915fa6d85ca09f29ad60e39be022f6c17302ae76f225830436611e7725a626f839e1296774130134a6be4a47 SHA512 5a29df980164aea811dba8cbbfef617a1dfd354c9282228f07aaf7661710da86948fc448e4006d7e8173f317005ac87565b01d5ae38c650b8dbff02cda0a7a97
EBUILD qnapstats-0.3.0.ebuild 701 BLAKE2B 6e88f0dd9e64abfcf3d63573ce20c0d85396e564c7cab349c146861ab0a3234b86b78bd83a6d1cf747f048bfa4bc460f2dce6c05fb457296abfe28bb6cd663df SHA512 ef154ae461fb0074f36ca072c1f8e448555953d0178dab60ac2708726ec523542f3f8c05827df07c6836366d99382e587023993df30ce4cc50e20bed37b5bca0
EBUILD qnapstats-0.3.1.ebuild 805 BLAKE2B fa64186db728a577d66108874a778fde1440abbf40214f23c9df0df40a9db92bbf1ff49ed501975c37c472a9758f20530b26aa210d95f568f6c131ef385e9fb4 SHA512 cccbc78cd9486c238cbe569d3199744562c57a68d7ce3d0559d925338b0d2eb1b58dc63c7ed15c00c00d590d988a7a76b42af8f47963b14bbc8d8b0eb71c0171
EBUILD qnapstats-0.4.0.ebuild 800 BLAKE2B abfa4ff5619a5c22322421276ec9a81f0c2b545fcf8ca3f33e1735960a8009b93817218ca7e2c01630f76e7bd8c0386d827f8f6fb42ffd0d623557b86c1d60fd SHA512 d9937821ed236859576492b63cf518b403c0f804f0fd6c83e1ab87aba53c62435a9716c656174fe737fcb306ba05f8d92340cd474af4e12d963a417c9a2f557a
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_{8..10} )
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
}