Received: by mail.netbsd.org (Postfix, from userid 605) id 5AC3784DC8; Mon, 15 Apr 2019 08:18:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D721784DC1 for ; Mon, 15 Apr 2019 08:18:38 +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 6T0qE5QXnMwY for ; Mon, 15 Apr 2019 08:18:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5840584D28 for ; Mon, 15 Apr 2019 08:18:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 53294FB16; Mon, 15 Apr 2019 08:18:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1555316318285650" MIME-Version: 1.0 Date: Mon, 15 Apr 2019 08:18:38 +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: <20190415081838.53294FB16@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. --_----------=_1555316318285650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Apr 15 08:18:38 UTC 2019 Modified Files: pkgsrc/devel/py-cython: Makefile distinfo Log Message: py-cython: updated to 0.29.7 0.29.7: Bugs fixed * Crash when the shared Cython config module gets unloaded and another Cython module reports an exceptions. Cython now makes sure it keeps an owned reference to the module. * Resolved a C89 compilation problem when enabling the fast-gil sharing feature. * Coverage reporting did not include the signature line of cdef functions. * Casting a GIL-requiring function into a nogil function now issues a warning. * Generators and coroutines were missing their return type annotation. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/devel/py-cython/Makefile cvs rdiff -u -r1.46 -r1.47 pkgsrc/devel/py-cython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1555316318285650 Content-Disposition: inline Content-Length: 1779 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.54 pkgsrc/devel/py-cython/Makefile:1.55 --- pkgsrc/devel/py-cython/Makefile:1.54 Thu Feb 28 08:56:03 2019 +++ pkgsrc/devel/py-cython/Makefile Mon Apr 15 08:18:38 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2019/02/28 08:56:03 adam Exp $ +# $NetBSD: Makefile,v 1.55 2019/04/15 08:18:38 adam Exp $ -DISTNAME= Cython-0.29.6 +DISTNAME= Cython-0.29.7 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= lang python MASTER_SITES= ${MASTER_SITE_PYPI:=C/Cython/} Index: pkgsrc/devel/py-cython/distinfo diff -u pkgsrc/devel/py-cython/distinfo:1.46 pkgsrc/devel/py-cython/distinfo:1.47 --- pkgsrc/devel/py-cython/distinfo:1.46 Thu Feb 28 08:56:03 2019 +++ pkgsrc/devel/py-cython/distinfo Mon Apr 15 08:18:38 2019 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.46 2019/02/28 08:56:03 adam Exp $ +$NetBSD: distinfo,v 1.47 2019/04/15 08:18:38 adam Exp $ -SHA1 (Cython-0.29.6.tar.gz) = 94ec3db8f44c1de97b9e9105f48b4cbca815725d -RMD160 (Cython-0.29.6.tar.gz) = ce75a5cddbf74c4c2ee08c7be30111d14c46b55d -SHA512 (Cython-0.29.6.tar.gz) = bb8095b438a7d2567b8b831628fbb32c02299c866e41113da62fb5a5d4982dc0df947a9f723a82c52086806435d8f3518e78a803166149d476f81e042a12494e -Size (Cython-0.29.6.tar.gz) = 2047021 bytes +SHA1 (Cython-0.29.7.tar.gz) = eaa3dc383143cfe92c1c73d59b209fafb9776ac7 +RMD160 (Cython-0.29.7.tar.gz) = f9f9a9f0228d83e742500e2e479b1d6528220770 +SHA512 (Cython-0.29.7.tar.gz) = 1c2fd2185d65445318118d917ff6f8b4b958b0a036bc3ce1587dcb8fa94ccc750901cece27e4d0d39c53db68c3a620edf2dcf9424d7a6df58a0275097b90fa6e +Size (Cython-0.29.7.tar.gz) = 2047944 bytes SHA1 (patch-ac) = d0e06dd9e4b5a34d0614ec17f51c129eb7724323 SHA1 (patch-runtests.py) = d08d3d8e17d6b75a3067f295d3d3eb63ffe97b48 --_----------=_1555316318285650--