Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH next 1/1] package/openblas: bump to version v0.3.28
@ 2024-08-10 11:11 Julien Olivain
  2024-08-15 12:48 ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 2+ messages in thread
From: Julien Olivain @ 2024-08-10 11:11 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

For change log since v0.3.27, see:
https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.28

This commit also removes the package patch 0002 since it is now included
in this version.

Signed-off-by: Julien Olivain <ju.o@free.fr>
---
Patch tested in:
https://gitlab.com/jolivain/buildroot/-/jobs/7550620374
---
 ...-should-not-be-run-in-cross-compiles.patch | 33 -------------------
 package/openblas/openblas.hash                |  6 ++--
 package/openblas/openblas.mk                  |  2 +-
 3 files changed, 4 insertions(+), 37 deletions(-)
 delete mode 100644 package/openblas/0002-fix-position-of-endif-gemm3m-tests-should-not-be-run-in-cross-compiles.patch

diff --git a/package/openblas/0002-fix-position-of-endif-gemm3m-tests-should-not-be-run-in-cross-compiles.patch b/package/openblas/0002-fix-position-of-endif-gemm3m-tests-should-not-be-run-in-cross-compiles.patch
deleted file mode 100644
index 44883b2c26..0000000000
--- a/package/openblas/0002-fix-position-of-endif-gemm3m-tests-should-not-be-run-in-cross-compiles.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 48e017de095018c60d83355804a3075658b4970c Mon Sep 17 00:00:00 2001
-From: Martin Kroeker <martin@ruby.chemie.uni-freiburg.de>
-Date: Fri, 5 Apr 2024 22:54:34 +0200
-Subject: [PATCH] fix position of endif - gemm3m tests should not be run in
- cross-compiles
-
-Upstream: https://github.com/OpenMathLib/OpenBLAS/commit/48e017de095018c60d83355804a3075658b4970c
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- ctest/Makefile | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/ctest/Makefile b/ctest/Makefile
-index bbaf96f8ed..6c7cc1ed56 100644
---- a/ctest/Makefile
-+++ b/ctest/Makefile
-@@ -203,7 +203,6 @@ ifeq ($(BUILD_COMPLEX16),1)
- 	OPENBLAS_NUM_THREADS=2 ./xzcblat3 < zin3
- endif
- endif
--endif
- 
- ifeq ($(SUPPORT_GEMM3M),1)
- ifeq ($(USE_OPENMP), 1)
-@@ -222,7 +221,7 @@ ifeq ($(BUILD_COMPLEX16),1)
- endif
- endif
- endif
--
-+endif
- 
- 
- 
diff --git a/package/openblas/openblas.hash b/package/openblas/openblas.hash
index cd59496908..4439896b14 100644
--- a/package/openblas/openblas.hash
+++ b/package/openblas/openblas.hash
@@ -1,5 +1,5 @@
-# From https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.27
-md5  ef71c66ffeb1ab0f306a37de07d2667f  openblas-0.3.27.tar.gz
+# From https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.28
+md5  0f54185b6ef804173c01b9a40520a0e8  openblas-0.3.28.tar.gz
 # Locally calculated
-sha256  aa2d68b1564fe2b13bc292672608e9cdeeeb6dc34995512e65c3b10f4599e897  openblas-0.3.27.tar.gz
+sha256  f1003466ad074e9b0c8d421a204121100b0751c96fc6fcf3d1456bd12f8a00a1  openblas-0.3.28.tar.gz
 sha256  190b5a9c8d9723fe958ad33916bd7346d96fab3c5ea90832bb02d854f620fcff  LICENSE
diff --git a/package/openblas/openblas.mk b/package/openblas/openblas.mk
index a3c7a194cf..a1f631e6b3 100644
--- a/package/openblas/openblas.mk
+++ b/package/openblas/openblas.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-OPENBLAS_VERSION = 0.3.27
+OPENBLAS_VERSION = 0.3.28
 OPENBLAS_SITE = https://github.com/OpenMathLib/OpenBLAS/releases/download/v$(OPENBLAS_VERSION)
 OPENBLAS_LICENSE = BSD-3-Clause
 OPENBLAS_LICENSE_FILES = LICENSE
-- 
2.46.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Buildroot] [PATCH next 1/1] package/openblas: bump to version v0.3.28
  2024-08-10 11:11 [Buildroot] [PATCH next 1/1] package/openblas: bump to version v0.3.28 Julien Olivain
@ 2024-08-15 12:48 ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-08-15 12:48 UTC (permalink / raw)
  To: Julien Olivain; +Cc: buildroot

On Sat, 10 Aug 2024 13:11:24 +0200
Julien Olivain <ju.o@free.fr> wrote:

> For change log since v0.3.27, see:
> https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.28
> 
> This commit also removes the package patch 0002 since it is now included
> in this version.
> 
> Signed-off-by: Julien Olivain <ju.o@free.fr>
> ---
> Patch tested in:
> https://gitlab.com/jolivain/buildroot/-/jobs/7550620374
> ---
>  ...-should-not-be-run-in-cross-compiles.patch | 33 -------------------
>  package/openblas/openblas.hash                |  6 ++--
>  package/openblas/openblas.mk                  |  2 +-
>  3 files changed, 4 insertions(+), 37 deletions(-)
>  delete mode 100644 package/openblas/0002-fix-position-of-endif-gemm3m-tests-should-not-be-run-in-cross-compiles.patch

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-08-15 12:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-10 11:11 [Buildroot] [PATCH next 1/1] package/openblas: bump to version v0.3.28 Julien Olivain
2024-08-15 12:48 ` Thomas Petazzoni via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox