Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 372C47A270 for ; Fri, 5 May 2017 06:44:24 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 98857855DD; Fri, 5 May 2017 06:44:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 274F8855DB for ; Fri, 5 May 2017 06:44:23 +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 5GPYpEBiOSbH for ; Fri, 5 May 2017 06:44:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 85E5684D8E for ; Fri, 5 May 2017 06:44:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 80CD2FBE4; Fri, 5 May 2017 06:44:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149396666217260" MIME-Version: 1.0 Date: Fri, 5 May 2017 06:44:22 +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: <20170505064422.80CD2FBE4@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. --_----------=_149396666217260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri May 5 06:44:22 UTC 2017 Modified Files: pkgsrc/databases/py-ldap: Makefile distinfo Log Message: Changes 2.4.38: Lib/slapdtest.py * SlapdObject now evaluates env var SLAPD for optionally pointing to OpenLDAP's slapd executable (e.g. with OpenLDAP LTB builds) * added LDAPI support in slaptest.SlapdObject which is internally used in methods ldapadd() and ldapwhoami() * added method slaptest.SlapdObject.ldapmodify() * fixed enabling logger in slaptest * directory name now contains port to be able to run several SlapdObject instances side-by-side (e.g. with replication) * added authz-regexp mapping to rootdn for user running the test * internally use SASL/EXTERNAL via LDAPI to bind * SlapdObject.server_id used as serverID in slapd.conf for MMR * Removed method SlapdObject.started() because SlapdTestCase.setUpClass() will be used to add initial entries Tests/ * ReconnectLDAPObject is also tested by sub-classing test class To generate a diff of this commit: cvs rdiff -u -r1.71 -r1.72 pkgsrc/databases/py-ldap/Makefile cvs rdiff -u -r1.32 -r1.33 pkgsrc/databases/py-ldap/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149396666217260 Content-Disposition: inline Content-Length: 2732 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.71 pkgsrc/databases/py-ldap/Makefile:1.72 --- pkgsrc/databases/py-ldap/Makefile:1.71 Sat Feb 18 06:50:18 2017 +++ pkgsrc/databases/py-ldap/Makefile Fri May 5 06:44:22 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.71 2017/02/18 06:50:18 adam Exp $ +# $NetBSD: Makefile,v 1.72 2017/05/05 06:44:22 adam Exp $ -DISTNAME= python-ldap-2.4.32 +DISTNAME= python-ldap-2.4.38 PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}/} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-ldap/} @@ -10,21 +10,19 @@ HOMEPAGE= http://www.python-ldap.org/ COMMENT= LDAP client API for Python LICENSE= python-software-foundation +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.13 +PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # not yet ported as of 2.4.38 .include "options.mk" SUBST_CLASSES+= setup SUBST_STAGE.setup= pre-configure SUBST_FILES.setup= setup.cfg -SUBST_SED.setup= -e 's|@PY_LDAP_LIBRARY_DIRS@|${PY_LDAP_LIBRARY_DIRS:Q}|' -SUBST_SED.setup+= -e 's|@PY_LDAP_INCLUDE_DIRS@|${PY_LDAP_INCLUDE_DIRS:Q}|' -SUBST_SED.setup+= -e 's|@PY_LDAP_LIBS@|${PY_LDAP_LIBS}|' - -USE_TOOLS+= pax +SUBST_VARS.setup= PY_LDAP_LIBRARY_DIRS PY_LDAP_INCLUDE_DIRS PY_LDAP_LIBS REPLACE_PYTHON= Lib/ldap/controls/readentry.py Index: pkgsrc/databases/py-ldap/distinfo diff -u pkgsrc/databases/py-ldap/distinfo:1.32 pkgsrc/databases/py-ldap/distinfo:1.33 --- pkgsrc/databases/py-ldap/distinfo:1.32 Sat Feb 18 06:50:18 2017 +++ pkgsrc/databases/py-ldap/distinfo Fri May 5 06:44:22 2017 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.32 2017/02/18 06:50:18 adam Exp $ +$NetBSD: distinfo,v 1.33 2017/05/05 06:44:22 adam Exp $ -SHA1 (python-ldap-2.4.32.tar.gz) = 30c44221ebf1af1bdc197e6766645d1a69edc331 -RMD160 (python-ldap-2.4.32.tar.gz) = c27913eed3d4f3cc88e03692ceff79012044c8ac -SHA512 (python-ldap-2.4.32.tar.gz) = 35a526330852ee87acd240cd285881afe498612fcedbffe93c6e41fb082300cd8b351d9100dc2b3049c658ed062d69cea90f28f9db51a80d94816ce249bbd028 -Size (python-ldap-2.4.32.tar.gz) = 126025 bytes +SHA1 (python-ldap-2.4.38.tar.gz) = a82d4ce2d8c28426d5fcedea86233ec8e738dcc0 +RMD160 (python-ldap-2.4.38.tar.gz) = 6202186ee824815308f973cdd6f641eec9c8209b +SHA512 (python-ldap-2.4.38.tar.gz) = 9c86fdf3ec79ed2c3b2fadc41e5a0729468cd8c54d821250111ae8796896499cff03d1b3258eae3d06115aef1f3b5e0f78100ef00c9855491b8694ddf1dc03c3 +Size (python-ldap-2.4.38.tar.gz) = 298058 bytes SHA1 (patch-aa) = 5585e305da91a2dd1ae47cb2bff30b1826000ec5 --_----------=_149396666217260--