Accepting request 1122957 from science
- Update to release 1.3.0.2 OBS-URL: https://build.opensuse.org/request/show/1122957 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/librsb?expand=0&rev=8
This commit is contained in:
commit
45a1444557
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3fc024a410f94aca2a7139ae79f4d713b11fa83304293630c363786874c17db4
|
|
||||||
size 4481625
|
|
@ -1,6 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iF0EABECAB0WIQQdu1Va6jWbiq8Ma4jg5mnI7xJYuAUCYmrQRQAKCRDg5mnI7xJY
|
|
||||||
uO9UAJ9gxRMKRFwq9SsP7E4z+1qmRZMFywCfdR/AWEkoulOC3s/rVw+H3KnrTjA=
|
|
||||||
=1bTb
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
librsb-1.3.0.2.tar.gz
Normal file
3
librsb-1.3.0.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:18c6fc443fa1cfd2a8110f7d4b88d5bbcb493b9e85b3a62014b8bb57a848e04f
|
||||||
|
size 4472747
|
6
librsb-1.3.0.2.tar.gz.asc
Normal file
6
librsb-1.3.0.2.tar.gz.asc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iF0EABECAB0WIQQdu1Va6jWbiq8Ma4jg5mnI7xJYuAUCY6ICvgAKCRDg5mnI7xJY
|
||||||
|
uCOuAJ9X+9Oc8f//Go9SEjT53znPSiPFeACcD4P2FK3gJamY3QTZ64XEawiUwvU=
|
||||||
|
=lfZ8
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 6 15:48:31 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- 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 <jengelh@inai.de>
|
Sat Jul 16 20:13:42 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package librsb
|
# 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
Name: librsb
|
Name: librsb
|
||||||
%define lname librsb0
|
%define lname librsb0
|
||||||
Version: 1.3.0.1
|
Version: 1.3.0.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Shared memory parallel sparse matrix and sparse BLAS library
|
Summary: Shared memory parallel sparse matrix and sparse BLAS library
|
||||||
License: LGPL-3.0-or-later
|
License: LGPL-3.0-or-later
|
||||||
|
8
pun.diff
8
pun.diff
@ -9,11 +9,11 @@ rsb_test_accuracy.c:117:2: warning: dereferencing type-punned pointer will break
|
|||||||
rsb_types.h | 8 ++++----
|
rsb_types.h | 8 ++++----
|
||||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
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.3.0.2.orig/rsb_types.h
|
||||||
+++ librsb-1.2.0-rc6/rsb_types.h
|
+++ librsb-1.3.0.2/rsb_types.h
|
||||||
@@ -375,10 +375,10 @@ extern "C" {
|
@@ -379,10 +379,10 @@ extern "C" {
|
||||||
switch(TYPE) \
|
switch(TYPE) \
|
||||||
{ \
|
{ \
|
||||||
/* supported (double,float,float complex,double complex) */ \
|
/* supported (double,float,float complex,double complex) */ \
|
||||||
|
@ -12,25 +12,27 @@ See https://reproducible-builds.org/ for why this is good.
|
|||||||
configure.ac | 2 ++
|
configure.ac | 2 ++
|
||||||
2 files changed, 4 insertions(+)
|
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.2.orig/configure
|
||||||
+++ librsb-1.3.0.1/configure
|
+++ librsb-1.3.0.2/configure
|
||||||
@@ -27208,7 +27208,9 @@ printf "%s\n" "#define RSB_WANT_IO_LEVEL
|
@@ -26175,9 +26175,11 @@ cat >>confdefs.h <<_ACEOF
|
||||||
printf "%s\n" "#define RSB_USER_SET_MEM_HIERARCHY_INFO \"$RSB_USER_SET_MEM_HIERARCHY_INFO\"" >>confdefs.h
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
+if test "x$memhinfo" = x; then
|
+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
|
+fi
|
||||||
|
|
||||||
|
|
||||||
printf "%s\n" "#define RSB_CONST_MAX_SUPPORTED_THREADS $RSB_CONST_MAX_SUPPORTED_THREADS" >>confdefs.h
|
cat >>confdefs.h <<_ACEOF
|
||||||
Index: librsb-1.3.0.1/configure.ac
|
Index: librsb-1.3.0.2/configure.ac
|
||||||
===================================================================
|
===================================================================
|
||||||
--- librsb-1.3.0.1.orig/configure.ac
|
--- librsb-1.3.0.2.orig/configure.ac
|
||||||
+++ librsb-1.3.0.1/configure.ac
|
+++ librsb-1.3.0.2/configure.ac
|
||||||
@@ -627,7 +627,9 @@ if test "x${detected_memhinfo}" = x -a "
|
@@ -632,7 +632,9 @@ if test "x${detected_memhinfo}" = x -a "
|
||||||
memhinfo="${FALLBACK_MEM_HIERARCHY_INFO}"
|
memhinfo="${FALLBACK_MEM_HIERARCHY_INFO}"
|
||||||
fi
|
fi
|
||||||
AC_SUBST([RSB_USER_SET_MEM_HIERARCHY_INFO],"${memhinfo}")
|
AC_SUBST([RSB_USER_SET_MEM_HIERARCHY_INFO],"${memhinfo}")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user