Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package acarsdec for openSUSE:Factory checked in at 2022-07-19 17:20:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/acarsdec (Old) and /work/SRC/openSUSE:Factory/.acarsdec.new.1523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "acarsdec" Tue Jul 19 17:20:06 2022 rev:4 rq:990242 version:3.6 Changes: -------- --- /work/SRC/openSUSE:Factory/acarsdec/acarsdec.changes 2022-07-18 18:34:55.321842663 +0200 +++ /work/SRC/openSUSE:Factory/.acarsdec.new.1523/acarsdec.changes 2022-07-19 17:20:38.268468693 +0200 @@ -1,0 +2,5 @@ +Tue Jul 19 06:48:35 UTC 2022 - Bernhard Wiedemann <bwiedem...@suse.com> + +- Add reproducible.patch to avoid compile-time CPU-detection (boo#1100677) + +------------------------------------------------------------------- New: ---- reproducible.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ acarsdec.spec ++++++ --- /var/tmp/diff_new_pack.Z4RSIe/_old 2022-07-19 17:20:38.656469210 +0200 +++ /var/tmp/diff_new_pack.Z4RSIe/_new 2022-07-19 17:20:38.660469215 +0200 @@ -25,6 +25,7 @@ URL: https://github.com/TLeconte/acarsdec #Git-Clone: https://github.com/TLeconte/acarsdec.git Source: https://github.com/TLeconte/%{name}/archive/%{name}-%{version}.tar.gz +Patch0: reproducible.patch BuildRequires: cmake BuildRequires: pkgconfig BuildRequires: pkgconfig(libacars-2) >= 2.0.0 @@ -39,6 +40,7 @@ %prep %setup -q -n %{name}-%{name}-%{version} +%patch0 -p1 %build %cmake \ ++++++ reproducible.patch ++++++ Date: 2022-07-19 Author: Bernhard M. Wiedemann <bwiedemann suse de> Do not let build results depend on the build machine CPU. https://bugzilla.suse.com/show_bug.cgi?id=1100677 Index: acarsdec-acarsdec-3.6/CMakeLists.txt =================================================================== --- acarsdec-acarsdec-3.6.orig/CMakeLists.txt +++ acarsdec-acarsdec-3.6/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required (VERSION 3.2) project (acarsdec C) -add_compile_options(-Ofast -march=native) +add_compile_options(-Ofast) add_executable(acarsdec acars.c acarsdec.c cJSON.c label.c msk.c output.c netout.c fileout.c )