Received: by mail.netbsd.org (Postfix, from userid 605) id 33CC984E93; Tue, 2 May 2023 06:05:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6375C84D5F for ; Tue, 2 May 2023 06:05:28 +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 Mr0y_j4957Jt for ; Tue, 2 May 2023 06:05:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8CBDD84C86 for ; Tue, 2 May 2023 06:05:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 85DADFA87; Tue, 2 May 2023 06:05:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168300752751000" MIME-Version: 1.0 Date: Tue, 2 May 2023 06:05:27 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/math/py-pythran To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230502060527.85DADFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168300752751000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue May 2 06:05:27 UTC 2023 Modified Files: pkgsrc/math/py-pythran: Makefile PLIST distinfo Removed Files: pkgsrc/math/py-pythran/patches: patch-third__party_xsimd_arch_xsimd__scalar.hpp Log Message: py-pythran: update to 0.13.0. * Improve performance of functions revieving scalar arguments. This changes the internal function call API. * Improve performance of fix-stride slicing, using a new slice representation. * Improve numpy.copyto performance, and detect copyto pattern usage. * Force internal linkage of generated functions, which gives more optimization room to the C++ compiler. * Provide entry points pythran.import_pythrancode and pythran.import_pythranfile, as a poor man JIT option. * Optimize numpy.argmax(cst * val) into numpy.argmax(val) when cst is positive. * Avoid copies upon numpy.array_split * Get rid of unused functions C++ warnings * Avoid generating a loop footer when the loop index is not used outside of the loop. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/math/py-pythran/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/math/py-pythran/PLIST cvs rdiff -u -r1.8 -r1.9 pkgsrc/math/py-pythran/distinfo cvs rdiff -u -r1.2 -r0 \ pkgsrc/math/py-pythran/patches/patch-third__party_xsimd_arch_xsimd__scalar.hpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168300752751000 Content-Disposition: inline Content-Length: 3464 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-pythran/Makefile diff -u pkgsrc/math/py-pythran/Makefile:1.11 pkgsrc/math/py-pythran/Makefile:1.12 --- pkgsrc/math/py-pythran/Makefile:1.11 Mon Feb 27 13:07:46 2023 +++ pkgsrc/math/py-pythran/Makefile Tue May 2 06:05:27 2023 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2023/02/27 13:07:46 jperkin Exp $ +# $NetBSD: Makefile,v 1.12 2023/05/02 06:05:27 wiz Exp $ -DISTNAME= pythran-0.12.1 -PKGREVISION= 1 +DISTNAME= pythran-0.13.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pythran/} @@ -22,9 +21,6 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 USE_PKG_RESOURCES= yes -pre-configure: - ${RM} ${WRKSRC}/third_party/xsimd/arch/xsimd_scalar.hpp.orig - post-install: .for bin in pythran pythran-config cd ${DESTDIR}${PREFIX}/bin && \ Index: pkgsrc/math/py-pythran/PLIST diff -u pkgsrc/math/py-pythran/PLIST:1.5 pkgsrc/math/py-pythran/PLIST:1.6 --- pkgsrc/math/py-pythran/PLIST:1.5 Tue Jan 24 09:18:23 2023 +++ pkgsrc/math/py-pythran/PLIST Tue May 2 06:05:27 2023 @@ -1,15 +1,15 @@ -@comment $NetBSD: PLIST,v 1.5 2023/01/24 09:18:23 adam Exp $ +@comment $NetBSD: PLIST,v 1.6 2023/05/02 06:05:27 wiz Exp $ bin/pythran-${PYVERSSUFFIX} bin/pythran-config-${PYVERSSUFFIX} +${PYSITELIB}/omp/__init__.py +${PYSITELIB}/omp/__init__.pyc +${PYSITELIB}/omp/__init__.pyo ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/omp/__init__.py -${PYSITELIB}/omp/__init__.pyc -${PYSITELIB}/omp/__init__.pyo ${PYSITELIB}/pythran/__init__.py ${PYSITELIB}/pythran/__init__.pyc ${PYSITELIB}/pythran/__init__.pyo @@ -2295,6 +2295,9 @@ ${PYSITELIB}/pythran/optimizations/compr ${PYSITELIB}/pythran/optimizations/constant_folding.py ${PYSITELIB}/pythran/optimizations/constant_folding.pyc ${PYSITELIB}/pythran/optimizations/constant_folding.pyo +${PYSITELIB}/pythran/optimizations/copyto.py +${PYSITELIB}/pythran/optimizations/copyto.pyc +${PYSITELIB}/pythran/optimizations/copyto.pyo ${PYSITELIB}/pythran/optimizations/dead_code_elimination.py ${PYSITELIB}/pythran/optimizations/dead_code_elimination.pyc ${PYSITELIB}/pythran/optimizations/dead_code_elimination.pyo Index: pkgsrc/math/py-pythran/distinfo diff -u pkgsrc/math/py-pythran/distinfo:1.8 pkgsrc/math/py-pythran/distinfo:1.9 --- pkgsrc/math/py-pythran/distinfo:1.8 Mon Feb 27 13:07:46 2023 +++ pkgsrc/math/py-pythran/distinfo Tue May 2 06:05:27 2023 @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.8 2023/02/27 13:07:46 jperkin Exp $ +$NetBSD: distinfo,v 1.9 2023/05/02 06:05:27 wiz Exp $ -BLAKE2s (pythran-0.12.1.tar.gz) = 2e30bfd595ba4b12d43aaac62ccc329b59dc777e3a5ad484febf6235c37616dd -SHA512 (pythran-0.12.1.tar.gz) = e0a78df2c0a9b678a51ea2446588b5287a1f838e8387dd904b011b9314e61eebe0f53b6ea92107e766eebbea73ca0bdd4095a1805eb76a63cae063f82cdfa66b -Size (pythran-0.12.1.tar.gz) = 3995885 bytes -SHA1 (patch-third__party_xsimd_arch_xsimd__scalar.hpp) = 8b05968c5fcc747db85964d8318b211ec3f582e1 +BLAKE2s (pythran-0.13.0.tar.gz) = 92f6f6474aab8698d860af8f3b7f1ba840769857d7180c05b5085b511c6b90fa +SHA512 (pythran-0.13.0.tar.gz) = 0d89a89d8f3b28a62a86b95baaa2a4567452ef9b2a72c4b9f902003b528702fb28c6a38b5ccaa8a58a95575e40be370228d62830ab16f848725c13e75a71ade8 +Size (pythran-0.13.0.tar.gz) = 4002802 bytes --_----------=_168300752751000--