Skip to content

Commit

Permalink
lapack: Patch to fix version numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave-Allured authored Feb 5, 2025
1 parent ef3f313 commit f019bec
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions math/lapack/files/patch-version-nums.3.12.1-ONLY.diff
Original file line number Diff line number Diff line change
@@ -1 +1,26 @@
# Fix internal version numbering for lapack-3.12.1 only.
# https://github.com/Reference-LAPACK/lapack/issues/1103

--- CMakeLists.txt.orig 2024-12-03 04:39:11
+++ CMakeLists.txt 2025-02-05 14:15:43
@@ -4,7 +4,7 @@

set(LAPACK_MAJOR_VERSION 3)
set(LAPACK_MINOR_VERSION 12)
-set(LAPACK_PATCH_VERSION 0)
+set(LAPACK_PATCH_VERSION 1)
set(
LAPACK_VERSION
${LAPACK_MAJOR_VERSION}.${LAPACK_MINOR_VERSION}.${LAPACK_PATCH_VERSION}

--- INSTALL/ilaver.f.orig 2024-12-03 04:39:11
+++ INSTALL/ilaver.f 2025-02-05 14:15:53
@@ -59,7 +59,7 @@
* =====================================================================
VERS_MAJOR = 3
VERS_MINOR = 12
- VERS_PATCH = 0
+ VERS_PATCH = 1
* =====================================================================
*
RETURN

0 comments on commit f019bec

Please sign in to comment.