Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-cython py-cython: updated to 0.29.18



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1f50c769164b
branches:  trunk
changeset: 432112:1f50c769164b
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue May 19 09:21:43 2020 +0000

description:
py-cython: updated to 0.29.18

0.29.18

Bugs fixed
* Exception position reporting could run into race conditions on threaded code.
  It now uses function-local variables again.
* Error handling early in the module init code could lead to a crash.
* Error handling in ``cython.array`` creation was improved to avoid calling
  C-API functions with an error held.
* A memory corruption was fixed when garbage collection was triggered during calls
  to ``PyType_Ready()`` of extension type subclasses.
* Memory view slicing generated unused error handling code which could negatively
  impact the C compiler optimisations for parallel OpenMP code etc.  Also, it is
  now helped by static branch hints.
* Cython's built-in OpenMP functions were not translated inside of call arguments.
* Complex buffer item types of structs of arrays could fail to validate.
* Decorators were not allowed on nested `async def` functions.
* C-tuples could use invalid C struct casting.
* Optimised ``%d`` string formatting into f-strings failed on float values.
* Optimised aligned string formatting (``%05s``, ``%-5s``) failed.
* When importing the old Cython ``build_ext`` integration with distutils, the
  additional command line arguments leaked into the regular command.
* When using the ``CYTHON_NO_PYINIT_EXPORT`` option in C++, the module init function
  was not declared as ``extern "C"``.
* Three missing timedelta access macros were added in ``cpython.datetime``.

diffstat:

 devel/py-cython/Makefile |   6 +++---
 devel/py-cython/distinfo |  10 +++++-----
 2 files changed, 8 insertions(+), 8 deletions(-)

diffs (33 lines):

diff -r 20d5e3a7bbaa -r 1f50c769164b devel/py-cython/Makefile
--- a/devel/py-cython/Makefile  Tue May 19 09:20:15 2020 +0000
+++ b/devel/py-cython/Makefile  Tue May 19 09:21:43 2020 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.65 2020/04/27 07:22:17 adam Exp $
+# $NetBSD: Makefile,v 1.66 2020/05/19 09:21:43 adam Exp $
 
-DISTNAME=      Cython-0.29.17
+DISTNAME=      Cython-0.29.18
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
-CATEGORIES=    lang python
+CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=C/Cython/}
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
diff -r 20d5e3a7bbaa -r 1f50c769164b devel/py-cython/distinfo
--- a/devel/py-cython/distinfo  Tue May 19 09:20:15 2020 +0000
+++ b/devel/py-cython/distinfo  Tue May 19 09:21:43 2020 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.57 2020/04/27 07:22:17 adam Exp $
+$NetBSD: distinfo,v 1.58 2020/05/19 09:21:43 adam Exp $
 
-SHA1 (Cython-0.29.17.tar.gz) = 02278e5a972ffc4856451f507903db68d08cfd6e
-RMD160 (Cython-0.29.17.tar.gz) = 130804bc375318396f2bd47073bd1d514acbdcdb
-SHA512 (Cython-0.29.17.tar.gz) = f40a70754883e8e63304f0c5f1012b7cffd1581bce436ad1485a0b42b242b4456081df3b0904b14c70645a3db45242191e9c3d7ff587ca5e091bc3d4e21ea703
-Size (Cython-0.29.17.tar.gz) = 2060265 bytes
+SHA1 (Cython-0.29.18.tar.gz) = 7d7dff4967ff66c048ee3625f1f732e55c5510df
+RMD160 (Cython-0.29.18.tar.gz) = f41a848fd26d204bb08fbb53a84ef737368aa062
+SHA512 (Cython-0.29.18.tar.gz) = d7baf17ece2e15179ddf5636d9035619f1e1225a24c71b984732f4250d107507519f4c29aec02f6b572b0f41fe1fc41086656735ffb8688a2f42ef1be639bf9d
+Size (Cython-0.29.18.tar.gz) = 2062434 bytes
 SHA1 (patch-Cython_Distutils_old__build__ext.py) = 2bc705192923cc2f40f7c173625b056caa08f666
 SHA1 (patch-ac) = d0e06dd9e4b5a34d0614ec17f51c129eb7724323
 SHA1 (patch-runtests.py) = d08d3d8e17d6b75a3067f295d3d3eb63ffe97b48



Home | Main Index | Thread Index | Old Index