diff options
author | adam <adam@pkgsrc.org> | 2017-09-03 18:48:54 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-09-03 18:48:54 +0000 |
commit | af8bde3c974dd0aa7645c514dbfee07b165135f6 (patch) | |
tree | 5d518ec809337f6e75ebc6f26baa7334c99345b1 /devel | |
parent | 1a987dfcd9c26aeaa13a8d3dfa715b95e32cfe0e (diff) | |
download | pkgsrc-af8bde3c974dd0aa7645c514dbfee07b165135f6.tar.gz |
0.26.1:
Bugs fixed
* ``cython.view.array`` was missing ``.__len__()``.
* Extension types with a ``.pxd`` override for their ``__releasebuffer__`` slot
(e.g. as provided by Cython for the Python ``array.array`` type) could leak
a reference to the buffer owner on release, thus not freeing the memory.
* Auto-decoding failed in 0.26 for strings inside of C++ containers.
* Compile error when inheriting from C++ container types.
* Invalid C code in generators (declaration after code).
* Arithmetic operations on ``const`` integer variables could generate invalid code.
* Local variables with names of special Python methods failed to compile inside of
closures.
* Problem with indirect Emacs buffers in cython-mode.
* Extension types named ``result`` or ``PickleError`` generated invalid unpickling code.
* Bazel integration failed to compile ``.py`` files.
* Some include directories and dependencies were referenced with their absolute paths
in the generated files despite lying within the project directory.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/py-cython/Makefile | 4 | ||||
-rw-r--r-- | devel/py-cython/PLIST | 5 | ||||
-rw-r--r-- | devel/py-cython/distinfo | 10 |
3 files changed, 11 insertions, 8 deletions
diff --git a/devel/py-cython/Makefile b/devel/py-cython/Makefile index 3343a37f8e2..539a8f6e0e5 100644 --- a/devel/py-cython/Makefile +++ b/devel/py-cython/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.36 2017/07/20 08:37:09 adam Exp $ +# $NetBSD: Makefile,v 1.37 2017/09/03 18:48:54 adam Exp $ -DISTNAME= Cython-0.26 +DISTNAME= Cython-0.26.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= lang python MASTER_SITES= ${MASTER_SITE_PYPI:=c/cython/} diff --git a/devel/py-cython/PLIST b/devel/py-cython/PLIST index b6c9bb61fdc..f9895609c51 100644 --- a/devel/py-cython/PLIST +++ b/devel/py-cython/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.20 2017/07/20 08:37:09 adam Exp $ +@comment $NetBSD: PLIST,v 1.21 2017/09/03 18:48:54 adam Exp $ bin/cygdb${PYVERSSUFFIX} bin/cython${PYVERSSUFFIX} bin/cythonize${PYVERSSUFFIX} @@ -177,6 +177,9 @@ ${PYSITELIB}/Cython/Compiler/Tests/TestTreeFragment.pyo ${PYSITELIB}/Cython/Compiler/Tests/TestTreePath.py ${PYSITELIB}/Cython/Compiler/Tests/TestTreePath.pyc ${PYSITELIB}/Cython/Compiler/Tests/TestTreePath.pyo +${PYSITELIB}/Cython/Compiler/Tests/TestTypes.py +${PYSITELIB}/Cython/Compiler/Tests/TestTypes.pyo +${PYSITELIB}/Cython/Compiler/Tests/TestTypes.pyc ${PYSITELIB}/Cython/Compiler/Tests/TestUtilityLoad.py ${PYSITELIB}/Cython/Compiler/Tests/TestUtilityLoad.pyc ${PYSITELIB}/Cython/Compiler/Tests/TestUtilityLoad.pyo diff --git a/devel/py-cython/distinfo b/devel/py-cython/distinfo index 62149aef889..e6f5982ea55 100644 --- a/devel/py-cython/distinfo +++ b/devel/py-cython/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.28 2017/07/20 08:37:09 adam Exp $ +$NetBSD: distinfo,v 1.29 2017/09/03 18:48:54 adam Exp $ -SHA1 (Cython-0.26.tar.gz) = 61e15492c1057d5b6c76d8090e8ebaa47ce25d2b -RMD160 (Cython-0.26.tar.gz) = 68953645c0ca07a4ed8114d3babceeba499c99d9 -SHA512 (Cython-0.26.tar.gz) = 58b7dbdca3b1bdfcb8b968cb1b59826b793656bb7f1203a80b59b3fae2d3174cc99f19f88fc2ec175aa98c9daeca0eb3c52674a7889ba1e914fd20d19ef92aed -Size (Cython-0.26.tar.gz) = 1692039 bytes +SHA1 (Cython-0.26.1.tar.gz) = 1e0134beb69fe183a3b04d5b535501e1951d3788 +RMD160 (Cython-0.26.1.tar.gz) = 4b018ca138da99f630fd538db189e5e25bc589fd +SHA512 (Cython-0.26.1.tar.gz) = cdf31afaba78209c37a224345471c5c822b78c6d26c51583c46669b6b2b57b4952b33a839a51d06c3330fdff889345ac611fbaa2b2f17498cb02f3b5675f7948 +Size (Cython-0.26.1.tar.gz) = 1725133 bytes SHA1 (patch-ac) = d0e06dd9e4b5a34d0614ec17f51c129eb7724323 SHA1 (patch-runtests.py) = 788ff593da9ce447af368957f1a8be562e2d40da |