Date: Sun, 8 Nov 2020 17:10:51 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r554480 - in head/security: . py-pyspnego Message-ID: <202011081710.0A8HApxW087323@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Nov 8 17:10:51 2020 New Revision: 554480 URL: https://svnweb.freebsd.org/changeset/ports/554480 Log: Add py-pyspnego 0.1.3 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 Added: head/security/py-pyspnego/ head/security/py-pyspnego/Makefile (contents, props changed) head/security/py-pyspnego/distinfo (contents, props changed) head/security/py-pyspnego/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Nov 8 17:10:45 2020 (r554479) +++ head/security/Makefile Sun Nov 8 17:10:51 2020 (r554480) @@ -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 Added: head/security/py-pyspnego/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyspnego/Makefile Sun Nov 8 17:10:51 2020 (r554480) @@ -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> + Added: head/security/py-pyspnego/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyspnego/distinfo Sun Nov 8 17:10:51 2020 (r554480) @@ -0,0 +1,3 @@ +TIMESTAMP = 1604680060 +SHA256 (pyspnego-0.1.3.tar.gz) = a2963d52b64ecd7df3f8e9a311a423e75bd4bcc5944d46da16837607f9f6e667 +SIZE (pyspnego-0.1.3.tar.gz) = 94432 Added: head/security/py-pyspnego/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pyspnego/pkg-descr Sun Nov 8 17:10:51 2020 (r554480) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011081710.0A8HApxW087323>