summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2022-05-20 12:09:01 +0000
committeradam <adam@pkgsrc.org>2022-05-20 12:09:01 +0000
commitfc959a4a624dc40d95e72ab710ca7654e8acdf93 (patch)
treea34d93167c7e46b518c8f2eafde49164f004e7c9 /math
parent5d60c6c9135159058c49df3e06ef0ac65728a7c4 (diff)
downloadpkgsrc-fc959a4a624dc40d95e72ab710ca7654e8acdf93.tar.gz
py-scipy: updated to 1.8.1
SciPy 1.8.1 is a bug-fix release with no new features compared to 1.8.0. Notably, usage of Pythran has been restored for Windows builds/binaries.
Diffstat (limited to 'math')
-rw-r--r--math/py-scipy/Makefile5
-rw-r--r--math/py-scipy/distinfo9
-rw-r--r--math/py-scipy/patches/patch-scipy_stats___hypotests__pythran.cpp19
3 files changed, 6 insertions, 27 deletions
diff --git a/math/py-scipy/Makefile b/math/py-scipy/Makefile
index b2cfb24246c..8fa2732d821 100644
--- a/math/py-scipy/Makefile
+++ b/math/py-scipy/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.56 2022/05/03 15:14:54 tnn Exp $
+# $NetBSD: Makefile,v 1.57 2022/05/20 12:09:01 adam Exp $
-DISTNAME= scipy-1.8.0
-PKGREVISION= 1
+DISTNAME= scipy-1.8.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/scipy/}
diff --git a/math/py-scipy/distinfo b/math/py-scipy/distinfo
index dbc88aec62b..34d8e38613b 100644
--- a/math/py-scipy/distinfo
+++ b/math/py-scipy/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.33 2022/05/13 09:49:31 tnn Exp $
+$NetBSD: distinfo,v 1.34 2022/05/20 12:09:01 adam Exp $
-BLAKE2s (scipy-1.8.0.tar.gz) = 45a8dad311d6c459a748f31a7df37ce49ee611c8d4c258649288fd624e5a3a05
-SHA512 (scipy-1.8.0.tar.gz) = 674652728ae76479d17189e6974895bb838a8e83b17b9fb91c5f86faebf2a1387e1466555ac5b51d05c293f9b31b9a72e634f5858105ea984ca94bd2f05bbb4c
-Size (scipy-1.8.0.tar.gz) = 38313602 bytes
+BLAKE2s (scipy-1.8.1.tar.gz) = 364d6645a49d897429094a406e6073e124c1ebca01f4be63ebe401b660d8df38
+SHA512 (scipy-1.8.1.tar.gz) = f6fc71c209991fe82baa4b10d8ade0deb1057f6f5942a91dfb7ae45f3eb78a4535efa2861badf5e2d37239fa99dbd99de760aa7e4854b95991ade0263004e7ea
+Size (scipy-1.8.1.tar.gz) = 38196215 bytes
SHA1 (patch-scipy_special___logit.h) = c729c2b73de00cad4c9ad834a79b80dea7b05af3
SHA1 (patch-scipy_special___round.h) = bc05a935e6423ce8395450ad3b30e88826939422
-SHA1 (patch-scipy_stats___hypotests__pythran.cpp) = e5d70b810ca020ccd25b9ad7068ce44487d8da60
diff --git a/math/py-scipy/patches/patch-scipy_stats___hypotests__pythran.cpp b/math/py-scipy/patches/patch-scipy_stats___hypotests__pythran.cpp
deleted file mode 100644
index 270358c24f2..00000000000
--- a/math/py-scipy/patches/patch-scipy_stats___hypotests__pythran.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-scipy_stats___hypotests__pythran.cpp,v 1.1 2022/04/12 20:31:43 tnn Exp $
-
-/usr/include/iso/ctype_iso.h on SunOS has this:
-#define _P 0x00000010 /* Punctuation */
-
-Kludge away this macro.
-
---- scipy/stats/_hypotests_pythran.cpp.orig 2022-02-04 14:45:39.615792300 +0000
-+++ scipy/stats/_hypotests_pythran.cpp
-@@ -253,6 +253,9 @@ namespace __pythran__hypotests_pythran
- typename type<argument_type0>::result_type operator()(argument_type0&& A) const
- ;
- } ;
-+#ifdef _P
-+#undef _P
-+#endif
- struct _P
- {
- typedef void callable;