Received: by mail.netbsd.org (Postfix, from userid 605) id EFC7084DA8; Sun, 3 Sep 2017 18:48:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 826B584DA3 for ; Sun, 3 Sep 2017 18:48:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id sgeP4nnS5E3s for ; Sun, 3 Sep 2017 18:48:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EFAAB84CDE for ; Sun, 3 Sep 2017 18:48:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EA9B8FA97; Sun, 3 Sep 2017 18:48:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1504464534161880" MIME-Version: 1.0 Date: Sun, 3 Sep 2017 18:48:54 +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: <20170903184854.EA9B8FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1504464534161880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Sep 3 18:48:54 UTC 2017 Modified Files: pkgsrc/devel/py-cython: Makefile PLIST distinfo Log Message: 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. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/devel/py-cython/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/py-cython/PLIST cvs rdiff -u -r1.28 -r1.29 pkgsrc/devel/py-cython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1504464534161880 Content-Disposition: inline Content-Length: 2763 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.36 pkgsrc/devel/py-cython/Makefile:1.37 --- pkgsrc/devel/py-cython/Makefile:1.36 Thu Jul 20 08:37:09 2017 +++ pkgsrc/devel/py-cython/Makefile Sun Sep 3 18:48:54 2017 @@ -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/} Index: pkgsrc/devel/py-cython/PLIST diff -u pkgsrc/devel/py-cython/PLIST:1.20 pkgsrc/devel/py-cython/PLIST:1.21 --- pkgsrc/devel/py-cython/PLIST:1.20 Thu Jul 20 08:37:09 2017 +++ pkgsrc/devel/py-cython/PLIST Sun Sep 3 18:48:54 2017 @@ -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/TestT ${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 Index: pkgsrc/devel/py-cython/distinfo diff -u pkgsrc/devel/py-cython/distinfo:1.28 pkgsrc/devel/py-cython/distinfo:1.29 --- pkgsrc/devel/py-cython/distinfo:1.28 Thu Jul 20 08:37:09 2017 +++ pkgsrc/devel/py-cython/distinfo Sun Sep 3 18:48:54 2017 @@ -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 --_----------=_1504464534161880--