pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/security
Module Name: pkgsrc
Committed By: agc
Date: Sun Jul 24 18:49:35 UTC 2016
Modified Files:
pkgsrc/security: Makefile
Added Files:
pkgsrc/security/py-gssapi: DESCR Makefile PLIST distinfo
Log Message:
Add py-gssapi-1.2.0 to the Packages Collection.
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 useable with other GSSAPI mechanisms.
Python-GSSAPI is composed of two parts: a low-level C-style API which
thinly wraps the underlying RFC 2744 methods, and a high-level,
Pythonic API (which is itself a wrapper around the low-level API).
Examples may be found in the examples directory.
The low-level API lives in gssapi.raw. The methods contained therein
are designed to match closely with the original GSSAPI C methods. All
relevant methods and classes may be imported directly from gssapi.raw.
Extension methods will only be imported if they are present.
The high-level API lives directly under gssapi. The classes contained
in each file are designed to provide a more Pythonic, Object-Oriented
view of GSSAPI. The exceptions from the low-level API, plus several
additional exceptions, live in gssapi.exceptions. The rest of the
classes may be imported directly from gssapi. Only classes are
exported by gssapi - all functions are methods of classes in the
high-level API.
To generate a diff of this commit:
cvs rdiff -u -r1.589 -r1.590 pkgsrc/security/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/security/py-gssapi/DESCR \
pkgsrc/security/py-gssapi/Makefile pkgsrc/security/py-gssapi/PLIST \
pkgsrc/security/py-gssapi/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/security/Makefile
diff -u pkgsrc/security/Makefile:1.589 pkgsrc/security/Makefile:1.590
--- pkgsrc/security/Makefile:1.589 Sun Jul 17 17:36:52 2016
+++ pkgsrc/security/Makefile Sun Jul 24 18:49:35 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.589 2016/07/17 17:36:52 wiz Exp $
+# $NetBSD: Makefile,v 1.590 2016/07/24 18:49:35 agc Exp $
#
COMMENT= Security tools
@@ -390,6 +390,7 @@ SUBDIR+= py-denyhosts
SUBDIR+= py-ecdsa
SUBDIR+= py-ezPyCrypto
SUBDIR+= py-gnupg
+SUBDIR+= py-gssapi
SUBDIR+= py-hsm
SUBDIR+= py-itsdangerous
SUBDIR+= py-kerberos
Added files:
Index: pkgsrc/security/py-gssapi/DESCR
diff -u /dev/null pkgsrc/security/py-gssapi/DESCR:1.1
--- /dev/null Sun Jul 24 18:49:35 2016
+++ pkgsrc/security/py-gssapi/DESCR Sun Jul 24 18:49:35 2016
@@ -0,0 +1,21 @@
+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 useable with other GSSAPI mechanisms.
+
+Python-GSSAPI is composed of two parts: a low-level C-style API which
+thinly wraps the underlying RFC 2744 methods, and a high-level,
+Pythonic API (which is itself a wrapper around the low-level API).
+Examples may be found in the examples directory.
+
+The low-level API lives in gssapi.raw. The methods contained therein
+are designed to match closely with the original GSSAPI C methods. All
+relevant methods and classes may be imported directly from gssapi.raw.
+Extension methods will only be imported if they are present.
+
+The high-level API lives directly under gssapi. The classes contained
+in each file are designed to provide a more Pythonic, Object-Oriented
+view of GSSAPI. The exceptions from the low-level API, plus several
+additional exceptions, live in gssapi.exceptions. The rest of the
+classes may be imported directly from gssapi. Only classes are
+exported by gssapi - all functions are methods of classes in the
+high-level API.
Index: pkgsrc/security/py-gssapi/Makefile
diff -u /dev/null pkgsrc/security/py-gssapi/Makefile:1.1
--- /dev/null Sun Jul 24 18:49:35 2016
+++ pkgsrc/security/py-gssapi/Makefile Sun Jul 24 18:49:35 2016
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1 2016/07/24 18:49:35 agc Exp $
+
+DISTNAME= gssapi-1.2.0
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES= security
+MASTER_SITES= ${MASTER_SITE_GITHUB:=pythongssapi/}
+GITHUB_PROJECT= python-gssapi
+GITHUB_TAG= v1.2.0
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://pypi.python.org/pypi/gssapi
+COMMENT= Low-level and high-level wrappers around GSSAPI C libraries
+LICENSE= modified-bsd
+
+DEPENDS+= ${PYPKGPREFIX}-decorator-*:../../devel/py-decorator
+DEPENDS+= ${PYPKGPREFIX}-enum34-*:../../devel/py-enum34
+DEPENDS+= ${PYPKGPREFIX}-six-*:../../lang/py-six
+
+AUTO_MKDIRS= yes
+
+.include "../../lang/python/distutils.mk"
+
+.include "../../mk/krb5.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/security/py-gssapi/PLIST
diff -u /dev/null pkgsrc/security/py-gssapi/PLIST:1.1
--- /dev/null Sun Jul 24 18:49:35 2016
+++ pkgsrc/security/py-gssapi/PLIST Sun Jul 24 18:49:35 2016
@@ -0,0 +1,66 @@
+@comment $NetBSD: PLIST,v 1.1 2016/07/24 18:49:35 agc Exp $
+${PYSITELIB}/${EGG_FILE}/PKG-INFO
+${PYSITELIB}/${EGG_FILE}/SOURCES.txt
+${PYSITELIB}/${EGG_FILE}/dependency_links.txt
+${PYSITELIB}/${EGG_FILE}/requires.txt
+${PYSITELIB}/${EGG_FILE}/top_level.txt
+${PYSITELIB}/gssapi/__init__.py
+${PYSITELIB}/gssapi/__init__.pyc
+${PYSITELIB}/gssapi/__init__.pyo
+${PYSITELIB}/gssapi/_utils.py
+${PYSITELIB}/gssapi/_utils.pyc
+${PYSITELIB}/gssapi/_utils.pyo
+${PYSITELIB}/gssapi/creds.py
+${PYSITELIB}/gssapi/creds.pyc
+${PYSITELIB}/gssapi/creds.pyo
+${PYSITELIB}/gssapi/exceptions.py
+${PYSITELIB}/gssapi/exceptions.pyc
+${PYSITELIB}/gssapi/exceptions.pyo
+${PYSITELIB}/gssapi/names.py
+${PYSITELIB}/gssapi/names.pyc
+${PYSITELIB}/gssapi/names.pyo
+${PYSITELIB}/gssapi/raw/__init__.py
+${PYSITELIB}/gssapi/raw/__init__.pyc
+${PYSITELIB}/gssapi/raw/__init__.pyo
+${PYSITELIB}/gssapi/raw/_enum_extensions/__init__.py
+${PYSITELIB}/gssapi/raw/_enum_extensions/__init__.pyc
+${PYSITELIB}/gssapi/raw/_enum_extensions/__init__.pyo
+${PYSITELIB}/gssapi/raw/_enum_extensions/ext_dce.so
+${PYSITELIB}/gssapi/raw/chan_bindings.so
+${PYSITELIB}/gssapi/raw/creds.so
+${PYSITELIB}/gssapi/raw/cython_converters.so
+${PYSITELIB}/gssapi/raw/exceptions.so
+${PYSITELIB}/gssapi/raw/ext_cred_imp_exp.so
+${PYSITELIB}/gssapi/raw/ext_dce.so
+${PYSITELIB}/gssapi/raw/ext_password.so
+${PYSITELIB}/gssapi/raw/ext_password_add.so
+${PYSITELIB}/gssapi/raw/ext_rfc5588.so
+${PYSITELIB}/gssapi/raw/ext_rfc6680.so
+${PYSITELIB}/gssapi/raw/mech_krb5.so
+${PYSITELIB}/gssapi/raw/message.so
+${PYSITELIB}/gssapi/raw/misc.so
+${PYSITELIB}/gssapi/raw/named_tuples.py
+${PYSITELIB}/gssapi/raw/named_tuples.pyc
+${PYSITELIB}/gssapi/raw/named_tuples.pyo
+${PYSITELIB}/gssapi/raw/names.so
+${PYSITELIB}/gssapi/raw/oids.so
+${PYSITELIB}/gssapi/raw/sec_contexts.so
+${PYSITELIB}/gssapi/raw/types.so
+${PYSITELIB}/gssapi/sec_contexts.py
+${PYSITELIB}/gssapi/sec_contexts.pyc
+${PYSITELIB}/gssapi/sec_contexts.pyo
+${PYSITELIB}/gssapi/tests/__init__.py
+${PYSITELIB}/gssapi/tests/__init__.pyc
+${PYSITELIB}/gssapi/tests/__init__.pyo
+${PYSITELIB}/gssapi/tests/_utils.py
+${PYSITELIB}/gssapi/tests/_utils.pyc
+${PYSITELIB}/gssapi/tests/_utils.pyo
+${PYSITELIB}/gssapi/tests/k5test.py
+${PYSITELIB}/gssapi/tests/k5test.pyc
+${PYSITELIB}/gssapi/tests/k5test.pyo
+${PYSITELIB}/gssapi/tests/test_high_level.py
+${PYSITELIB}/gssapi/tests/test_high_level.pyc
+${PYSITELIB}/gssapi/tests/test_high_level.pyo
+${PYSITELIB}/gssapi/tests/test_raw.py
+${PYSITELIB}/gssapi/tests/test_raw.pyc
+${PYSITELIB}/gssapi/tests/test_raw.pyo
Index: pkgsrc/security/py-gssapi/distinfo
diff -u /dev/null pkgsrc/security/py-gssapi/distinfo:1.1
--- /dev/null Sun Jul 24 18:49:35 2016
+++ pkgsrc/security/py-gssapi/distinfo Sun Jul 24 18:49:35 2016
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2016/07/24 18:49:35 agc Exp $
+
+SHA1 (gssapi-1.2.0.tar.gz) = a65a5f0798015c6d0eb08e53a1450296fad8c840
+RMD160 (gssapi-1.2.0.tar.gz) = 74c9786e747273c6b2a7617fffc964d95e4b4529
+SHA512 (gssapi-1.2.0.tar.gz) = 6697efb927780622860879ce1ca624a89a892eb85e6731dfd4117b35319cace9a9bf0a686b08c9d23002d54109310bd0db8c5f702069b759d464c9a7873c86c4
+Size (gssapi-1.2.0.tar.gz) = 82804 bytes
Home |
Main Index |
Thread Index |
Old Index