Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ovmf for openSUSE:Factory checked in at 2022-02-26 17:01:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ovmf (Old) and /work/SRC/openSUSE:Factory/.ovmf.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ovmf" Sat Feb 26 17:01:41 2022 rev:72 rq:957502 version:202111 Changes: -------- --- /work/SRC/openSUSE:Factory/ovmf/ovmf.changes 2022-01-05 13:39:57.617535378 +0100 +++ /work/SRC/openSUSE:Factory/.ovmf.new.1958/ovmf.changes 2022-02-26 17:01:41.895532240 +0100 @@ -1,0 +2,5 @@ +Thu Feb 17 02:14:26 UTC 2022 - Bernhard Wiedemann <[email protected]> + +- Sort file lists for reproducible build results + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ovmf.spec ++++++ --- /var/tmp/diff_new_pack.uFxsIS/_old 2022-02-26 17:01:42.743532374 +0100 +++ /var/tmp/diff_new_pack.uFxsIS/_new 2022-02-26 17:01:42.743532374 +0100 @@ -287,7 +287,7 @@ # copy the debug symbols mkdir -p $out_dir pushd Build/OvmfX64/DEBUG_GCC*/X64/ - find . -mindepth 2 -type f -name "*.debug" -exec cp --parents -a {} $abs_path \; + find . -mindepth 2 -type f -name "*.debug" -print0 | sort -z | xargs -i -0 cp --parents -a {} $abs_path cp --parents -a DebugPkg/GdbSyms/GdbSyms/DEBUG/GdbSyms.dll $abs_path build_path=`pwd` popd @@ -335,8 +335,8 @@ # Collect the source mkdir -p source/ovmf-x86_64 # TODO get the source list from debug files -src_list=`find Build/OvmfX64/DEBUG_GCC*/X64/ -mindepth 1 -maxdepth 1 -type d -exec basename {} \;` -find $src_list \( -name "*.c" -o -name "*.h" \) -type f -exec cp --parents -a {} source/ovmf-x86_64 \; +src_list=`find Build/OvmfX64/DEBUG_GCC*/X64/ -mindepth 1 -maxdepth 1 -type d -print0 | sort -z | xargs -0 -i basename {}` +find $src_list \( -name "*.c" -o -name "*.h" \) -type f -print0 | sort -z | xargs -0 -i cp --parents -a {} source/ovmf-x86_64 find source/ovmf-x86_64 -name *.c -type f -exec chmod 0644 {} \; %endif
