From 395cd45b18103e0ada358045a050b1e43969617a Mon Sep 17 00:00:00 2001 From: pluskalm <> Date: Jul 19 2022 15:34:48 +0000 Subject: Update acarsdec to version 3.6 / rev 4 via SR 990242 https://build.opensuse.org/request/show/990242 by user pluskalm + RBrownFactory --- diff --git a/.files b/.files index 58d7f0c..9a98239 100644 Binary files a/.files and b/.files differ diff --git a/.rev b/.rev index d6b0afd..ecec355 100644 --- a/.rev +++ b/.rev @@ -23,4 +23,12 @@ 989852 + + 9eafef712efe8e6c4bb0a9fef9751059 + 3.6 + + RBrownFactory + + 990242 + diff --git a/acarsdec.changes b/acarsdec.changes index 25c3158..a138ece 100644 --- a/acarsdec.changes +++ b/acarsdec.changes @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Tue Jul 19 06:48:35 UTC 2022 - Bernhard Wiedemann + +- Add reproducible.patch to avoid compile-time CPU-detection (boo#1100677) + +------------------------------------------------------------------- Sun Jul 17 12:09:15 UTC 2022 - Martin Hauke - Update to version 3.6 diff --git a/acarsdec.spec b/acarsdec.spec index ebfbc97..8dec677 100644 --- a/acarsdec.spec +++ b/acarsdec.spec @@ -25,6 +25,7 @@ License: GPL-2.0-or-later 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 @@ It comes with a database backend : acarsserv to store receved acars messages. %prep %setup -q -n %{name}-%{name}-%{version} +%patch0 -p1 %build %cmake \ diff --git a/reproducible.patch b/reproducible.patch new file mode 100644 index 0000000..6aba991 --- /dev/null +++ b/reproducible.patch @@ -0,0 +1,20 @@ +Date: 2022-07-19 +Author: Bernhard M. Wiedemann + +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 ) +