Sat Mar 7 12:16:20 2020 UTC ()
py-ldap3: updated to 2.7

2.7:
- tested against Python 3.8.1 and pyasn1 0.4.8
- re-enabled ssl exception raising on bad certificate when only 1 server is present in the server pool
- removed Python 2.6 from Travis configuration
- added support for source specifications in LDAP connections
- added support for allowing special AD security identifier (SID) in DN
- fixed pickling of entry and attribute
- close connection when auto_bind fails
- operational attributes can be used in Abstraction Layer
- additional SSL options can be used in Tls object
- threading.Event replaces loop checking in async strategy. ASYNC strategy should be much faster now
- adding a key that is already an alias that contains other aliases in CaseInsensitiveWithAliasDict() now works properly
- when searching for GUID, UUID and SID the backslash character (0x5C) is properly managed
- LDIF output properly formatted when controls are missing
- operational attributes are not returned in MOCK strategies when not requested
- undecodable values are returned as raw bytes when using the pyasn1 decoder


(adam)
diff -r1.14 -r1.15 pkgsrc/databases/py-ldap3/Makefile
diff -r1.4 -r1.5 pkgsrc/databases/py-ldap3/PLIST
diff -r1.12 -r1.13 pkgsrc/databases/py-ldap3/distinfo

cvs diff -r1.14 -r1.15 pkgsrc/databases/py-ldap3/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/py-ldap3/Makefile 2019/09/06 06:02:53 1.14
+++ pkgsrc/databases/py-ldap3/Makefile 2020/03/07 12:16:20 1.15
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.14 2019/09/06 06:02:53 adam Exp $ 1# $NetBSD: Makefile,v 1.15 2020/03/07 12:16:20 adam Exp $
2 2
3DISTNAME= ldap3-2.6.1 3DISTNAME= ldap3-2.7
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= databases python 5CATEGORIES= databases python
6MASTER_SITES= ${MASTER_SITE_PYPI:=l/ldap3/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=l/ldap3/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://github.com/cannatag/ldap3 9HOMEPAGE= https://github.com/cannatag/ldap3
10COMMENT= Strictly RFC 4510 conforming LDAP V3 pure Python client library 10COMMENT= Strictly RFC 4510 conforming LDAP V3 pure Python client library
11LICENSE= gnu-lgpl-v3 11LICENSE= gnu-lgpl-v3
12 12
13DEPENDS+= ${PYPKGPREFIX}-asn1>=0.1.8:../../security/py-asn1 13DEPENDS+= ${PYPKGPREFIX}-asn1>=0.1.8:../../security/py-asn1
14TEST_DEPENDS+= ${PYPKGPREFIX}-gssapi-[0-9]*:../../security/py-gssapi 14TEST_DEPENDS+= ${PYPKGPREFIX}-gssapi-[0-9]*:../../security/py-gssapi
15 15
16USE_LANGUAGES= # none 16USE_LANGUAGES= # none

cvs diff -r1.4 -r1.5 pkgsrc/databases/py-ldap3/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/py-ldap3/PLIST 2019/09/06 06:02:53 1.4
+++ pkgsrc/databases/py-ldap3/PLIST 2020/03/07 12:16:20 1.5
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.4 2019/09/06 06:02:53 adam Exp $ 1@comment $NetBSD: PLIST,v 1.5 2020/03/07 12:16:20 adam Exp $
2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
5${PYSITELIB}/${EGG_INFODIR}/requires.txt 5${PYSITELIB}/${EGG_INFODIR}/requires.txt
6${PYSITELIB}/${EGG_INFODIR}/top_level.txt 6${PYSITELIB}/${EGG_INFODIR}/top_level.txt
7${PYSITELIB}/ldap3/__init__.py 7${PYSITELIB}/ldap3/__init__.py
8${PYSITELIB}/ldap3/__init__.pyc 8${PYSITELIB}/ldap3/__init__.pyc
9${PYSITELIB}/ldap3/__init__.pyo 9${PYSITELIB}/ldap3/__init__.pyo
10${PYSITELIB}/ldap3/abstract/__init__.py 10${PYSITELIB}/ldap3/abstract/__init__.py
11${PYSITELIB}/ldap3/abstract/__init__.pyc 11${PYSITELIB}/ldap3/abstract/__init__.pyc
12${PYSITELIB}/ldap3/abstract/__init__.pyo 12${PYSITELIB}/ldap3/abstract/__init__.pyo
13${PYSITELIB}/ldap3/abstract/attrDef.py 13${PYSITELIB}/ldap3/abstract/attrDef.py
14${PYSITELIB}/ldap3/abstract/attrDef.pyc 14${PYSITELIB}/ldap3/abstract/attrDef.pyc
@@ -300,25 +300,28 @@ ${PYSITELIB}/ldap3/utils/dn.pyc @@ -300,25 +300,28 @@ ${PYSITELIB}/ldap3/utils/dn.pyc
300${PYSITELIB}/ldap3/utils/dn.pyo 300${PYSITELIB}/ldap3/utils/dn.pyo
301${PYSITELIB}/ldap3/utils/hashed.py 301${PYSITELIB}/ldap3/utils/hashed.py
302${PYSITELIB}/ldap3/utils/hashed.pyc 302${PYSITELIB}/ldap3/utils/hashed.pyc
303${PYSITELIB}/ldap3/utils/hashed.pyo 303${PYSITELIB}/ldap3/utils/hashed.pyo
304${PYSITELIB}/ldap3/utils/log.py 304${PYSITELIB}/ldap3/utils/log.py
305${PYSITELIB}/ldap3/utils/log.pyc 305${PYSITELIB}/ldap3/utils/log.pyc
306${PYSITELIB}/ldap3/utils/log.pyo 306${PYSITELIB}/ldap3/utils/log.pyo
307${PYSITELIB}/ldap3/utils/ntlm.py 307${PYSITELIB}/ldap3/utils/ntlm.py
308${PYSITELIB}/ldap3/utils/ntlm.pyc 308${PYSITELIB}/ldap3/utils/ntlm.pyc
309${PYSITELIB}/ldap3/utils/ntlm.pyo 309${PYSITELIB}/ldap3/utils/ntlm.pyo
310${PYSITELIB}/ldap3/utils/ordDict.py 310${PYSITELIB}/ldap3/utils/ordDict.py
311${PYSITELIB}/ldap3/utils/ordDict.pyc 311${PYSITELIB}/ldap3/utils/ordDict.pyc
312${PYSITELIB}/ldap3/utils/ordDict.pyo 312${PYSITELIB}/ldap3/utils/ordDict.pyo
 313${PYSITELIB}/ldap3/utils/port_validators.py
 314${PYSITELIB}/ldap3/utils/port_validators.pyc
 315${PYSITELIB}/ldap3/utils/port_validators.pyo
313${PYSITELIB}/ldap3/utils/repr.py 316${PYSITELIB}/ldap3/utils/repr.py
314${PYSITELIB}/ldap3/utils/repr.pyc 317${PYSITELIB}/ldap3/utils/repr.pyc
315${PYSITELIB}/ldap3/utils/repr.pyo 318${PYSITELIB}/ldap3/utils/repr.pyo
316${PYSITELIB}/ldap3/utils/tls_backport.py 319${PYSITELIB}/ldap3/utils/tls_backport.py
317${PYSITELIB}/ldap3/utils/tls_backport.pyc 320${PYSITELIB}/ldap3/utils/tls_backport.pyc
318${PYSITELIB}/ldap3/utils/tls_backport.pyo 321${PYSITELIB}/ldap3/utils/tls_backport.pyo
319${PYSITELIB}/ldap3/utils/uri.py 322${PYSITELIB}/ldap3/utils/uri.py
320${PYSITELIB}/ldap3/utils/uri.pyc 323${PYSITELIB}/ldap3/utils/uri.pyc
321${PYSITELIB}/ldap3/utils/uri.pyo 324${PYSITELIB}/ldap3/utils/uri.pyo
322${PYSITELIB}/ldap3/version.py 325${PYSITELIB}/ldap3/version.py
323${PYSITELIB}/ldap3/version.pyc 326${PYSITELIB}/ldap3/version.pyc
324${PYSITELIB}/ldap3/version.pyo 327${PYSITELIB}/ldap3/version.pyo

cvs diff -r1.12 -r1.13 pkgsrc/databases/py-ldap3/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/py-ldap3/distinfo 2019/09/06 06:02:53 1.12
+++ pkgsrc/databases/py-ldap3/distinfo 2020/03/07 12:16:20 1.13
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.12 2019/09/06 06:02:53 adam Exp $ 1$NetBSD: distinfo,v 1.13 2020/03/07 12:16:20 adam Exp $
2 2
3SHA1 (ldap3-2.6.1.tar.gz) = 1a67bb1176fbb2163d497f75516d0119696ecbce 3SHA1 (ldap3-2.7.tar.gz) = 3a6be8c11c646c278df4dc17b08372c426a6a4b6
4RMD160 (ldap3-2.6.1.tar.gz) = f5fadf47b8fa6304e213d1cd32886cc04e7dc233 4RMD160 (ldap3-2.7.tar.gz) = b2ca3431bd04f077f700cce7262692fc78e22303
5SHA512 (ldap3-2.6.1.tar.gz) = 7fcb89214645585bda072d0acecdd22e2de447c6c4720ac7fa49d847a8f382150e913a3a0e42e442af6479f7144df751730e8922a6a71488f1b8e07bf188b1eb 5SHA512 (ldap3-2.7.tar.gz) = 097565db900e7afe9e233c5991e76736afb1851feca6fe75edd0e5c86dc17c624cdaa3c61506831a132e4cf636057afd51b798aff94983bc399ec5a3851607da
6Size (ldap3-2.6.1.tar.gz) = 378619 bytes 6Size (ldap3-2.7.tar.gz) = 387586 bytes