From 0d694cf3e2ea6a1f667d41c0463c13a9b73ca1d7 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 08:21:11 +0100 Subject: [PATCH 01/13] Try .gitattributes to control release contents --- .gitattributes | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..119fd220 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,22 @@ +*.a +*.o +*.mod +*.smod +*~ + +# Make.inc generated +/Make.inc +config.log +config.status + +# generated folder +/include/ +/modules/ +docs/src +docs/doxypsb +docs/Makefile +autom4te.cache + +# the executable from tests +runs + From 7efe9cca13666db1dbc219b99b3a72ce969ca0d7 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 08:28:34 +0100 Subject: [PATCH 02/13] .gitattributes take 2 --- .gitattributes | 38 ++++++++++++++++++++++---------------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/.gitattributes b/.gitattributes index 119fd220..b6cb89db 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,22 +1,28 @@ -*.a -*.o -*.mod -*.smod -*~ +*.a export-ignore +*.o export-ignore +*.mod export-ignore +*.smod export-ignore +*~ export-ignore # Make.inc generated -/Make.inc -config.log -config.status - +/Make.inc export-ignore +/config export-ignore +configure.ac +config.log export-ignore +config.status export-ignore +aclocal.m4 export-ignore +autogen.sh export-ignore +autom4te.cache export-ignore +Dockerfile export-ignore +install-sh export-ignore +.travis.yml export-ignore # generated folder -/include/ -/modules/ -docs/src -docs/doxypsb -docs/Makefile -autom4te.cache +/include/ export-ignore +/modules/ export-ignore +docs/src export-ignore +docs/doxypsb export-ignore +docs/Makefile export-ignore # the executable from tests -runs +runs export-ignore From c9542cd1ca78ec389936a7d277b351b2cd7d2b8f Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 08:53:57 +0100 Subject: [PATCH 03/13] .gitattributes take 3 --- .gitattributes | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitattributes b/.gitattributes index b6cb89db..1868d455 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,11 +3,12 @@ *.mod export-ignore *.smod export-ignore *~ export-ignore +.git* export-ignore -# Make.inc generated -/Make.inc export-ignore -/config export-ignore -configure.ac + +Make.inc export-ignore +config/* export-ignore +configure.ac export-ignore config.log export-ignore config.status export-ignore aclocal.m4 export-ignore @@ -17,12 +18,12 @@ Dockerfile export-ignore install-sh export-ignore .travis.yml export-ignore # generated folder -/include/ export-ignore -/modules/ export-ignore +include/ export-ignore +modules/ export-ignore docs/src export-ignore docs/doxypsb export-ignore docs/Makefile export-ignore # the executable from tests -runs export-ignore +runs/* export-ignore From 5f0383bb588cce8a1007305561dae191c4175044 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 09:01:59 +0100 Subject: [PATCH 04/13] Update releasenews and gitattributes --- .gitattributes | 4 +++- ReleaseNews | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 1868d455..473cdf38 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,7 +7,7 @@ Make.inc export-ignore -config/* export-ignore +config export-ignore configure.ac export-ignore config.log export-ignore config.status export-ignore @@ -16,6 +16,8 @@ autogen.sh export-ignore autom4te.cache export-ignore Dockerfile export-ignore install-sh export-ignore +compile export-ignore +missing export-ignore .travis.yml export-ignore # generated folder include/ export-ignore diff --git a/ReleaseNews b/ReleaseNews index cf60dc52..4df65c99 100644 --- a/ReleaseNews +++ b/ReleaseNews @@ -1,4 +1,8 @@ WHAT'S NEW +Version 3.9.0-1 + 1. Fix licensing issues + 2. Fix build and packaging + Version 3.9 1. PSBLAS3-EXT has been folded into the main library 2. Renamed GPU into CUDA. From 39025fb9dd1e27a65b6f7a3dcc6b9d9470da924a Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 09:04:46 +0100 Subject: [PATCH 05/13] Update gitattributes --- .gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 473cdf38..1d51ac66 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,7 +7,7 @@ Make.inc export-ignore -config export-ignore +config/ export-ignore configure.ac export-ignore config.log export-ignore config.status export-ignore From fcd238692a947d2d937b270a47dee840f69ba119 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 09:19:10 +0100 Subject: [PATCH 06/13] .gitattributes --- .gitattributes | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index 1d51ac66..6effb11c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -20,12 +20,17 @@ compile export-ignore missing export-ignore .travis.yml export-ignore # generated folder -include/ export-ignore -modules/ export-ignore +./include/ export-ignore +./modules/ export-ignore docs/src export-ignore docs/doxypsb export-ignore docs/Makefile export-ignore # the executable from tests +test/computational_routines export-ignore +test/computational_routines export-ignore +test/omp export-ignore +test/openacc export-ignore +test/torture export-ignore runs/* export-ignore From 08c67982ed3476cdd0154248d9948c5fb365f131 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 09:22:19 +0100 Subject: [PATCH 07/13] .gitattributes --- .gitattributes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 6effb11c..0c016828 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,7 +7,7 @@ Make.inc export-ignore -config/ export-ignore +./config/ export-ignore configure.ac export-ignore config.log export-ignore config.status export-ignore @@ -19,6 +19,7 @@ install-sh export-ignore compile export-ignore missing export-ignore .travis.yml export-ignore +./rsb/ export-ignore # generated folder ./include/ export-ignore ./modules/ export-ignore From 808ffd6d70d198503c0f8666b115ae4742f36802 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 09:30:42 +0100 Subject: [PATCH 08/13] .gitattributes --- .gitattributes | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitattributes b/.gitattributes index 0c016828..9302b693 100644 --- a/.gitattributes +++ b/.gitattributes @@ -15,9 +15,6 @@ aclocal.m4 export-ignore autogen.sh export-ignore autom4te.cache export-ignore Dockerfile export-ignore -install-sh export-ignore -compile export-ignore -missing export-ignore .travis.yml export-ignore ./rsb/ export-ignore # generated folder From df6d42d81f91c6a7775c388aa817edfe1c3603d3 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 09:35:19 +0100 Subject: [PATCH 09/13] Fix configure AR options --- configure | 4 ---- configure.ac | 4 ---- 2 files changed, 8 deletions(-) diff --git a/configure b/configure index baed05ce..c19578d7 100755 --- a/configure +++ b/configure @@ -9196,10 +9196,6 @@ else fi -# This should be portable -AR="${AR} -cDr" - - ############################################################################### # BLAS library presence checks ############################################################################### diff --git a/configure.ac b/configure.ac index fc9cdd18..a9b53592 100644 --- a/configure.ac +++ b/configure.ac @@ -732,10 +732,6 @@ AC_PROG_AR AR="${AR} -cr" AC_PROG_RANLIB -# This should be portable -AR="${AR} -cDr" - - ############################################################################### # BLAS library presence checks ############################################################################### From 52ce90168ef0139f4f40a0a4efc4db474a1da640 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 10:09:15 +0100 Subject: [PATCH 10/13] .gitattributes --- .gitattributes | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index 9302b693..f5d9b897 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,7 +7,7 @@ Make.inc export-ignore -./config/ export-ignore +./config export-ignore configure.ac export-ignore config.log export-ignore config.status export-ignore @@ -16,10 +16,10 @@ autogen.sh export-ignore autom4te.cache export-ignore Dockerfile export-ignore .travis.yml export-ignore -./rsb/ export-ignore +./rsb export-ignore # generated folder -./include/ export-ignore -./modules/ export-ignore +./include export-ignore +./modules export-ignore docs/src export-ignore docs/doxypsb export-ignore docs/Makefile export-ignore From 217ad0a6a4c805c45e9131869b00707940330d9e Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 10:12:51 +0100 Subject: [PATCH 11/13] .gitattributes --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index f5d9b897..69cdfa33 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,6 +7,7 @@ Make.inc export-ignore +./config/* export-ignore ./config export-ignore configure.ac export-ignore config.log export-ignore From 9faac23b960ab914d3c553fc8971985abaa63a09 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 10:16:28 +0100 Subject: [PATCH 12/13] test .gitattributes --- .gitattributes | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index 69cdfa33..6ff83daa 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,8 +7,7 @@ Make.inc export-ignore -./config/* export-ignore -./config export-ignore +./config/ export-ignore configure.ac export-ignore config.log export-ignore config.status export-ignore From c8961a3cfd27667cb033c03f84e71f6fe97a59c2 Mon Sep 17 00:00:00 2001 From: sfilippone Date: Thu, 19 Mar 2026 11:32:04 +0100 Subject: [PATCH 13/13] Fix gitattributes --- .gitattributes | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitattributes b/.gitattributes index 6ff83daa..4433aa7e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4,10 +4,15 @@ *.smod export-ignore *~ export-ignore .git* export-ignore +rsb export-ignore +rsb/ export-ignore +rsb/** export-ignore Make.inc export-ignore -./config/ export-ignore +config export-ignore +config/ export-ignore +config/** export-ignore configure.ac export-ignore config.log export-ignore config.status export-ignore @@ -16,10 +21,9 @@ autogen.sh export-ignore autom4te.cache export-ignore Dockerfile export-ignore .travis.yml export-ignore -./rsb export-ignore # generated folder -./include export-ignore -./modules export-ignore +./include/** export-ignore +./modules/** export-ignore docs/src export-ignore docs/doxypsb export-ignore docs/Makefile export-ignore @@ -30,5 +34,4 @@ test/computational_routines export-ignore test/omp export-ignore test/openacc export-ignore test/torture export-ignore -runs/* export-ignore