python3-numpy: update to 1.19.5, fix armv5tel-musl
In fenv.h, musl disables the normal set of constants that you would get on arm with an arm device with an fpu (armv6 and up), but armv5tel on void uses softfloat all the time. But python3-numpy dosen't use these to interact with the fpu (the compiler would generate those instructions) and rather just uses those constants for a generic GCC implementation. So we give them out anyway. Co-authored-by: fosslinux <fosslinux@aussies.space> Co-authored-by: Andrew J. Hesford <ajh@sideband.org>
This commit is contained in:
parent
c92b083988
commit
23b1f238bc
|
@ -0,0 +1,10 @@
|
|||
#define FE_INVALID 1
|
||||
#define FE_DIVBYZERO 2
|
||||
#define FE_OVERFLOW 4
|
||||
#define FE_UNDERFLOW 8
|
||||
#define FE_INEXACT 16
|
||||
#define FE_ALL_EXCEPT 31
|
||||
#define FE_TONEAREST 0
|
||||
#define FE_DOWNWARD 0x800000
|
||||
#define FE_UPWARD 0x400000
|
||||
#define FE_TOWARDZERO 0xc00000
|
|
@ -0,0 +1,11 @@
|
|||
--- numpy/core/src/npymath/ieee754.c.src 2020-09-20 14:53:51.998825328 +1000
|
||||
+++ numpy/core/src/npymath/ieee754.c.src 2020-09-20 14:54:03.611889518 +1000
|
||||
@@ -8,6 +8,8 @@
|
||||
#include "npy_math_private.h"
|
||||
#include "numpy/utils.h"
|
||||
|
||||
+#include "fenv-constants.h"
|
||||
+
|
||||
#ifndef HAVE_COPYSIGN
|
||||
double npy_copysign(double x, double y)
|
||||
{
|
|
@ -1,23 +1,35 @@
|
|||
# Template file for 'python3-numpy'
|
||||
pkgname=python3-numpy
|
||||
version=1.19.4
|
||||
version=1.19.5
|
||||
revision=1
|
||||
wrksrc="numpy-${version}"
|
||||
build_style=python3-module
|
||||
hostmakedepends="python3-setuptools python3-Cython gcc-fortran"
|
||||
makedepends="python3-devel lapack-devel cblas-devel"
|
||||
depends="python3-setuptools"
|
||||
checkdepends="python3-pytest python3-hypothesis"
|
||||
short_desc="Fast and sophisticated array facility to Python3"
|
||||
maintainer="bra1nwave <bra1nwave@protonmail.com>"
|
||||
license="BSD-3-Clause"
|
||||
homepage="https://www.numpy.org/"
|
||||
distfiles="https://github.com/numpy/numpy/archive/v${version}.tar.gz"
|
||||
checksum=6082884371a5998fa8b006b506f4827c0617d789d7b3ee78549bb044139a9a8e
|
||||
checksum=43fe3bcdf27a2eb27196a1d140385aeece71c8b1a6eda18d2c6365239e50c60f
|
||||
alternatives="numpy:f2py:/usr/bin/f2py3"
|
||||
|
||||
post_patch() {
|
||||
case "${XBPS_TARGET_MACHINE}" in
|
||||
armv5tel-musl)
|
||||
cp "${FILESDIR}/fenv-constants.h" numpy/core/src/npymath/
|
||||
patch -Np0 -i "${FILESDIR}/fenv-constants.patch"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
pre_build() {
|
||||
make_build_args+=" ${makejobs}"
|
||||
}
|
||||
|
||||
do_check() {
|
||||
./runtests.py -v
|
||||
echo "Skipping check: tests do not function properly in builddir"
|
||||
}
|
||||
|
||||
post_install() {
|
||||
|
|
Loading…
Reference in New Issue