Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=F4hOeLO3; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=AFvC0Gv5 Received: by mail.netbsd.org (Postfix, from userid 605) id 5DB7584D22; Tue, 2 Apr 2024 05:58:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712037521; bh=sG+FQOXWXhQQkjpUVO9djUTRFtnHg7wCpFG0SE6uOQM=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=F4hOeLO37mcwSG/cjgEBPSCW+j3OOjXSACN7p0/SwKc/WlhAq+O1FnSZxcFh1D3QP LpsdqgGtOnOW9Qqv5R5AeKmwjEvGA0BMVJxz8ae0DJ20T8F0wzcX+h/Vg4CKMUC/l0 weIYXUBjcYK235FKWYaYAqgs+ouDuRLj5m1/lTCE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4F13184CFA for ; Tue, 2 Apr 2024 05:58:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 lzDsUbsQv0N6 for ; Tue, 2 Apr 2024 05:58:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A494784CCC for ; Tue, 2 Apr 2024 05:58:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712037519; bh=sG+FQOXWXhQQkjpUVO9djUTRFtnHg7wCpFG0SE6uOQM=; h=Date:From:Subject:To:Reply-To; b=AFvC0Gv5a4oWW/jh9jwRZSBxlFiaP5QE6qehgCRyp6hwpBHhpe0J4jw2NST3clHMw doac/eBOCxDBrGrw86VOGfUN7D9wY6OgH3guGyOb56bU+yVsUYf3VTQfi406w6DR97 kRaN57YHBoxmBnzrDQRJ7FPzc7ldeKqVFhLUSq18= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4C741FA2C; Tue, 2 Apr 2024 05:58:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712037518124830" MIME-Version: 1.0 Date: Tue, 2 Apr 2024 05:58: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: <20240402055838.4C741FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712037518124830 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Tue Apr 2 05:58:38 UTC 2024 Modified Files: pkgsrc/devel/py-cython: Makefile distinfo Log Message: py-cython: updated to 3.0.10 3.0.10 (2024-03-30) =================== Bugs fixed ---------- * Cython generated incorrect self-casts when directly calling final methods of subtypes. Patch by Lisandro Dalcin. (Github issue :issue:`2747`) * Internal C names generated from C function signatures could become too long for MSVC. (Github issue :issue:`6052`) * The ``noexcept`` warnings could be misleading in some cases. Patch by Gonzalo TornarĂ­a. (Github issue :issue:`6087`) * The ``@cython.ufunc`` implementation could generate incomplete C code. (Github issue :issue:`6064`) * The ``libcpp.complex`` declarations could result in incorrect C++ code. Patch by Raffi Enficiaud. (Github issue :issue:`6037`) * Several tests were adapted to work with both NumPy 1.x and 2.0. Patch by Matti Picus. (Github issues :issue:`6076`, :issue:`6100`) * C compiler warnings when the freelist implementation is disabled (e.g. on PyPy) were fixed. It can now be disabled explicitly with the C macro guard ``CYTHON_USE_FREELISTS=0``. (Github issue :issue:`6099`) * Some C macro guards for feature flags were missing from the NOGIL Python configuration. * Some recently added builtins were unconditionally looked up at module import time (if used by user code) that weren't available on all Python versions and could thus fail the import. * A performance hint regarding exported pxd declarations was improved. (Github issue :issue:`6001`) To generate a diff of this commit: cvs rdiff -u -r1.91 -r1.92 pkgsrc/devel/py-cython/Makefile cvs rdiff -u -r1.81 -r1.82 pkgsrc/devel/py-cython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712037518124830 Content-Disposition: inline Content-Length: 1700 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.91 pkgsrc/devel/py-cython/Makefile:1.92 --- pkgsrc/devel/py-cython/Makefile:1.91 Wed Mar 6 13:29:21 2024 +++ pkgsrc/devel/py-cython/Makefile Tue Apr 2 05:58:38 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.91 2024/03/06 13:29:21 adam Exp $ +# $NetBSD: Makefile,v 1.92 2024/04/02 05:58:38 adam Exp $ -DISTNAME= Cython-3.0.9 +DISTNAME= Cython-3.0.10 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=C/Cython/} Index: pkgsrc/devel/py-cython/distinfo diff -u pkgsrc/devel/py-cython/distinfo:1.81 pkgsrc/devel/py-cython/distinfo:1.82 --- pkgsrc/devel/py-cython/distinfo:1.81 Wed Mar 6 13:29:21 2024 +++ pkgsrc/devel/py-cython/distinfo Tue Apr 2 05:58:38 2024 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.81 2024/03/06 13:29:21 adam Exp $ +$NetBSD: distinfo,v 1.82 2024/04/02 05:58:38 adam Exp $ -BLAKE2s (Cython-3.0.9.tar.gz) = 2a61ca93b7f664a3338a56a219a4939d310d75f2779204d6c3342712dae79e80 -SHA512 (Cython-3.0.9.tar.gz) = 787e9c06ff3fa8a3cf08f857802d98cb9ca33e4cba242d29d47c74cdc690c2106ee7102a9f30d9df7c910636313594b39f8dcf6004e57ecd7c9b06d83acbc799 -Size (Cython-3.0.9.tar.gz) = 2748462 bytes +BLAKE2s (Cython-3.0.10.tar.gz) = 78ecdc25551a7fb0fe3cbe7d7b882dd2c978cf097cb5e36784f486619e7b1926 +SHA512 (Cython-3.0.10.tar.gz) = c789f627f60542e3506ec565a92227bd7e6985ce4f6ebdc525ee789799924a1959c2fd32e8dc4f5b94919dd99ba5dfca6996c65536719b492198fcfd15c683b3 +Size (Cython-3.0.10.tar.gz) = 2751764 bytes SHA1 (patch-Demos_embed_Makefile) = 67c4f662a8d79d39cbf8808d2e87d91a26ef28b9 SHA1 (patch-runtests.py) = b955b089d284f638eb5de85878204c084c550ef5 --_----------=_1712037518124830--