Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sha3sum for openSUSE:Factory checked in at 2022-04-02 18:20:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sha3sum (Old) and /work/SRC/openSUSE:Factory/.sha3sum.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sha3sum" Sat Apr 2 18:20:58 2022 rev:5 rq:966549 version:1.2.2 Changes: -------- --- /work/SRC/openSUSE:Factory/sha3sum/sha3sum.changes 2021-05-15 23:17:17.640476838 +0200 +++ /work/SRC/openSUSE:Factory/.sha3sum.new.1900/sha3sum.changes 2022-04-02 18:21:16.521780206 +0200 @@ -1,0 +2,7 @@ +Sat Apr 2 15:14:09 UTC 2022 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 1.2.2 + * Add support for new spec error in libkeccak + * Add shake128sum and rawshake128sum + +------------------------------------------------------------------- Old: ---- 1.2.1.tar.gz New: ---- 1.2.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sha3sum.spec ++++++ --- /var/tmp/diff_new_pack.C0AuQC/_old 2022-04-02 18:21:17.005774774 +0200 +++ /var/tmp/diff_new_pack.C0AuQC/_new 2022-04-02 18:21:17.009774729 +0200 @@ -1,7 +1,7 @@ # # spec file for package sha3sum # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: sha3sum -Version: 1.2.1 +Version: 1.2.2 Release: 0 Summary: SHA-3 and Keccak checksum utility License: ISC @@ -42,7 +42,7 @@ %install %make_install PREFIX="%{_prefix}" # packaged via macro -rm -rvf %{buildroot}%{_datadir}/licenses/%{name} +rm -rvf %buildroot/%_datadir/licenses/%name %check %make_build check ++++++ 1.2.1.tar.gz -> 1.2.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sha3sum-1.2.1/common.c new/sha3sum-1.2.2/common.c --- old/sha3sum-1.2.1/common.c 2021-02-18 21:23:21.000000000 +0100 +++ new/sha3sum-1.2.2/common.c 2022-03-25 17:05:00.000000000 +0100 @@ -317,7 +317,7 @@ buf = emalloc(size); for (;;) { - if (ptr + blksize < size) + if (ptr + blksize > size) buf = erealloc(buf, size <<= 1); got = read(fd, buf + ptr, blksize);