Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 328D184ED6 for ; Mon, 20 Nov 2023 06:20:11 +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 V077wutGk5wQ for ; Mon, 20 Nov 2023 06:20:10 +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 74BE484EBE for ; Mon, 20 Nov 2023 06:20:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 63A20FA3F; Mon, 20 Nov 2023 06:20:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1700461210262290" MIME-Version: 1.0 Date: Mon, 20 Nov 2023 06:20:10 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-ldap To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231120062010.63A20FA3F@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1700461210262290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Nov 20 06:20:10 UTC 2023 Modified Files: pkgsrc/databases/py-ldap: Makefile PLIST distinfo Log Message: py-ldap: updated to 3.4.4 Released 3.4.4 2022-11-17 Fixes: * Reconnect race condition in ReconnectLDAPObject is now fixed * Socket ownership is now claimed once we've passed it to libldap * LDAP_set_option string formats are now compatible with Python 3.12 Doc/ * Security Policy was created * Broken article links are fixed now * Bring Conscious Language improvements Infrastructure: * Add testing and document support for Python 3.10, 3.11, and 3.12 To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 pkgsrc/databases/py-ldap/Makefile cvs rdiff -u -r1.23 -r1.24 pkgsrc/databases/py-ldap/PLIST cvs rdiff -u -r1.51 -r1.52 pkgsrc/databases/py-ldap/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1700461210262290 Content-Disposition: inline Content-Length: 3488 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.95 pkgsrc/databases/py-ldap/Makefile:1.96 --- pkgsrc/databases/py-ldap/Makefile:1.95 Tue Oct 24 22:08:38 2023 +++ pkgsrc/databases/py-ldap/Makefile Mon Nov 20 06:20:10 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.95 2023/10/24 22:08:38 wiz Exp $ +# $NetBSD: Makefile,v 1.96 2023/11/20 06:20:10 adam Exp $ -DISTNAME= python-ldap-3.4.3 +DISTNAME= python-ldap-3.4.4 PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}/} -PKGREVISION= 1 CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-ldap/} @@ -20,6 +19,8 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 PREFER.openldap-client= pkgsrc .endif +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-asn1>=0.3.7:../../security/py-asn1 DEPENDS+= ${PYPKGPREFIX}-asn1-modules>=0.1.5:../../security/py-asn1-modules TEST_DEPENDS+= openldap-server-[0-9]*:../../databases/openldap-server @@ -31,5 +32,5 @@ BUILDLINK_API_DEPENDS.openldap-client+= .include "../../databases/openldap-client/buildlink3.mk" .include "../../security/cyrus-sasl/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/databases/py-ldap/PLIST diff -u pkgsrc/databases/py-ldap/PLIST:1.23 pkgsrc/databases/py-ldap/PLIST:1.24 --- pkgsrc/databases/py-ldap/PLIST:1.23 Tue Oct 18 12:14:34 2022 +++ pkgsrc/databases/py-ldap/PLIST Mon Nov 20 06:20:10 2023 @@ -1,10 +1,9 @@ -@comment $NetBSD: PLIST,v 1.23 2022/10/18 12:14:34 adam Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/not-zip-safe -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt +@comment $NetBSD: PLIST,v 1.24 2023/11/20 06:20:10 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENCE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt ${PYSITELIB}/_ldap.so ${PYSITELIB}/ldap/__init__.py ${PYSITELIB}/ldap/__init__.pyc Index: pkgsrc/databases/py-ldap/distinfo diff -u pkgsrc/databases/py-ldap/distinfo:1.51 pkgsrc/databases/py-ldap/distinfo:1.52 --- pkgsrc/databases/py-ldap/distinfo:1.51 Tue Oct 18 12:14:34 2022 +++ pkgsrc/databases/py-ldap/distinfo Mon Nov 20 06:20:10 2023 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.51 2022/10/18 12:14:34 adam Exp $ +$NetBSD: distinfo,v 1.52 2023/11/20 06:20:10 adam Exp $ -BLAKE2s (python-ldap-3.4.3.tar.gz) = 6da520cf83b72b691a94a9d69d0be3c6b27f0167f288c44d25a3f40c435ac794 -SHA512 (python-ldap-3.4.3.tar.gz) = 86d038d91a3075ca3fef05e444a3aa1899275003783bd195fa4f3558496d4350051c5620316cc144bf9c0f96dd77fcdab68149d299390147295464a72bd4146f -Size (python-ldap-3.4.3.tar.gz) = 377438 bytes +BLAKE2s (python-ldap-3.4.4.tar.gz) = 080ba4a3348f367c56d1780d1436ad06998f781d8c592aa4aa79b5e8df7109db +SHA512 (python-ldap-3.4.4.tar.gz) = 0f29ba7f7aa4c5f5dd429b3f818094e07102ba9bf2dd131e6fa94b648d01cd9dfb564d7b536852037173591c2fa6917dd126eeb4da341b2d44879de4d83eb87c +Size (python-ldap-3.4.4.tar.gz) = 377889 bytes SHA1 (patch-Lib_slapdtest___slapdtest.py) = d2f024e735106e97f0b5d48b667e9a40794d3c35 SHA1 (patch-Makefile) = ef130a8711a94cc070f11baf0d481bbc69ff3910 --_----------=_1700461210262290--