svn commit: r554480 - in head/security: . py-pyspnego

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Nov 8 17:10:56 UTC 2020


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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pyspnego
+PORTVERSION=	0.1.3
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at 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


More information about the svn-ports-all mailing list