pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/py-pythran



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Sep 18 14:41:01 UTC 2023

Modified Files:
        pkgsrc/math/py-pythran: Makefile PLIST distinfo

Log Message:
py-pythran: updated to 0.14.0

0.14.0

Numpy compatibility - update signatures, complex number handling, long double support
Lazyly import top-level modules and submodules
Improve array indexing by an array
Require at least clang 7 or gcc 8
Make pythran compilation reproducible
Support np.roll with multiple axis
Support numpy.ndarray.view
Improve documentation about using Pythran in a Python package
Improve list resizing speed
Fix bug when filtering an empty sequence


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/math/py-pythran/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/math/py-pythran/PLIST
cvs rdiff -u -r1.10 -r1.11 pkgsrc/math/py-pythran/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/py-pythran/Makefile
diff -u pkgsrc/math/py-pythran/Makefile:1.15 pkgsrc/math/py-pythran/Makefile:1.16
--- pkgsrc/math/py-pythran/Makefile:1.15        Tue Aug  1 23:20:48 2023
+++ pkgsrc/math/py-pythran/Makefile     Mon Sep 18 14:41:01 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2023/08/01 23:20:48 wiz Exp $
+# $NetBSD: Makefile,v 1.16 2023/09/18 14:41:01 adam Exp $
 
-DISTNAME=      pythran-0.13.1
+DISTNAME=      pythran-0.14.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pythran/}

Index: pkgsrc/math/py-pythran/PLIST
diff -u pkgsrc/math/py-pythran/PLIST:1.6 pkgsrc/math/py-pythran/PLIST:1.7
--- pkgsrc/math/py-pythran/PLIST:1.6    Tue May  2 06:05:27 2023
+++ pkgsrc/math/py-pythran/PLIST        Mon Sep 18 14:41:01 2023
@@ -1,15 +1,15 @@
-@comment $NetBSD: PLIST,v 1.6 2023/05/02 06:05:27 wiz Exp $
+@comment $NetBSD: PLIST,v 1.7 2023/09/18 14:41:01 adam 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
@@ -2526,6 +2526,7 @@ ${PYSITELIB}/pythran/pythonic/builtins/s
 ${PYSITELIB}/pythran/pythonic/builtins/str/replace.hpp
 ${PYSITELIB}/pythran/pythonic/builtins/str/rstrip.hpp
 ${PYSITELIB}/pythran/pythonic/builtins/str/split.hpp
+${PYSITELIB}/pythran/pythonic/builtins/str/splitlines.hpp
 ${PYSITELIB}/pythran/pythonic/builtins/str/startswith.hpp
 ${PYSITELIB}/pythran/pythonic/builtins/str/strip.hpp
 ${PYSITELIB}/pythran/pythonic/builtins/str/upper.hpp
@@ -2734,6 +2735,7 @@ ${PYSITELIB}/pythran/pythonic/include/bu
 ${PYSITELIB}/pythran/pythonic/include/builtins/str/replace.hpp
 ${PYSITELIB}/pythran/pythonic/include/builtins/str/rstrip.hpp
 ${PYSITELIB}/pythran/pythonic/include/builtins/str/split.hpp
+${PYSITELIB}/pythran/pythonic/include/builtins/str/splitlines.hpp
 ${PYSITELIB}/pythran/pythonic/include/builtins/str/startswith.hpp
 ${PYSITELIB}/pythran/pythonic/include/builtins/str/strip.hpp
 ${PYSITELIB}/pythran/pythonic/include/builtins/str/upper.hpp
@@ -3070,6 +3072,7 @@ ${PYSITELIB}/pythran/pythonic/include/nu
 ${PYSITELIB}/pythran/pythonic/include/numpy/ndarray/tofile.hpp
 ${PYSITELIB}/pythran/pythonic/include/numpy/ndarray/tolist.hpp
 ${PYSITELIB}/pythran/pythonic/include/numpy/ndarray/tostring.hpp
+${PYSITELIB}/pythran/pythonic/include/numpy/ndarray/view.hpp
 ${PYSITELIB}/pythran/pythonic/include/numpy/ndenumerate.hpp
 ${PYSITELIB}/pythran/pythonic/include/numpy/ndim.hpp
 ${PYSITELIB}/pythran/pythonic/include/numpy/ndindex.hpp
@@ -3355,6 +3358,7 @@ ${PYSITELIB}/pythran/pythonic/include/ty
 ${PYSITELIB}/pythran/pythonic/include/types/attr.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/bool.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/cfun.hpp
+${PYSITELIB}/pythran/pythonic/include/types/clongdouble.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/combined.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/complex.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/complex128.hpp
@@ -3381,6 +3385,7 @@ ${PYSITELIB}/pythran/pythonic/include/ty
 ${PYSITELIB}/pythran/pythonic/include/types/intp.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/lazy.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/list.hpp
+${PYSITELIB}/pythran/pythonic/include/types/longdouble.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/ndarray.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/nditerator.hpp
 ${PYSITELIB}/pythran/pythonic/include/types/numpy_binary_op.hpp
@@ -3735,6 +3740,7 @@ ${PYSITELIB}/pythran/pythonic/numpy/ndar
 ${PYSITELIB}/pythran/pythonic/numpy/ndarray/tofile.hpp
 ${PYSITELIB}/pythran/pythonic/numpy/ndarray/tolist.hpp
 ${PYSITELIB}/pythran/pythonic/numpy/ndarray/tostring.hpp
+${PYSITELIB}/pythran/pythonic/numpy/ndarray/view.hpp
 ${PYSITELIB}/pythran/pythonic/numpy/ndenumerate.hpp
 ${PYSITELIB}/pythran/pythonic/numpy/ndim.hpp
 ${PYSITELIB}/pythran/pythonic/numpy/ndindex.hpp
@@ -4024,6 +4030,7 @@ ${PYSITELIB}/pythran/pythonic/types/assi
 ${PYSITELIB}/pythran/pythonic/types/attr.hpp
 ${PYSITELIB}/pythran/pythonic/types/bool.hpp
 ${PYSITELIB}/pythran/pythonic/types/cfun.hpp
+${PYSITELIB}/pythran/pythonic/types/clongdouble.hpp
 ${PYSITELIB}/pythran/pythonic/types/combined.hpp
 ${PYSITELIB}/pythran/pythonic/types/complex.hpp
 ${PYSITELIB}/pythran/pythonic/types/complex128.hpp
@@ -4048,6 +4055,7 @@ ${PYSITELIB}/pythran/pythonic/types/int8
 ${PYSITELIB}/pythran/pythonic/types/intc.hpp
 ${PYSITELIB}/pythran/pythonic/types/intp.hpp
 ${PYSITELIB}/pythran/pythonic/types/list.hpp
+${PYSITELIB}/pythran/pythonic/types/longdouble.hpp
 ${PYSITELIB}/pythran/pythonic/types/ndarray.hpp
 ${PYSITELIB}/pythran/pythonic/types/nditerator.hpp
 ${PYSITELIB}/pythran/pythonic/types/numpy_binary_op.hpp

Index: pkgsrc/math/py-pythran/distinfo
diff -u pkgsrc/math/py-pythran/distinfo:1.10 pkgsrc/math/py-pythran/distinfo:1.11
--- pkgsrc/math/py-pythran/distinfo:1.10        Thu May  4 17:36:05 2023
+++ pkgsrc/math/py-pythran/distinfo     Mon Sep 18 14:41:01 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.10 2023/05/04 17:36:05 adam Exp $
+$NetBSD: distinfo,v 1.11 2023/09/18 14:41:01 adam Exp $
 
-BLAKE2s (pythran-0.13.1.tar.gz) = 8e2c3c23347bfae95ff406aa45f183041d5755887be19a094b9effcbfedad0cb
-SHA512 (pythran-0.13.1.tar.gz) = 4a0cc4621dda1cefdd1a77182e9cf2d5226f4eb36d6d82803f6d0a202148c64612e4c3bbbe3af77201cdd0536cfa700a7129ac0e7f8919478d685db043bcac87
-Size (pythran-0.13.1.tar.gz) = 4010788 bytes
+BLAKE2s (pythran-0.14.0.tar.gz) = ac2170441fe3a789fe5852a3f0f95ad16e618dc4dfcddc016b37ea2c60a2938f
+SHA512 (pythran-0.14.0.tar.gz) = 48f76605175f89d27d5d5878cd76c5d7f3096d002c5ca163b556c5b12b7cfac0f9dc4f839e85273000c299944ced13923797826e5983252e7bf53d8511e3ae91
+Size (pythran-0.14.0.tar.gz) = 4015360 bytes



Home | Main Index | Thread Index | Old Index