View | Details | Raw Unified | Return to bug 243270 | Differences between
and this patch

Collapse All | Expand All

(-)security/Makefile (+1 lines)
Lines 1005-1010 Link Here
1005
    SUBDIR += py-tuf
1005
    SUBDIR += py-tuf
1006
    SUBDIR += py-twofish
1006
    SUBDIR += py-twofish
1007
    SUBDIR += py-txtorcon
1007
    SUBDIR += py-txtorcon
1008
    SUBDIR += py-vici
1008
    SUBDIR += py-virustotal-api
1009
    SUBDIR += py-virustotal-api
1009
    SUBDIR += py-volatility
1010
    SUBDIR += py-volatility
1010
    SUBDIR += py-vulndb
1011
    SUBDIR += py-vulndb
(-)security/py-vici/Makefile (+31 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	vici
4
PORTVERSION=	5.8.0
5
# Version of strongSwan that had the latest changes to the python module
6
# This also matches the version scheme of PyPi when we switch to that later
7
CATEGORIES=	security python
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=	driesm.michiels@gmail.com
11
COMMENT=	Native Python interface for strongSwan's VICI protocol
12
13
LICENSE=	MIT
14
LICENSE_FILE=	${WRKSRC}/LICENSE
15
16
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
17
18
USES=           python
19
USE_PYTHON=     autoplist concurrent distutils
20
21
USE_GITHUB=	yes
22
GH_ACCOUNT=	strongswan
23
GH_PROJECT=	strongswan
24
25
PYSETUP=	setup.py.in
26
WRKSRC_SUBDIR=	src/libcharon/plugins/vici/python
27
28
do-test:
29
	cd ${WRKSRC} && ${PYTHON_CMD} -m pytest
30
31
.include <bsd.port.mk>
(-)security/py-vici/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1578758944
2
SHA256 (strongswan-strongswan-5.8.0_GH0.tar.gz) = 455e9ef6bf39d39caa9c1315e2b906a44ca7dcbc75b5a12048c4e84694d6de5b
3
SIZE (strongswan-strongswan-5.8.0_GH0.tar.gz) = 5846374
(-)security/py-vici/pkg-descr (+4 lines)
Line 0 Link Here
1
The strongSwan VICI protocol allows external applications to
2
monitor, configure and control the IKE daemon charon.
3
This Python package provides a native client side implementation
4
of the VICI protocol, well suited to script automated tasks in a reliable way.

Return to bug 243270