Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ibmswtpm2 for openSUSE:Factory checked in at 2022-10-11 18:01:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ibmswtpm2 (Old) and /work/SRC/openSUSE:Factory/.ibmswtpm2.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ibmswtpm2" Tue Oct 11 18:01:38 2022 rev:10 rq:1007929 version:1682 Changes: -------- --- /work/SRC/openSUSE:Factory/ibmswtpm2/ibmswtpm2.changes 2020-09-04 11:14:18.831097127 +0200 +++ /work/SRC/openSUSE:Factory/.ibmswtpm2.new.2275/ibmswtpm2.changes 2022-10-11 18:04:01.473936868 +0200 @@ -1,0 +2,18 @@ +Sat Sep 24 08:23:47 UTC 2022 - Dirk M??ller <dmuel...@suse.com> + +- update to 1682: + * tpm: Fix cast in BnSetBit. + * tpm2: Fix size check in CryptSecretDecrypt + * tpm: Port Windows code for OpenSSL 3.0 + * tpm: Update to openssl 3.0.2 + * tpm: Add command and handle tracing + * tpm: Update for openssl 3.0.1 + * tpm: Add ECC encrypt and decrypt commands + * Fix compilation on RISC-V + * PlatformSvc: return error on control socket failure + * main: set a return code if StartTcpServer fails + * tpm: Add all updates to TPM specification 164. +- drop ibmswtpm2-fix-ppc32.patch (upstream) +- makefile.patch: refresh + +------------------------------------------------------------------- Old: ---- ibmswtpm2-fix-ppc32.patch ibmtpm1637.tar.gz New: ---- ibmtpm1682.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ibmswtpm2.spec ++++++ --- /var/tmp/diff_new_pack.VRnwvF/_old 2022-10-11 18:04:01.973937676 +0200 +++ /var/tmp/diff_new_pack.VRnwvF/_new 2022-10-11 18:04:01.981937689 +0200 @@ -1,7 +1,7 @@ # # spec file for package ibmswtpm2 # -# Copyright (c) 2020 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,25 +17,22 @@ %define suite ibmtss - %ifarch ppc ppc64 s390 s390x %define extra_ccflags -DBIG_ENDIAN_TPM=1 %else %define extra_ccflags "" %endif - Name: ibmswtpm2 -Version: 1637 +Version: 1682 Release: 0 Summary: IBM's Software TPM 2.0 License: BSD-3-Clause Group: Development/Tools/Other URL: https://sourceforge.net/projects/ibmswtpm2 Source: https://sourceforge.net/projects/ibmswtpm2/files/ibmtpm%{version}.tar.gz -Patch: makefile.patch +Patch0: makefile.patch Patch1: ibmswtpm2-TcpServerPosix-Fix-use-of-uninitialized-value.patch Patch2: ibmswtpm2-NVDynamic-Fix-use-of-uninitialized-value.patch -Patch3: ibmswtpm2-fix-ppc32.patch BuildRequires: libopenssl-devel >= 1.0 %description ++++++ ibmswtpm2-TcpServerPosix-Fix-use-of-uninitialized-value.patch ++++++ --- /var/tmp/diff_new_pack.VRnwvF/_old 2022-10-11 18:04:02.005937728 +0200 +++ /var/tmp/diff_new_pack.VRnwvF/_new 2022-10-11 18:04:02.009937734 +0200 @@ -11,13 +11,13 @@ src/TcpServerPosix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -diff --git a/src/TcpServerPosix.c b/src/TcpServerPosix.c -index 20fcb29352a2..5bcc47aaeac7 100644 ---- a/src/TcpServerPosix.c -+++ b/src/TcpServerPosix.c -@@ -278,7 +278,8 @@ PlatformServer( +Index: ibmswtpm2-1682/src/TcpServerPosix.c +=================================================================== +--- ibmswtpm2-1682.orig/src/TcpServerPosix.c ++++ ibmswtpm2-1682/src/TcpServerPosix.c +@@ -264,7 +264,8 @@ PlatformServer( { - UINT32 actHandle; + uint32_t actHandle; ok = ReadUINT32(s, &actHandle); - WriteUINT32(s, _rpc__ACT_GetSignaled(actHandle)); + if(ok) @@ -25,7 +25,4 @@ break; } default: --- -2.26.2 - ++++++ ibmtpm1637.tar.gz -> ibmtpm1682.tar.gz ++++++ ++++ 8301 lines of diff (skipped) ++++++ makefile.patch ++++++ --- /var/tmp/diff_new_pack.VRnwvF/_old 2022-10-11 18:04:02.205938051 +0200 +++ /var/tmp/diff_new_pack.VRnwvF/_new 2022-10-11 18:04:02.209938058 +0200 @@ -1,6 +1,8 @@ ---- ibmswtpm2-1637.orig/src/makefile 2019-12-19 23:35:43.000000000 +0100 -+++ ibmswtpm2-1637/src/makefile 2020-08-17 18:56:34.607550789 +0200 -@@ -40,10 +40,10 @@ +Index: ibmswtpm2-1682/src/makefile +=================================================================== +--- ibmswtpm2-1682.orig/src/makefile ++++ ibmswtpm2-1682/src/makefile +@@ -40,11 +40,11 @@ CC = /usr/bin/gcc @@ -8,13 +10,14 @@ +CCFLAGS += -fno-strict-aliasing -fno-aggressive-loop-optimizations -Wno-unused-result \ -Wmissing-declarations -Wmissing-prototypes -Wnested-externs \ - -Werror -Wsign-compare \ -- -c -ggdb -O0 \ + -Werror -Wsign-compare -Wno-unused-value -Wno-aggressive-loop-optimizations \ -+ -c -ggdb \ + -Wno-deprecated-declarations \ +- -c -ggdb -O0 \ ++ -c -ggdb \ -DTPM_POSIX \ -D_POSIX_ \ -DTPM_NUVOTON -@@ -54,7 +54,7 @@ +@@ -55,7 +55,7 @@ CCFLAGS = -Wall \ # --coverage \ # -fprofile-arcs -ftest-coverage