From owner-svn-ports-head@freebsd.org Sat Jan 18 00:38:03 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C76561FF869; Sat, 18 Jan 2020 00:38:03 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47zzYR4sgHz4Jsj; Sat, 18 Jan 2020 00:38:03 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9DA2E1983A; Sat, 18 Jan 2020 00:38:03 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00I0c3UQ030043; Sat, 18 Jan 2020 00:38:03 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00I0c2WT030038; Sat, 18 Jan 2020 00:38:02 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202001180038.00I0c2WT030038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 18 Jan 2020 00:38:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r523383 - in head/devel: . py-pybix X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/devel: . py-pybix X-SVN-Commit-Revision: 523383 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Jan 2020 00:38:03 -0000 Author: dbaio Date: Sat Jan 18 00:38:02 2020 New Revision: 523383 URL: https://svnweb.freebsd.org/changeset/ports/523383 Log: Add devel/py-pybix: Python based Zabbix API utility with helper functions Python based Zabbix API utility containing helper functions and CLI capabilities. Takes inspiration from existing Python-Zabbix API modules like lukecyca/pyzabbix and adubkov/py-zabbix. While this module can be used in a similar way, the aim is to add a few out of the box helper functions and CLI handling for a more "batteries included" module. For example GraphImage as described in usage which enables saving Zabbix graphs which is not possible via the API at this time. WWW: https://pypi.org/project/pybix/ Added: head/devel/py-pybix/ head/devel/py-pybix/Makefile (contents, props changed) head/devel/py-pybix/distinfo (contents, props changed) head/devel/py-pybix/pkg-descr (contents, props changed) head/devel/py-pybix/pkg-message (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jan 18 00:24:58 2020 (r523382) +++ head/devel/Makefile Sat Jan 18 00:38:02 2020 (r523383) @@ -4820,6 +4820,7 @@ SUBDIR += py-pyasn1 SUBDIR += py-pyasn1-modules SUBDIR += py-pybind11 + SUBDIR += py-pybix SUBDIR += py-pybloomfiltermmap SUBDIR += py-pycadf SUBDIR += py-pycalendar Added: head/devel/py-pybix/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pybix/Makefile Sat Jan 18 00:38:02 2020 (r523383) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= pybix +PORTVERSION= 0.0.7 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Python based Zabbix API utility with helper functions + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.22.0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}urllib3>=0:net/py-urllib3@${PY_FLAVOR} + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.22.0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}docopt>=0.6.2:devel/py-docopt@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}urllib3>=0:net/py-urllib3@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-pybix/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pybix/distinfo Sat Jan 18 00:38:02 2020 (r523383) @@ -0,0 +1,3 @@ +TIMESTAMP = 1579220841 +SHA256 (pybix-0.0.7.tar.gz) = 48bf94983a20c560d157f525f944591a2cee5ed15005c2f6ec2a0086e32113d1 +SIZE (pybix-0.0.7.tar.gz) = 12316 Added: head/devel/py-pybix/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pybix/pkg-descr Sat Jan 18 00:38:02 2020 (r523383) @@ -0,0 +1,12 @@ +Python based Zabbix API utility containing helper functions and CLI +capabilities. + +Takes inspiration from existing Python-Zabbix API modules like +lukecyca/pyzabbix and adubkov/py-zabbix. + +While this module can be used in a similar way, the aim is to add a few out of +the box helper functions and CLI handling for a more "batteries included" +module. For example GraphImage as described in usage which enables saving +Zabbix graphs which is not possible via the API at this time. + +WWW: https://pypi.org/project/pybix/ Added: head/devel/py-pybix/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pybix/pkg-message Sat Jan 18 00:38:02 2020 (r523383) @@ -0,0 +1,9 @@ +[ +{ + message: <