diff options
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/py-pyspnego/Makefile | 29 | ||||
-rw-r--r-- | security/py-pyspnego/distinfo | 3 | ||||
-rw-r--r-- | security/py-pyspnego/pkg-descr | 5 |
4 files changed, 38 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 01b2a5c2eee9..68c64e03462e 100644 --- a/security/Makefile +++ b/security/Makefile @@ -957,6 +957,7 @@ SUBDIR += py-pyscard SUBDIR += py-pysha3 SUBDIR += py-pysodium + SUBDIR += py-pyspnego SUBDIR += py-python-axolotl SUBDIR += py-python-axolotl-curve25519 SUBDIR += py-python-gnupg diff --git a/security/py-pyspnego/Makefile b/security/py-pyspnego/Makefile new file mode 100644 index 000000000000..54e1557a1b12 --- /dev/null +++ b/security/py-pyspnego/Makefile @@ -0,0 +1,29 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pyspnego +PORTVERSION= 0.1.3 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Windows Negotiate Authentication Client and Server + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=0:security/py-cryptography@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +OPTIONS_DEFINE= YAML +YAML_DESC= YAML output support + +YAML_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ruamel.yaml>=0:devel/py-ruamel.yaml@${PY_FLAVOR} + +.include <bsd.port.mk> + diff --git a/security/py-pyspnego/distinfo b/security/py-pyspnego/distinfo new file mode 100644 index 000000000000..ca2fc09fdc2b --- /dev/null +++ b/security/py-pyspnego/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1604680060 +SHA256 (pyspnego-0.1.3.tar.gz) = a2963d52b64ecd7df3f8e9a311a423e75bd4bcc5944d46da16837607f9f6e667 +SIZE (pyspnego-0.1.3.tar.gz) = 94432 diff --git a/security/py-pyspnego/pkg-descr b/security/py-pyspnego/pkg-descr new file mode 100644 index 000000000000..1e9966f5fd4d --- /dev/null +++ b/security/py-pyspnego/pkg-descr @@ -0,0 +1,5 @@ +Library to handle SPNEGO (Negotiate, NTLM, Kerberos) authentication. Also +includes a packet parser that can be used to decode raw NTLM/SPNEGO/Kerberos +tokens into a human readable format. + +WWW: https://github.com/jborean93/pyspnego |