forked from macports/macports-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lapack: Patch to fix version numbering
- Loading branch information
1 parent
ef3f313
commit f019bec
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |