Received: by mail.netbsd.org (Postfix, from userid 605) id E9AC284D2F; Wed, 15 Nov 2017 07:50:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7477F84D2C for ; Wed, 15 Nov 2017 07:50:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id G9lW4F1gxi3Y for ; Wed, 15 Nov 2017 07:50:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D5C5384D20 for ; Wed, 15 Nov 2017 07:50:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CBD9EFBDE; Wed, 15 Nov 2017 07:50:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1510732240233850" MIME-Version: 1.0 Date: Wed, 15 Nov 2017 07:50:40 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-ldap To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20171115075040.CBD9EFBDE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1510732240233850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Nov 15 07:50:40 UTC 2017 Modified Files: pkgsrc/databases/py-ldap: Makefile PLIST distinfo Log Message: py-ldap: updated to 2.5.1 Changes since 2.4.45: Mandatory prerequisites: - Python 2.7.x - pyasn1 0.3.7+ and pyasn1_modules 0.1.5+ Modules/ * removed unused code schema.c Lib/ * ldap.__version__, ldap.__author__ and ldap.__license__ now imported from new sub-module ldap.pkginfo also to setup.py * Added safety assertion when importing _ldap: ldap.pkginfo.__version__ must match _ldap.__version__ * removed stand-alone module dsml * slapdtest.SlapdObject.restart() just restarts slapd without cleaning any data * Compability changes for pyasn1 0.3.x or newer (thanks to Ilya Etingof and Christian Heimes) * The methods SSSResponseControl.decodeControlValue() and VLVResponseControl.decodeControlValue() now follow the coding convention to use camel-cased ASN.1 name as class attribute name. The old class names are still set for back-ward compability but should not be used in new code because they might be removed in a later release. * removed SSSRequestControl from ldap.controls.KNOWN_RESPONSE_CONTROLS Tests/ * added explicit reconnect tests for ReconnectLDAPObject To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 pkgsrc/databases/py-ldap/Makefile cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/py-ldap/PLIST cvs rdiff -u -r1.39 -r1.40 pkgsrc/databases/py-ldap/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1510732240233850 Content-Disposition: inline Content-Length: 3290 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-ldap/Makefile diff -u pkgsrc/databases/py-ldap/Makefile:1.79 pkgsrc/databases/py-ldap/Makefile:1.80 --- pkgsrc/databases/py-ldap/Makefile:1.79 Tue Oct 24 04:45:56 2017 +++ pkgsrc/databases/py-ldap/Makefile Wed Nov 15 07:50:40 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.79 2017/10/24 04:45:56 adam Exp $ +# $NetBSD: Makefile,v 1.80 2017/11/15 07:50:40 adam Exp $ -DISTNAME= python-ldap-2.4.45 +DISTNAME= python-ldap-2.5.1 PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}/} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-ldap/} @@ -15,7 +15,7 @@ USE_TOOLS+= pax PY_LDAP_LIBRARY_DIRS= ${BUILDLINK_PREFIX.openldap-client}/lib PY_LDAP_INCLUDE_DIRS= ${BUILDLINK_PREFIX.openldap-client}/include PY_LDAP_LIBS= ldap_r lber ssl crypto -PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # not yet ported as of 2.4.43 +PYTHON_VERSIONS_ACCEPTED= 27 .include "options.mk" Index: pkgsrc/databases/py-ldap/PLIST diff -u pkgsrc/databases/py-ldap/PLIST:1.17 pkgsrc/databases/py-ldap/PLIST:1.18 --- pkgsrc/databases/py-ldap/PLIST:1.17 Tue May 9 07:52:14 2017 +++ pkgsrc/databases/py-ldap/PLIST Wed Nov 15 07:50:40 2017 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.17 2017/05/09 07:52:14 adam Exp $ +@comment $NetBSD: PLIST,v 1.18 2017/11/15 07:50:40 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -6,9 +6,6 @@ ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/_ldap.so -${PYSITELIB}/dsml.py -${PYSITELIB}/dsml.pyc -${PYSITELIB}/dsml.pyo ${PYSITELIB}/ldap/__init__.py ${PYSITELIB}/ldap/__init__.pyc ${PYSITELIB}/ldap/__init__.pyo @@ -75,6 +72,9 @@ ${PYSITELIB}/ldap/logger.pyo ${PYSITELIB}/ldap/modlist.py ${PYSITELIB}/ldap/modlist.pyc ${PYSITELIB}/ldap/modlist.pyo +${PYSITELIB}/ldap/pkginfo.py +${PYSITELIB}/ldap/pkginfo.pyc +${PYSITELIB}/ldap/pkginfo.pyo ${PYSITELIB}/ldap/resiter.py ${PYSITELIB}/ldap/resiter.pyc ${PYSITELIB}/ldap/resiter.pyo Index: pkgsrc/databases/py-ldap/distinfo diff -u pkgsrc/databases/py-ldap/distinfo:1.39 pkgsrc/databases/py-ldap/distinfo:1.40 --- pkgsrc/databases/py-ldap/distinfo:1.39 Tue Oct 24 04:45:56 2017 +++ pkgsrc/databases/py-ldap/distinfo Wed Nov 15 07:50:40 2017 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.39 2017/10/24 04:45:56 adam Exp $ +$NetBSD: distinfo,v 1.40 2017/11/15 07:50:40 adam Exp $ -SHA1 (python-ldap-2.4.45.tar.gz) = 11b3494485947de2317e516ec211238cc6a59d16 -RMD160 (python-ldap-2.4.45.tar.gz) = 691b51d5c77cf19b8238f37791cb18c839e3bd67 -SHA512 (python-ldap-2.4.45.tar.gz) = dc9ccc4fa4668931fe5f824abe55a0b4b2eaec506215f69c0df0c1118ef05b04c8cec22c8e7bbe70395549f72b2f26a1f375422cdfaa8adb2545efe8a245b307 -Size (python-ldap-2.4.45.tar.gz) = 296804 bytes +SHA1 (python-ldap-2.5.1.tar.gz) = 6fbcc78cf1f82a9311a330fe018e5bbf85e25227 +RMD160 (python-ldap-2.5.1.tar.gz) = fec7d813d5d9748ab99a4ab91a7da101aac95d06 +SHA512 (python-ldap-2.5.1.tar.gz) = d713eaabea5a6aff90ff59decf632342cb3d6f69de6df5e2a2012694c405e001649d2cc768f441e45667ddce09e1b9155491a56ab51e55652b117dcc176a5c39 +Size (python-ldap-2.5.1.tar.gz) = 293615 bytes SHA1 (patch-aa) = 5585e305da91a2dd1ae47cb2bff30b1826000ec5 --_----------=_1510732240233850--