Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package openucx for openSUSE:Factory checked in at 2023-01-17 17:34:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/openucx (Old) and /work/SRC/openSUSE:Factory/.openucx.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openucx" Tue Jan 17 17:34:47 2023 rev:24 rq:1058681 version:1.13.1 Changes: -------- --- /work/SRC/openSUSE:Factory/openucx/openucx.changes 2022-10-10 18:44:39.642881333 +0200 +++ /work/SRC/openSUSE:Factory/.openucx.new.32243/openucx.changes 2023-01-17 17:34:59.653069853 +0100 @@ -1,0 +2,5 @@ +Mon Jan 16 09:45:05 UTC 2023 - Andreas Schwab <sch...@suse.de> + +- openucx-s390x-support.patch: fix use of clz builtin for 64-bit value + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openucx.spec ++++++ --- /var/tmp/diff_new_pack.w3rqnV/_old 2023-01-17 17:35:00.293073566 +0100 +++ /var/tmp/diff_new_pack.w3rqnV/_new 2023-01-17 17:35:00.301073612 +0100 @@ -1,7 +1,7 @@ # # spec file for package openucx # -# 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 ++++++ openucx-s390x-support.patch ++++++ --- /var/tmp/diff_new_pack.w3rqnV/_old 2023-01-17 17:35:00.333073798 +0100 +++ /var/tmp/diff_new_pack.w3rqnV/_new 2023-01-17 17:35:00.337073821 +0100 @@ -244,7 +244,7 @@ +{ + if (!n) + return 0; -+ return 63 - __builtin_clz(n); ++ return 63 - __builtin_clzl(n); +} + +static UCS_F_ALWAYS_INLINE unsigned ucs_ffs32(uint32_t n)