Date: Fri, 31 Jan 2020 16:26:26 +0000 (UTC) From: Mateusz Piotrowski <0mp@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r524726 - head/security/py-vici Message-ID: <202001311626.00VGQQQu042208@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: 0mp Date: Fri Jan 31 16:26:26 2020 New Revision: 524726 URL: https://svnweb.freebsd.org/changeset/ports/524726 Log: New port: security/py-vici: Native Python interface for strongSwan's VICI protocol The strongSwan VICI protocol allows external applications to monitor, configure and control the IKE daemon charon. This Python package provides a native client side implementation of the VICI protocol, well suited to script automated tasks in a reliable way. WWW: https://pypi.org/project/vici/ Event: Brussels DevSummit 2020 PR: 243270 Submitted by: Dries Michiels <driesm.michiels@gmail.com> Added: head/security/py-vici/ head/security/py-vici/Makefile (contents, props changed) head/security/py-vici/distinfo (contents, props changed) head/security/py-vici/pkg-descr (contents, props changed) Added: head/security/py-vici/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-vici/Makefile Fri Jan 31 16:26:26 2020 (r524726) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= vici +DISTVERSION= 5.8.2 +CATEGORIES= security net-vpn python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= driesm.michiels@gmail.com +COMMENT= Native Python interface for strongSwan's VICI protocol + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycodestyle>0:devel/py-pycodestyle@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tox>0:devel/py-tox@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +do-test: # skip non installed python versions in the tests (because flavors) + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m tox --skip-missing-interpreters + +.include <bsd.port.mk> Added: head/security/py-vici/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-vici/distinfo Fri Jan 31 16:26:26 2020 (r524726) @@ -0,0 +1,3 @@ +TIMESTAMP = 1579026725 +SHA256 (vici-5.8.2.tar.gz) = d642573afa07005914e5449486e53a5efa3419caf8cbd4491bdb62fc45f8b700 +SIZE (vici-5.8.2.tar.gz) = 9615 Added: head/security/py-vici/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-vici/pkg-descr Fri Jan 31 16:26:26 2020 (r524726) @@ -0,0 +1,6 @@ +The strongSwan VICI protocol allows external applications to +monitor, configure and control the IKE daemon charon. +This Python package provides a native client side implementation +of the VICI protocol, well suited to script automated tasks in a reliable way. + +WWW: https://pypi.org/project/vici/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001311626.00VGQQQu042208>