add pyzabbix-0.7.5

This commit is contained in:
Andreas Billmeier 2019-11-24 21:49:16 +01:00
parent 4c25a2725a
commit 696a28dbbf
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add pyzabbix-0.7.5
* add ya-ma-0.3.8, yeelight-0.5.0, YesssSMS-0.4.2
* add xfinity-gateway-0.0.4, yalesmartalarmclient-0.1.6
* add wirelesstagpy-0.4.0, wunderpy2-0.1.6, xboxapi-0.1.1

View File

@ -0,0 +1,3 @@
DIST pyzabbix-0.7.5.tar.gz 4648 BLAKE2B 87d10b06a1a575f2070f76d4ea09d2d0ad2fe00f87299082efaea53d0235845f0a3a6cc2802a0c41acc97f6aedb070e60c3f54b94fe7f7e5cc279060bd5ceea8 SHA512 93259d104a307b4aac5cfc5dc10b194609c797c812a4c5a5539595b6720cc39c479e13931b2287131dd3e3bfc766bd6232e53faf11db8a7324fb911451b9795b
EBUILD pyzabbix-0.7.5.ebuild 697 BLAKE2B 25b2cec964005f82a1008f787586a9cc3e25905ff1346ea8b8e5de1929a1b3055647fe2e81c37d451750a4481aef44e412cf7795277ca7816e706ae420ea95fa SHA512 fbcddaa1d157bd9f8cd2c5bcec4602cb866b7cb8c96bebda8ba661179c9978c69079a73a4cd1e5f02f6ebc4520eac89fb56ea7687e769b8de0aa100ab9322054
MISC metadata.xml 452 BLAKE2B 1bab7292caf6631cdf5763f7651f65cd05d6ee0d00bf19aa8cd9c7009102f990a8626e03cfbcf6f6bb4cb40b0d5c025642d21d5148534578eda82f1212d194a3 SHA512 2e8a8563abe2288b53549eb4a33b1ce252bee0fa199fc69f3dedfdf45b1211e020e8f23195e55b3c280eaa9e3af47ef977184a14965a2cdd9f292e48c955aa8b

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pyzabbix</remote-id>
<maintainer status="unknown">
<email>me@lukecyca.com</email>
<name>Luke Cyca</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Zabbix API Python interface"
HOMEPAGE="http://github.com/lukecyca/pyzabbix https://pypi.org/project/pyzabbix/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~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
}