From owner-svn-ports-all@freebsd.org Fri Jan 31 16:26:27 2020 Return-Path: Delivered-To: svn-ports-all@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 79DE724444F; Fri, 31 Jan 2020 16:26:27 +0000 (UTC) (envelope-from 0mp@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 488Mzl2jkFz3LlG; Fri, 31 Jan 2020 16:26:27 +0000 (UTC) (envelope-from 0mp@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 3A39E18C5E; Fri, 31 Jan 2020 16:26:27 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00VGQRb9042211; Fri, 31 Jan 2020 16:26:27 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00VGQQQu042208; Fri, 31 Jan 2020 16:26:26 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <202001311626.00VGQQQu042208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Fri, 31 Jan 2020 16:26:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r524726 - head/security/py-vici X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: head/security/py-vici X-SVN-Commit-Revision: 524726 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2020 16:26:27 -0000 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 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 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/