bump agent-py-0.0.23

This commit is contained in:
Andreas Billmeier 2020-07-18 13:14:36 +02:00 committed by Andreas Billmeier
parent c6904a45c8
commit 192c9c786b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 33 additions and 0 deletions

View File

@ -4,6 +4,7 @@
* bump aiokafka-0.6.0
* bump pydaikin-2.3.1
* bump aioasuswrt-1.2.7
* bump agent-py-0.0.23
2020-07-12 homeassistant-0.112.4
* fix influcdb-client compile problems

View File

@ -1,3 +1,5 @@
DIST agent-py-0.0.20.tar.gz 5515 BLAKE2B d6cab644d68f921a1ab6518a25b649b8f85d8ebfa3c84037511f7941c1c8c260e0ab587f24b3405dc6fee065e1b4b0363df59e414d152ebfcc6e17f18f05b720 SHA512 6f19931cff0cf54feba8710f4fdc724825c6b3e66553d6a402d24323695ff807d435c6ed60b076aaf2cfffe249f4b3de07541ee991d7d144e20127fd2468225b
DIST agent-py-0.0.23.tar.gz 5320 BLAKE2B 62aad6e64102abb1673b0bb4191a932c3c8655ee6c053a6346404671a9d5608d77f1befa0c01b26beec2f5dc87ef9c0c879753fda27a65b85533e344697b5905 SHA512 aea0b43cb9cf31096623817763ebd8b75ded90e8440937b4d2acac902d8898c82f0c4886b172bd5e38b61e7d8b569dc18c2b3cb533b8fb9a5d3553d9a369bfbe
EBUILD agent-py-0.0.20.ebuild 731 BLAKE2B 14fa6dc5aa194c30a2ee989a323aa948d2e7ba75035efda903ae68200c3b3df9ff9e0722acbf16fb0fc6a8e2f257bef26b3b720a71142d92f7e38b7be420c2bd SHA512 93bfc8a8a94b5244b61c91af907098f287e63b07bd28b97bb5a2ebd580cc6c75102734fc8e3f8345e71ac6c39107c9a715af689d75ab06a777f06cb8164f5d47
EBUILD agent-py-0.0.23.ebuild 731 BLAKE2B 14fa6dc5aa194c30a2ee989a323aa948d2e7ba75035efda903ae68200c3b3df9ff9e0722acbf16fb0fc6a8e2f257bef26b3b720a71142d92f7e38b7be420c2bd SHA512 93bfc8a8a94b5244b61c91af907098f287e63b07bd28b97bb5a2ebd580cc6c75102734fc8e3f8345e71ac6c39107c9a715af689d75ab06a777f06cb8164f5d47
MISC metadata.xml 453 BLAKE2B 40059b95b451191c3b793b98e521338dec7b9b5dce5ba52c6914ffbaeb7fe8a7b9ef82b9cb22281f0c287ce306491c3f4fa38fede1f7f01ab2f74875ce59abf8 SHA512 bb2c00bfcd45fdaca4b60084c7b12e889a14b758066fc7a33bf771c324089c424b31a1ea1a0a2e53ee8f3559148158b7d0e6b388a6f3e04206a01aa5b90cc990

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="A python wrapper around the Agent REST API."
HOMEPAGE="https://github.com/ispysoftware/agent-py https://pypi.org/project/agent-py/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
DEPEND="${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
}