Python-GSSAPI provides both low-level and high level wrappers around
the GSSAPI C libraries. While it focuses on the Kerberos mechanism, it should also be usable with other GSSAPI mechanisms. WWW: https://github.com/pythongssapi/python-gssapi PR: 228523 Submitted by: john@saltant.com
This commit is contained in:
parent
e51447a36c
commit
b78a2a5941
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=472837
4 changed files with 41 additions and 0 deletions
|
@ -945,6 +945,7 @@
|
|||
SUBDIR += py-google-auth
|
||||
SUBDIR += py-gpgme
|
||||
SUBDIR += py-gpsoauth
|
||||
SUBDIR += py-gssapi
|
||||
SUBDIR += py-halberd
|
||||
SUBDIR += py-hkdf
|
||||
SUBDIR += py-htpasswd
|
||||
|
|
32
security/py-gssapi/Makefile
Normal file
32
security/py-gssapi/Makefile
Normal file
|
@ -0,0 +1,32 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gssapi
|
||||
DISTVERSION= 1.5.0
|
||||
CATEGORIES= security python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= john@saltant.com
|
||||
COMMENT= High-level and low-level Python bindings to GSSAPI C libraries
|
||||
|
||||
LICENSE= ISCL
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator@${PY_FLAVOR} \
|
||||
${PY_ENUM34}
|
||||
|
||||
OPTIONS_RADIO= GSSAPI
|
||||
OPTIONS_RADIO_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT
|
||||
OPTIONS_DEFAULT= GSSAPI_BASE
|
||||
|
||||
GSSAPI_BASE_USES= gssapi
|
||||
GSSAPI_HEIMDAL_USES= gssapi:heimdal
|
||||
GSSAPI_MIT_USES= gssapi:mit
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= distutils autoplist
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} -e 's|%%KRB5CONFIG%%|${KRB5CONFIG}|' ${WRKSRC}/setup.py
|
||||
|
||||
.include <bsd.port.mk>
|
3
security/py-gssapi/distinfo
Normal file
3
security/py-gssapi/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1527359672
|
||||
SHA256 (gssapi-1.5.0.tar.gz) = be715cb74ac56db2dd888b016097aaa29ab7d7d34c1f8c706ff63f76b3553f71
|
||||
SIZE (gssapi-1.5.0.tar.gz) = 958382
|
5
security/py-gssapi/pkg-descr
Normal file
5
security/py-gssapi/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
Python-GSSAPI provides both low-level and high level wrappers around
|
||||
the GSSAPI C libraries. While it focuses on the Kerberos mechanism, it
|
||||
should also be usable with other GSSAPI mechanisms.
|
||||
|
||||
WWW: https://github.com/pythongssapi/python-gssapi
|
Loading…
Reference in a new issue