pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math



Module Name:    pkgsrc
Committed By:   thor
Date:           Sun Mar  1 17:55:10 UTC 2026

Modified Files:
        pkgsrc/math/openblas: Makefile distinfo
        pkgsrc/math/openblas/patches: patch-Makefile.system
        pkgsrc/math/openblas64: Makefile
        pkgsrc/math/openblas64_openmp: Makefile
        pkgsrc/math/openblas64_pthread: Makefile
        pkgsrc/math/openblas_openmp: Makefile
        pkgsrc/math/openblas_pthread: Makefile

Log Message:
openblas: fix dylib naming patch for Darwin


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/math/openblas/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/math/openblas/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/math/openblas/patches/patch-Makefile.system
cvs rdiff -u -r1.4 -r1.5 pkgsrc/math/openblas64/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/math/openblas64_openmp/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/math/openblas64_pthread/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/math/openblas_openmp/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/math/openblas_pthread/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/openblas/Makefile
diff -u pkgsrc/math/openblas/Makefile:1.9 pkgsrc/math/openblas/Makefile:1.10
--- pkgsrc/math/openblas/Makefile:1.9   Sat Feb 17 10:13:19 2024
+++ pkgsrc/math/openblas/Makefile       Sun Mar  1 17:55:10 2026
@@ -1,5 +1,7 @@
-# $NetBSD: Makefile,v 1.9 2024/02/17 10:13:19 adam Exp $
+# $NetBSD: Makefile,v 1.10 2026/03/01 17:55:10 thor Exp $
 
 OPENBLAS_VARIANT=      openblas
+PKGREVISION=1
+
 .include "../../math/openblas/Makefile.common"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/math/openblas/distinfo
diff -u pkgsrc/math/openblas/distinfo:1.13 pkgsrc/math/openblas/distinfo:1.14
--- pkgsrc/math/openblas/distinfo:1.13  Tue Feb 24 23:09:01 2026
+++ pkgsrc/math/openblas/distinfo       Sun Mar  1 17:55:10 2026
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.13 2026/02/24 23:09:01 thor Exp $
+$NetBSD: distinfo,v 1.14 2026/03/01 17:55:10 thor Exp $
 
 BLAKE2s (OpenBLAS-0.3.31.tar.gz) = 61531162bf9c314e87bab487894d86b8c8c89e14627610d5909421daba3566c1
 SHA512 (OpenBLAS-0.3.31.tar.gz) = 703b84c476c148a0922a04b1c33c9c4c452f478d608d93e59204b8f0f2c516344301ff0a4dbb3750a2449db0d28cc2df001c295898e859b41ecb8381f9c2eab8
 Size (OpenBLAS-0.3.31.tar.gz) = 25232810 bytes
 SHA1 (patch-Makefile) = fa6335a2cf9925c285611dc20f5a67e6b49a01c9
 SHA1 (patch-Makefile.install) = 1bc085d9c1138e24b136566587dfb35bc9bd3b08
-SHA1 (patch-Makefile.system) = 4cc1576e008619d427730a8fa14da7094744b6a3
+SHA1 (patch-Makefile.system) = 7345f7f0c69309ce0c163a2cb5702f6d41391270
 SHA1 (patch-c__check) = 731a7e35535a29933677c72bc0a9e956b9e3ff42
 SHA1 (patch-common__arm.h) = f08ec61bee8317daac267e90a79f46097b3431c9
 SHA1 (patch-cpuid__arm.c) = 20f95cede90cbe548c0cd09ed2e3d37d1d4aeabd

Index: pkgsrc/math/openblas/patches/patch-Makefile.system
diff -u pkgsrc/math/openblas/patches/patch-Makefile.system:1.4 pkgsrc/math/openblas/patches/patch-Makefile.system:1.5
--- pkgsrc/math/openblas/patches/patch-Makefile.system:1.4      Tue Feb 24 23:09:02 2026
+++ pkgsrc/math/openblas/patches/patch-Makefile.system  Sun Mar  1 17:55:10 2026
@@ -1,4 +1,4 @@
-$NetBSD: patch-Makefile.system,v 1.4 2026/02/24 23:09:02 thor Exp $
+$NetBSD: patch-Makefile.system,v 1.5 2026/03/01 17:55:10 thor Exp $
 
 Fix FIXED_LIBNAME to result in a primary library with the usual so.0 ending,
 and matching SONAME, with the .so being a symlink. This is the expected
@@ -53,7 +53,7 @@ skipping linking if the file is already 
 +# file is libopenblas_foobar.so.0 and libopenblas_foobar.so is a link.
 +ifeq ($(FIXED_LIBNAME),1)
 +LIBSONAME    = $(LIBNAME:.$(LIBSUFFIX)=.so).$(MAJOR_VERSION)
-+LIBDYNNAME   = $(LIBNAME:$(LIBSUFFIX)=).$(MAJOR_VERSION).dylib
++LIBDYNNAME   = $(LIBNAME:.$(LIBSUFFIX)=).$(MAJOR_VERSION).dylib
 +else
 +# Other case uses LIBPREFIX for SONAME. Primary lib file is
 +# libopenblas_cputypep-0.x.y.so, libopenblas.so.0 and libopenblas.so

Index: pkgsrc/math/openblas64/Makefile
diff -u pkgsrc/math/openblas64/Makefile:1.4 pkgsrc/math/openblas64/Makefile:1.5
--- pkgsrc/math/openblas64/Makefile:1.4 Sat Feb 17 10:13:19 2024
+++ pkgsrc/math/openblas64/Makefile     Sun Mar  1 17:55:10 2026
@@ -1,5 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2024/02/17 10:13:19 adam Exp $
+# $NetBSD: Makefile,v 1.5 2026/03/01 17:55:10 thor Exp $
 
 OPENBLAS_VARIANT= openblas64
+PKGREVISION=1
+
 .include "../../math/openblas/Makefile.common"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/math/openblas64_openmp/Makefile
diff -u pkgsrc/math/openblas64_openmp/Makefile:1.5 pkgsrc/math/openblas64_openmp/Makefile:1.6
--- pkgsrc/math/openblas64_openmp/Makefile:1.5  Sun Jun  1 16:57:10 2025
+++ pkgsrc/math/openblas64_openmp/Makefile      Sun Mar  1 17:55:10 2026
@@ -1,5 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2025/06/01 16:57:10 thor Exp $
+# $NetBSD: Makefile,v 1.6 2026/03/01 17:55:10 thor Exp $
 
 OPENBLAS_VARIANT= openblas64_openmp
+PKGREVISION=1
+
 .include "../../math/openblas/Makefile.common"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/math/openblas64_pthread/Makefile
diff -u pkgsrc/math/openblas64_pthread/Makefile:1.4 pkgsrc/math/openblas64_pthread/Makefile:1.5
--- pkgsrc/math/openblas64_pthread/Makefile:1.4 Sat Feb 17 10:13:20 2024
+++ pkgsrc/math/openblas64_pthread/Makefile     Sun Mar  1 17:55:10 2026
@@ -1,5 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2024/02/17 10:13:20 adam Exp $
+# $NetBSD: Makefile,v 1.5 2026/03/01 17:55:10 thor Exp $
 
 OPENBLAS_VARIANT= openblas64_pthread
+PKGREVISION=1
+
 .include "../../math/openblas/Makefile.common"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/math/openblas_openmp/Makefile
diff -u pkgsrc/math/openblas_openmp/Makefile:1.8 pkgsrc/math/openblas_openmp/Makefile:1.9
--- pkgsrc/math/openblas_openmp/Makefile:1.8    Sun Jun  1 16:56:24 2025
+++ pkgsrc/math/openblas_openmp/Makefile        Sun Mar  1 17:55:10 2026
@@ -1,5 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2025/06/01 16:56:24 thor Exp $
+# $NetBSD: Makefile,v 1.9 2026/03/01 17:55:10 thor Exp $
 
 OPENBLAS_VARIANT= openblas_openmp
+PKGREVISION=1
+
 .include "../../math/openblas/Makefile.common"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/math/openblas_pthread/Makefile
diff -u pkgsrc/math/openblas_pthread/Makefile:1.7 pkgsrc/math/openblas_pthread/Makefile:1.8
--- pkgsrc/math/openblas_pthread/Makefile:1.7   Sat Feb 17 10:13:20 2024
+++ pkgsrc/math/openblas_pthread/Makefile       Sun Mar  1 17:55:10 2026
@@ -1,5 +1,7 @@
-# $NetBSD: Makefile,v 1.7 2024/02/17 10:13:20 adam Exp $
+# $NetBSD: Makefile,v 1.8 2026/03/01 17:55:10 thor Exp $
 
 OPENBLAS_VARIANT= openblas_pthread
+PKGREVISION=1
+
 .include "../../math/openblas/Makefile.common"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index