Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D9EA984FE5 for ; Thu, 25 May 2023 19:35:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id nanYtCRJXYWR for ; Thu, 25 May 2023 19:35:49 +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 45D3584D46 for ; Thu, 25 May 2023 19:35:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3F016FA87; Thu, 25 May 2023 19:35:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1685043349257780" MIME-Version: 1.0 Date: Thu, 25 May 2023 19:35:49 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-cython To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230525193549.3F016FA87@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1685043349257780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu May 25 19:35:49 UTC 2023 Modified Files: pkgsrc/devel/py-cython: Makefile distinfo Log Message: py-cython: updated to 0.29.35 0.29.35 (2023-05-24) Bugs fixed ---------- * A garbage collection enabled subtype of a non-GC extension type could call into the deallocation function of the super type with GC tracking enabled. This could lead to crashes during deallocation if GC was triggered on the type at the same time. * Some C compile failures and crashes in CPython 3.12 were resolved. * ``except + nogil`` was syntactically not allowed. ``except +nogil`` (i.e. defining a C++ exception handling function called ``nogil``) is now disallowed to prevent typos. * A C compile failure in PyPy 3.10 was resolved. * API header files generated by different Cython versions can now be included in the * Function signatures containing a type like `tuple[()]` could not be printed. To generate a diff of this commit: cvs rdiff -u -r1.82 -r1.83 pkgsrc/devel/py-cython/Makefile cvs rdiff -u -r1.74 -r1.75 pkgsrc/devel/py-cython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1685043349257780 Content-Disposition: inline Content-Length: 1805 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-cython/Makefile diff -u pkgsrc/devel/py-cython/Makefile:1.82 pkgsrc/devel/py-cython/Makefile:1.83 --- pkgsrc/devel/py-cython/Makefile:1.82 Mon Apr 3 07:49:17 2023 +++ pkgsrc/devel/py-cython/Makefile Thu May 25 19:35:49 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.82 2023/04/03 07:49:17 adam Exp $ +# $NetBSD: Makefile,v 1.83 2023/05/25 19:35:49 adam Exp $ -DISTNAME= Cython-0.29.34 +DISTNAME= Cython-0.29.35 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=C/Cython/} Index: pkgsrc/devel/py-cython/distinfo diff -u pkgsrc/devel/py-cython/distinfo:1.74 pkgsrc/devel/py-cython/distinfo:1.75 --- pkgsrc/devel/py-cython/distinfo:1.74 Mon Apr 3 07:49:17 2023 +++ pkgsrc/devel/py-cython/distinfo Thu May 25 19:35:49 2023 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.74 2023/04/03 07:49:17 adam Exp $ +$NetBSD: distinfo,v 1.75 2023/05/25 19:35:49 adam Exp $ -BLAKE2s (Cython-0.29.34.tar.gz) = b20aefb1b3a413cd3bd1d67504645efdc1dc36afb4cfee3171c33760449dbafa -SHA512 (Cython-0.29.34.tar.gz) = 93e80b36f3651cf31b1666906dae5fa59643ca86432d61803f46d4f47125df5afbd85a2349dd7de9569b151ca67a5c8e3f5b8b036971d461a25e8b323c8e6dab -Size (Cython-0.29.34.tar.gz) = 2095502 bytes +BLAKE2s (Cython-0.29.35.tar.gz) = 7ffb156e149cca04fac68ecc62241ddefa113d2c25e0705c0050ebffc2c16e7a +SHA512 (Cython-0.29.35.tar.gz) = 19ec1b5231b1395f6b73e9e877e6dd7fa672246a338ae3dd0aac4a0936e3eeae323f0507de987403961f3def6a4b2ecc7a0feec820b0fde92c060f1fdc220972 +Size (Cython-0.29.35.tar.gz) = 2097520 bytes SHA1 (patch-Cython_Distutils_old__build__ext.py) = 2bc705192923cc2f40f7c173625b056caa08f666 SHA1 (patch-Demos_embed_Makefile) = 67c4f662a8d79d39cbf8808d2e87d91a26ef28b9 SHA1 (patch-runtests.py) = 18e970afd950efa2ec5631c0d747ffaee68be2a1 --_----------=_1685043349257780--