Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libkrunfw for openSUSE:Factory checked in at 2022-09-29 18:13:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkrunfw (Old) and /work/SRC/openSUSE:Factory/.libkrunfw.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkrunfw" Thu Sep 29 18:13:46 2022 rev:7 rq:1006882 version:3.6.3 Changes: -------- --- /work/SRC/openSUSE:Factory/libkrunfw/libkrunfw.changes 2022-06-21 16:32:28.779817125 +0200 +++ /work/SRC/openSUSE:Factory/.libkrunfw.new.2275/libkrunfw.changes 2022-09-29 18:14:48.363425257 +0200 @@ -1,0 +2,21 @@ +Wed Sep 28 17:42:37 UTC 2022 - Dario Faggioli <[email protected]> + +- Update to latest upstream version, v3.6.3 + * Makefile: drop library dependency on install + * Update TSI patch to fix issue in tsi_accept + * Target reproducible builds + * sev: update initrd.gz binary +- Update to latest upstream version, v3.6.0 + * sev: add a utility for generating SEV LMs + * utils: generate SEV-ES measurements + * Update SEV support + * Enable device-mapper (crypt+integrity) and ext4 + * Rebase v5.15.60 +- Update to latest upstream version, v3.3.0 + * Rebase kernel on v5.15.59 +- Update to latest upstream version, v3.2.0 + * Rebase kernel on v5.15.57 +- Update to latest upstream version, v3.1.0 + * Rebase kernel on v5.15.52 + +------------------------------------------------------------------- Old: ---- libkrunfw-3.0.0.tar.gz linux-5.15.47.tar.xz New: ---- libkrunfw-3.6.3.tar.gz linux-5.15.60.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkrunfw.spec ++++++ --- /var/tmp/diff_new_pack.VDHYC0/_old 2022-09-29 18:14:51.947432285 +0200 +++ /var/tmp/diff_new_pack.VDHYC0/_new 2022-09-29 18:14:51.951432292 +0200 @@ -17,13 +17,13 @@ Name: libkrunfw -Version: 3.0.0 +Version: 3.6.3 Release: 0 Summary: A dynamic library bundling a Linux kernel in a convenient storage format License: GPL-2.0-only AND LGPL-2.1-only URL: https://github.com/containers/libkrunfw Source0: https://github.com/containers/libkrunfw/archive/v%{version}.tar.gz#/libkrunfw-%{version}.tar.gz -Source1: https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.15.47.tar.xz +Source1: https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.15.60.tar.xz # libkrunfw is a plugin for us, more than a full-fledged library, # so let's avoid setting up a SONAME etc (which upstream is now doing). Patch1: dont-set-soname-as-it-is-plugin-for-us.patch ++++++ dont-set-soname-as-it-is-plugin-for-us.patch ++++++ --- /var/tmp/diff_new_pack.VDHYC0/_old 2022-09-29 18:14:51.979432347 +0200 +++ /var/tmp/diff_new_pack.VDHYC0/_new 2022-09-29 18:14:51.983432355 +0200 @@ -1,7 +1,7 @@ -diff -Nru libkrunfw-3.0.0_orig/Makefile libkrunfw-3.0.0/Makefile ---- libkrunfw-3.0.0_orig/Makefile 2022-06-17 12:34:59.000000000 +0200 -+++ libkrunfw-3.0.0/Makefile 2022-06-17 17:30:58.478246182 +0200 -@@ -22,14 +22,9 @@ +diff -Nru libkrunfw-3.6.3_orig/Makefile libkrunfw-3.6.3/Makefile +--- libkrunfw-3.6.3_orig/Makefile 2022-08-19 13:08:55.000000000 +0200 ++++ libkrunfw-3.6.3/Makefile 2022-09-28 19:37:01.390294788 +0200 +@@ -27,14 +27,9 @@ KERNEL_BINARY_x86_64 = $(KERNEL_SOURCES)/vmlinux KERNEL_BINARY_aarch64 = $(KERNEL_SOURCES)/arch/arm64/boot/Image @@ -19,20 +19,20 @@ SONAME_Darwin = LIBDIR_Linux = lib64 -@@ -78,7 +73,7 @@ +@@ -83,7 +78,7 @@ endif $(KRUNFW_BINARY_$(OS)): $(KERNEL_C_BUNDLE) $(QBOOT_C_BUNDLE) $(INITRD_C_BUNDLE) - gcc -fPIC -DABI_VERSION=$(ABI_VERSION) -shared $(SONAME_$(OS)) -o $@ $(KERNEL_C_BUNDLE) $(QBOOT_C_BUNDLE) $(INITRD_C_BUNDLE) -+ gcc -fPIC -DABI_VERSION=$(ABI_VERSION) -shared -o $@ $(KERNEL_C_BUNDLE) $(QBOOT_C_BUNDLE) $(INITRD_C_BUNDLE) ++ gcc -fPIC -DABI_VERSION=$(ABI_VERSION) -shared -o $@ $(KERNEL_C_BUNDLE) $(QBOOT_C_BUNDLE) $(INITRD_C_BUNDLE) ifeq ($(OS),Linux) strip $(KRUNFW_BINARY_$(OS)) endif -@@ -86,7 +81,6 @@ - install: $(KRUNFW_BINARY_$(OS)) +@@ -91,7 +86,6 @@ + install: install -d $(DESTDIR)$(PREFIX)/$(LIBDIR_$(OS))/ install -m 755 $(KRUNFW_BINARY_$(OS)) $(DESTDIR)$(PREFIX)/$(LIBDIR_$(OS))/ -- cd $(DESTDIR)$(PREFIX)/$(LIBDIR_$(OS))/ ; ln -s $(KRUNFW_BINARY_$(OS)) $(KRUNFW_SONAME_$(OS)) ; ln -s $(KRUNFW_SONAME_$(OS)) $(KRUNFW_BASE_$(OS)) +- cd $(DESTDIR)$(PREFIX)/$(LIBDIR_$(OS))/ ; ln -sf $(KRUNFW_BINARY_$(OS)) $(KRUNFW_SONAME_$(OS)) ; ln -sf $(KRUNFW_SONAME_$(OS)) $(KRUNFW_BASE_$(OS)) clean: rm -fr $(KERNEL_SOURCES) $(KERNEL_C_BUNDLE) $(QBOOT_C_BUNDLE) $(INITRD_C_BUNDLE) $(KRUNFW_BINARY_$(OS)) ++++++ libkrunfw-3.0.0.tar.gz -> libkrunfw-3.6.3.tar.gz ++++++ ++++ 1621 lines of diff (skipped) ++++++ linux-5.15.47.tar.xz -> linux-5.15.60.tar.xz ++++++ /work/SRC/openSUSE:Factory/libkrunfw/linux-5.15.47.tar.xz /work/SRC/openSUSE:Factory/.libkrunfw.new.2275/linux-5.15.60.tar.xz differ: char 15, line 1
