Received: by mail.netbsd.org (Postfix, from userid 605) id 3831E84DA9; Sun, 21 Feb 2021 12:50:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7136A84CE7 for ; Sun, 21 Feb 2021 12:50:45 +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 Lx0spTxVDoGj for ; Sun, 21 Feb 2021 12:50:44 +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 A35FD84CE2 for ; Sun, 21 Feb 2021 12:50:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9B3CFFA95; Sun, 21 Feb 2021 12:50:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1613911844132590" MIME-Version: 1.0 Date: Sun, 21 Feb 2021 12:50:44 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-cython To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210221125044.9B3CFFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1613911844132590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Feb 21 12:50:44 UTC 2021 Modified Files: pkgsrc/devel/py-cython: Makefile PLIST distinfo Log Message: py-cython: updated to 0.29.22 0.29.22 (2021-02-20) ==================== Features added -------------- * Some declarations were added to the provided pxd includes. Bugs fixed ---------- * A crash when calling certain functions in Py3.9 and later was resolved. * ``const`` memory views of structs failed to compile. * ``const`` template declarations could not be nested. * The declarations in the ``cpython.pycapsule`` module were missing their ``const`` modifiers and generated incorrect C code. * Casts to memory views failed for fused dtypes. * ``repr()`` was assumed to return ``str`` instead of ``unicode`` with ``language_level=3``. * Calling ``cpdef`` functions from cimported modules crashed the compiler. * Cython no longer validates the ABI size of the NumPy classes it compiled against. See the discussion in https://github.com/numpy/numpy/pull/432 * A C compiler warning about enum value casting was resolved in GCC. * Coverage reporting in the annotated HTML file failed in Py3.9. * The embedding code now reports Python errors as exit status. * Long type declarations could lead to (harmless) random changes in the C file when used in auto-generated Python wrappers or pickled classes. Other changes ------------- * Variables defined as ``cpdef`` now generate a warning since this is currently useless and thus does not do what users would expect. To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 pkgsrc/devel/py-cython/Makefile cvs rdiff -u -r1.27 -r1.28 pkgsrc/devel/py-cython/PLIST cvs rdiff -u -r1.61 -r1.62 pkgsrc/devel/py-cython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1613911844132590 Content-Disposition: inline Content-Length: 3003 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.69 pkgsrc/devel/py-cython/Makefile:1.70 --- pkgsrc/devel/py-cython/Makefile:1.69 Thu Jul 9 07:21:45 2020 +++ pkgsrc/devel/py-cython/Makefile Sun Feb 21 12:50:44 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.69 2020/07/09 07:21:45 adam Exp $ +# $NetBSD: Makefile,v 1.70 2021/02/21 12:50:44 adam Exp $ -DISTNAME= Cython-0.29.21 +DISTNAME= Cython-0.29.22 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=C/Cython/} Index: pkgsrc/devel/py-cython/PLIST diff -u pkgsrc/devel/py-cython/PLIST:1.27 pkgsrc/devel/py-cython/PLIST:1.28 --- pkgsrc/devel/py-cython/PLIST:1.27 Thu Jul 9 07:21:45 2020 +++ pkgsrc/devel/py-cython/PLIST Sun Feb 21 12:50:44 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.27 2020/07/09 07:21:45 adam Exp $ +@comment $NetBSD: PLIST,v 1.28 2021/02/21 12:50:44 adam Exp $ bin/cygdb-${PYVERSSUFFIX} bin/cython-${PYVERSSUFFIX} bin/cythonize-${PYVERSSUFFIX} @@ -311,9 +311,12 @@ ${PYSITELIB}/Cython/Includes/cpython/boo ${PYSITELIB}/Cython/Includes/cpython/buffer.pxd ${PYSITELIB}/Cython/Includes/cpython/bytearray.pxd ${PYSITELIB}/Cython/Includes/cpython/bytes.pxd +${PYSITELIB}/Cython/Includes/cpython/cellobject.pxd ${PYSITELIB}/Cython/Includes/cpython/ceval.pxd ${PYSITELIB}/Cython/Includes/cpython/cobject.pxd +${PYSITELIB}/Cython/Includes/cpython/codecs.pxd ${PYSITELIB}/Cython/Includes/cpython/complex.pxd +${PYSITELIB}/Cython/Includes/cpython/conversion.pxd ${PYSITELIB}/Cython/Includes/cpython/datetime.pxd ${PYSITELIB}/Cython/Includes/cpython/dict.pxd ${PYSITELIB}/Cython/Includes/cpython/exc.pxd Index: pkgsrc/devel/py-cython/distinfo diff -u pkgsrc/devel/py-cython/distinfo:1.61 pkgsrc/devel/py-cython/distinfo:1.62 --- pkgsrc/devel/py-cython/distinfo:1.61 Thu Jul 9 07:21:45 2020 +++ pkgsrc/devel/py-cython/distinfo Sun Feb 21 12:50:44 2021 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.61 2020/07/09 07:21:45 adam Exp $ +$NetBSD: distinfo,v 1.62 2021/02/21 12:50:44 adam Exp $ -SHA1 (Cython-0.29.21.tar.gz) = 3aafce4489a7bc7a48c843cdfb8dac4677fdac50 -RMD160 (Cython-0.29.21.tar.gz) = 7cb8cb7d1fc4a8ec74ebbfc800bdc413b9c36771 -SHA512 (Cython-0.29.21.tar.gz) = 6216e63996e83b887cdcee6cd912d42e7da853640336b9190f5115d687848a902ee5a8edd6bfaef645c066b89e17dcd80ca1387688eb80a527ec23a0a4636e8f -Size (Cython-0.29.21.tar.gz) = 2067355 bytes +SHA1 (Cython-0.29.22.tar.gz) = aaafd83a8c28e57bfcbf2f85dd67868fa43eff3a +RMD160 (Cython-0.29.22.tar.gz) = 75e4160da42d6e3d0008aa26d8d1009e823eb2c8 +SHA512 (Cython-0.29.22.tar.gz) = 721812b7009049717d907f3b22cc63a28b882a843d3af613ddd5a47a6588fb49ffd4188856ed4a2612f8abe07d35ba29b2143b8ff6d184a99c22328db09e9c27 +Size (Cython-0.29.22.tar.gz) = 2072112 bytes SHA1 (patch-Cython_Distutils_old__build__ext.py) = 2bc705192923cc2f40f7c173625b056caa08f666 SHA1 (patch-ac) = d0e06dd9e4b5a34d0614ec17f51c129eb7724323 SHA1 (patch-runtests.py) = d08d3d8e17d6b75a3067f295d3d3eb63ffe97b48 --_----------=_1613911844132590--