diff --git a/librsb-1.3.0.1.tar.gz b/librsb-1.3.0.1.tar.gz deleted file mode 100644 index 4fdd83d..0000000 --- a/librsb-1.3.0.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3fc024a410f94aca2a7139ae79f4d713b11fa83304293630c363786874c17db4 -size 4481625 diff --git a/librsb-1.3.0.1.tar.gz.asc b/librsb-1.3.0.1.tar.gz.asc deleted file mode 100644 index 0894cac..0000000 --- a/librsb-1.3.0.1.tar.gz.asc +++ /dev/null @@ -1,6 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iF0EABECAB0WIQQdu1Va6jWbiq8Ma4jg5mnI7xJYuAUCYmrQRQAKCRDg5mnI7xJY -uO9UAJ9gxRMKRFwq9SsP7E4z+1qmRZMFywCfdR/AWEkoulOC3s/rVw+H3KnrTjA= -=1bTb ------END PGP SIGNATURE----- diff --git a/librsb-1.3.0.2.tar.gz b/librsb-1.3.0.2.tar.gz new file mode 100644 index 0000000..cf5f55a --- /dev/null +++ b/librsb-1.3.0.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18c6fc443fa1cfd2a8110f7d4b88d5bbcb493b9e85b3a62014b8bb57a848e04f +size 4472747 diff --git a/librsb-1.3.0.2.tar.gz.asc b/librsb-1.3.0.2.tar.gz.asc new file mode 100644 index 0000000..118a798 --- /dev/null +++ b/librsb-1.3.0.2.tar.gz.asc @@ -0,0 +1,6 @@ +-----BEGIN PGP SIGNATURE----- + +iF0EABECAB0WIQQdu1Va6jWbiq8Ma4jg5mnI7xJYuAUCY6ICvgAKCRDg5mnI7xJY +uCOuAJ9X+9Oc8f//Go9SEjT53znPSiPFeACcD4P2FK3gJamY3QTZ64XEawiUwvU= +=lfZ8 +-----END PGP SIGNATURE----- diff --git a/librsb.changes b/librsb.changes index 5262116..b4850de 100644 --- a/librsb.changes +++ b/librsb.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Mon Feb 6 15:48:31 UTC 2023 - Jan Engelhardt + +- Update to release 1.3.0.2 + * rsb_coo_sort: fix crash on nr==0 (now will silently accept). + * Fix a format error on long indices on 32-bit architectures. + ------------------------------------------------------------------- Sat Jul 16 20:13:42 UTC 2022 - Jan Engelhardt diff --git a/librsb.spec b/librsb.spec index c528283..1500311 100644 --- a/librsb.spec +++ b/librsb.spec @@ -1,7 +1,7 @@ # # spec file for package librsb # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ Name: librsb %define lname librsb0 -Version: 1.3.0.1 +Version: 1.3.0.2 Release: 0 Summary: Shared memory parallel sparse matrix and sparse BLAS library License: LGPL-3.0-or-later diff --git a/pun.diff b/pun.diff index 9d80dc1..96e5b9c 100644 --- a/pun.diff +++ b/pun.diff @@ -9,11 +9,11 @@ rsb_test_accuracy.c:117:2: warning: dereferencing type-punned pointer will break rsb_types.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) -Index: librsb-1.2.0-rc6/rsb_types.h +Index: librsb-1.3.0.2/rsb_types.h =================================================================== ---- librsb-1.2.0-rc6.orig/rsb_types.h -+++ librsb-1.2.0-rc6/rsb_types.h -@@ -375,10 +375,10 @@ extern "C" { +--- librsb-1.3.0.2.orig/rsb_types.h ++++ librsb-1.3.0.2/rsb_types.h +@@ -379,10 +379,10 @@ extern "C" { switch(TYPE) \ { \ /* supported (double,float,float complex,double complex) */ \ diff --git a/reproducible.patch b/reproducible.patch index 7c51049..7bf9f49 100644 --- a/reproducible.patch +++ b/reproducible.patch @@ -12,25 +12,27 @@ See https://reproducible-builds.org/ for why this is good. configure.ac | 2 ++ 2 files changed, 4 insertions(+) -Index: librsb-1.3.0.1/configure +Index: librsb-1.3.0.2/configure =================================================================== ---- librsb-1.3.0.1.orig/configure -+++ librsb-1.3.0.1/configure -@@ -27208,7 +27208,9 @@ printf "%s\n" "#define RSB_WANT_IO_LEVEL - printf "%s\n" "#define RSB_USER_SET_MEM_HIERARCHY_INFO \"$RSB_USER_SET_MEM_HIERARCHY_INFO\"" >>confdefs.h +--- librsb-1.3.0.2.orig/configure ++++ librsb-1.3.0.2/configure +@@ -26175,9 +26175,11 @@ cat >>confdefs.h <<_ACEOF + _ACEOF +if test "x$memhinfo" = x; then - printf "%s\n" "#define RSB_DETECTED_MEM_HIERARCHY_INFO \"$RSB_DETECTED_MEM_HIERARCHY_INFO\"" >>confdefs.h + cat >>confdefs.h <<_ACEOF + #define RSB_DETECTED_MEM_HIERARCHY_INFO "$RSB_DETECTED_MEM_HIERARCHY_INFO" + _ACEOF +fi - printf "%s\n" "#define RSB_CONST_MAX_SUPPORTED_THREADS $RSB_CONST_MAX_SUPPORTED_THREADS" >>confdefs.h -Index: librsb-1.3.0.1/configure.ac + cat >>confdefs.h <<_ACEOF +Index: librsb-1.3.0.2/configure.ac =================================================================== ---- librsb-1.3.0.1.orig/configure.ac -+++ librsb-1.3.0.1/configure.ac -@@ -627,7 +627,9 @@ if test "x${detected_memhinfo}" = x -a " +--- librsb-1.3.0.2.orig/configure.ac ++++ librsb-1.3.0.2/configure.ac +@@ -632,7 +632,9 @@ if test "x${detected_memhinfo}" = x -a " memhinfo="${FALLBACK_MEM_HIERARCHY_INFO}" fi AC_SUBST([RSB_USER_SET_MEM_HIERARCHY_INFO],"${memhinfo}")