Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions srcpkgs/openblas/patches/5813.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
See: https://github.com/OpenMathLib/OpenBLAS/issues/5787#issuecomment-4462191554

From 26c4eb65d1b60005d6556e432f4a8989efc5b6e6 Mon Sep 17 00:00:00 2001
From: Martin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Date: Fri, 15 May 2026 20:10:51 +0200
Subject: [PATCH] Restore the quick return in common code - the earlier one is
CBLAS only

---
interface/trsm.c | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/interface/trsm.c b/interface/trsm.c
index ae35d0d3b7..069df1aa5c 100644
--- a/interface/trsm.c
+++ b/interface/trsm.c
@@ -381,8 +381,12 @@ if (strcmp(gotoblas_corename(), "armv9sme") == 0
#endif
#endif

+
+
+//end of the ifndef CBLAS ... else ... section
#endif

+ if ((args.m == 0) || (args.n == 0)) return;
IDEBUG_START;

FUNCTION_PROFILE_START();
13 changes: 0 additions & 13 deletions srcpkgs/openblas/patches/arm-fix-float16.patch

This file was deleted.

4 changes: 2 additions & 2 deletions srcpkgs/openblas/template
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Template file for 'openblas'
pkgname=openblas
version=0.3.32
version=0.3.33
revision=1
build_style=gnu-makefile
make_build_args="HOSTCC=gcc USE_OPENMP=1"
Expand All @@ -13,7 +13,7 @@ license="BSD-3-Clause"
homepage="https://www.openblas.net/"
changelog="https://raw.githubusercontent.com/xianyi/OpenBLAS/develop/Changelog.txt"
distfiles="https://github.com/xianyi/OpenBLAS/archive/v${version}.tar.gz"
checksum=f8a1138e01fddca9e4c29f9684fd570ba39dedc9ca76055e1425d5d4b1a4a766
checksum=6761af1d9f5d353ab4f0b7497be2643313b36c8f31caec0144bfef198e71e6ab

case "$XBPS_TARGET_MACHINE" in
ppc64*) ;;
Expand Down