Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 172DE84FC5 for ; Tue, 21 Nov 2023 18:55:19 +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 ZoirYIlezVYO for ; Tue, 21 Nov 2023 18:55:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6B27584D6A for ; Tue, 21 Nov 2023 18:55:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 64183FA3F; Tue, 21 Nov 2023 18:55:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1700592918222400" MIME-Version: 1.0 Date: Tue, 21 Nov 2023 18:55:18 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/security/py-asn1 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231121185518.64183FA3F@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1700592918222400 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Nov 21 18:55:18 UTC 2023 Modified Files: pkgsrc/security/py-asn1: Makefile PLIST distinfo Log Message: py-asn1: updated to 0.5.1 Revision 0.5.1, released 20-11-2023 - Added support for PyPy 3.10 and Python 3.12 - Updated RTD configuration to include a dummy index.rst redirecting to contents.html, ensuring compatibility with third-party documentation and search indexes. - Fixed the API breakage wih decoder.decode(substrateFun=...). A substrateFun passed to ``decoder.decode()`` can now be either v0.4 Non-Streaming or v0.5 Streaming. pyasn1 will detect and handle both cases transparently. A substrateFun passed to one of the new streaming decoders is still expected to be v0.5 Streaming only. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/security/py-asn1/Makefile cvs rdiff -u -r1.13 -r1.14 pkgsrc/security/py-asn1/PLIST cvs rdiff -u -r1.24 -r1.25 pkgsrc/security/py-asn1/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1700592918222400 Content-Disposition: inline Content-Length: 2951 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-asn1/Makefile diff -u pkgsrc/security/py-asn1/Makefile:1.26 pkgsrc/security/py-asn1/Makefile:1.27 --- pkgsrc/security/py-asn1/Makefile:1.26 Wed Apr 26 16:04:51 2023 +++ pkgsrc/security/py-asn1/Makefile Tue Nov 21 18:55:18 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.26 2023/04/26 16:04:51 adam Exp $ +# $NetBSD: Makefile,v 1.27 2023/11/21 18:55:18 adam Exp $ -DISTNAME= pyasn1-0.5.0 +DISTNAME= pyasn1-0.5.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^py//} CATEGORIES= security python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pyasn1/} @@ -10,7 +10,12 @@ HOMEPAGE= https://github.com/pyasn1/pyas COMMENT= ITU Abstract Syntax Notification for Python LICENSE= 2-clause-bsd +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel + USE_LANGUAGES= # none -.include "../../lang/python/egg.mk" +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/py-asn1/PLIST diff -u pkgsrc/security/py-asn1/PLIST:1.13 pkgsrc/security/py-asn1/PLIST:1.14 --- pkgsrc/security/py-asn1/PLIST:1.13 Wed Apr 26 16:04:51 2023 +++ pkgsrc/security/py-asn1/PLIST Tue Nov 21 18:55:18 2023 @@ -1,9 +1,10 @@ -@comment $NetBSD: PLIST,v 1.13 2023/04/26 16:04:51 adam Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/${EGG_INFODIR}/zip-safe +@comment $NetBSD: PLIST,v 1.14 2023/11/21 18:55:18 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.rst +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt +${PYSITELIB}/${WHEEL_INFODIR}/zip-safe ${PYSITELIB}/pyasn1/__init__.py ${PYSITELIB}/pyasn1/__init__.pyc ${PYSITELIB}/pyasn1/__init__.pyo Index: pkgsrc/security/py-asn1/distinfo diff -u pkgsrc/security/py-asn1/distinfo:1.24 pkgsrc/security/py-asn1/distinfo:1.25 --- pkgsrc/security/py-asn1/distinfo:1.24 Wed Apr 26 16:04:51 2023 +++ pkgsrc/security/py-asn1/distinfo Tue Nov 21 18:55:18 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.24 2023/04/26 16:04:51 adam Exp $ +$NetBSD: distinfo,v 1.25 2023/11/21 18:55:18 adam Exp $ -BLAKE2s (pyasn1-0.5.0.tar.gz) = 6c35df1ec1b3317879e75ccc83d347845a6523b2dcbdd93031b1bd0ec0c5ccb7 -SHA512 (pyasn1-0.5.0.tar.gz) = 763690184ce891555564d76902042791865815e59e1325100fca692140110e5e182ef3da84ffdf96b1876edeb2757bbb09c06d26e752a8110760dafbf9e3ca00 -Size (pyasn1-0.5.0.tar.gz) = 145117 bytes +BLAKE2s (pyasn1-0.5.1.tar.gz) = 604e3c696d65617b2e852abde85ec49349580222bc9f37a37535078f9b11d61e +SHA512 (pyasn1-0.5.1.tar.gz) = 19478d810d000fb4435f6a1776f290b1618a693539ff8ffad8c41f9ac316938f1c0ae988db8571a838443407d312b5566887e20284a779ccf427888739f13833 +Size (pyasn1-0.5.1.tar.gz) = 147134 bytes --_----------=_1700592918222400--