pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-cython



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Nov 30 19:58:20 UTC 2025

Modified Files:
        pkgsrc/devel/py-cython: Makefile distinfo

Log Message:
py-cython: update to 3.2.2.

3.2.2 (2025-11-30)
==================

Features added
--------------

* The C-API declarations were updated to include the new ``PyDict_*Ref()`` functions.
  (Github issue :issue:`7291`)

Bugs fixed
----------

* Iteration over literal sequences and strings in generators generated invalid C code since 3.2.0.
  This was a regression due to the C array iteration optimisation in :issue:`6926`, which is now
  disabled inside of generators.
  (Github issue :issue:`7342`)

* Calling special methods of known exception types failed with an ``AttributeError``.
  (Github issue :issue:`7342`)

* Calling the unbound ``__mul__`` special method of builtin collections with subtypes failed.
  (Github issue :issue:`7340`)

* C string literals could generate invalid "const to non-const" casts in the C code.
  (Github issue :issue:`7346`)

* ``yield`` is no longer allowed inside of a ``cython.critical_section``,
  but *is* now allowed while holding a ``cython.pymutex``.
  (Github issue :issue:`7317`)

* Under lock congestion, acquiring the GIL could crash in Python 3.11, part 2.
  This bug was introduced in Cython 3.2.0.
  (Github issue :issue:`7312`)

* The new ``py_safe_*`` functions in ``libc.threads`` triggered C compiler warnings.
  (Github issue :issue:`7356`)


To generate a diff of this commit:
cvs rdiff -u -r1.112 -r1.113 pkgsrc/devel/py-cython/Makefile
cvs rdiff -u -r1.93 -r1.94 pkgsrc/devel/py-cython/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-cython/Makefile
diff -u pkgsrc/devel/py-cython/Makefile:1.112 pkgsrc/devel/py-cython/Makefile:1.113
--- pkgsrc/devel/py-cython/Makefile:1.112       Thu Nov 13 06:08:41 2025
+++ pkgsrc/devel/py-cython/Makefile     Sun Nov 30 19:58:20 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.112 2025/11/13 06:08:41 adam Exp $
+# $NetBSD: Makefile,v 1.113 2025/11/30 19:58:20 wiz Exp $
 
-DISTNAME=      cython-3.2.1
+DISTNAME=      cython-3.2.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=C/Cython/}
@@ -23,6 +23,9 @@ USE_CC_FEATURES=      c99
 # error: 'for' loop initial declarations are only allowed in C99 mode
 FORCE_C_STD+=          c99
 
+# as of 3.2.2
+# 13 failed, 757 passed, 12 skipped, 2 warnings
+
 post-install:
        cd ${DESTDIR}${PREFIX}/bin && \
        ${MV} cython cython-${PYVERSSUFFIX} && \

Index: pkgsrc/devel/py-cython/distinfo
diff -u pkgsrc/devel/py-cython/distinfo:1.93 pkgsrc/devel/py-cython/distinfo:1.94
--- pkgsrc/devel/py-cython/distinfo:1.93        Thu Nov 13 06:08:41 2025
+++ pkgsrc/devel/py-cython/distinfo     Sun Nov 30 19:58:20 2025
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.93 2025/11/13 06:08:41 adam Exp $
+$NetBSD: distinfo,v 1.94 2025/11/30 19:58:20 wiz Exp $
 
-BLAKE2s (cython-3.2.1.tar.gz) = 15f4b123bd94c8b3651452ef8af2f7b233a312451dac1f3a134e34280af59d02
-SHA512 (cython-3.2.1.tar.gz) = b6f64b2c32c355a9c5a3586fdea768ad1924cb4b421d4395d443dadc1cf06e2fe4f3f85d237789eb0a68c9857750cbefefb022475ed7f3d8787551bea3d2fb7d
-Size (cython-3.2.1.tar.gz) = 3270455 bytes
+BLAKE2s (cython-3.2.2.tar.gz) = 5ad33650da153d4331783f89966fdc53b035ae2e68d19b756dc0dad94a355a63
+SHA512 (cython-3.2.2.tar.gz) = 788c05b4e2dcc5ae3f6ecfbb6a5e4bfa5c19afdfe3047ed5a34be994c7d81f165b4ee0a162c349ab2ff0912380fc2836e98e442d93ac6522f75e63a5c3522d27
+Size (cython-3.2.2.tar.gz) = 3275797 bytes
 SHA1 (patch-Demos_embed_Makefile) = 67c4f662a8d79d39cbf8808d2e87d91a26ef28b9
 SHA1 (patch-runtests.py) = b955b089d284f638eb5de85878204c084c550ef5



Home | Main Index | Thread Index | Old Index