1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-06 11:41:52 +00:00

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
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-11-08 17:10:51 +00:00
parent 3d2c1e8a60
commit 8556cade2b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=554480
4 changed files with 38 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1604680060
SHA256 (pyspnego-0.1.3.tar.gz) = a2963d52b64ecd7df3f8e9a311a423e75bd4bcc5944d46da16837607f9f6e667
SIZE (pyspnego-0.1.3.tar.gz) = 94432

View File

@ -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