numpy: bump to version 2.2.5
authorAlexandru Ardelean <[email protected]>
Sun, 11 May 2025 04:45:00 +0000 (07:45 +0300)
committerAlexandru Ardelean <[email protected]>
Wed, 14 May 2025 12:14:18 +0000 (15:14 +0300)
Also needing to treat 'incompatible-pointer-types' as warnings.

Signed-off-by: Alexandru Ardelean <[email protected]>
lang/python/numpy/Makefile

index 6e4c857d02192cbc3f5b96079bd03f0853a84c4d..e667db041be21ede100b383b1eacd70d67dd896b 100644 (file)
@@ -6,11 +6,11 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=numpy
-PKG_VERSION:=2.2.3
+PKG_VERSION:=2.2.5
 PKG_RELEASE:=1
 
 PYPI_NAME:=$(PKG_NAME)
-PKG_HASH:=dbdc15f0c81611925f382dfa97b3bd0bc2c1ce19d4fe50482cb0ddc12ba30020
+PKG_HASH:=a9c0d994680cd991b1cb772e8b297340085466a6fe964bc9d4e80f5e2f43c291
 
 PKG_MAINTAINER:=Alexandru Ardelean <[email protected]>
 
@@ -38,6 +38,10 @@ MESON_ARGS+= \
        -Ddisable-optimization=true \
        -Dcpu-baseline=min
 
+# FIXME: remove asap; added in 2.2.5
+TARGET_CFLAGS += \
+       -Wno-error=incompatible-pointer-types
+
 # Override 'Meson', to use numpy's vendored meson
 define Meson
        $(call Python3/Run,,$(PKG_BUILD_DIR)/vendored-meson/meson/meson.py $(1),$(2))