Hello community, here is the log from the commit of package OpenRGB for openSUSE:Factory checked in at 2020-11-19 12:00:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/OpenRGB (Old) and /work/SRC/openSUSE:Factory/.OpenRGB.new.5913 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "OpenRGB" Thu Nov 19 12:00:30 2020 rev:2 rq:849273 version:0.4 Changes: -------- --- /work/SRC/openSUSE:Factory/OpenRGB/OpenRGB.changes 2020-11-17 21:25:42.953403428 +0100 +++ /work/SRC/openSUSE:Factory/.OpenRGB.new.5913/OpenRGB.changes 2020-11-23 10:21:05.784726335 +0100 @@ -1,0 +2,5 @@ +Wed Nov 18 06:37:05 UTC 2020 - Bernhard Wiedemann <bwiedem...@suse.com> + +- Add reproducible.patch to override build date (boo#1047218) + +------------------------------------------------------------------- New: ---- reproducible.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ OpenRGB.spec ++++++ --- /var/tmp/diff_new_pack.uHG9bu/_old 2020-11-23 10:21:06.468727108 +0100 +++ /var/tmp/diff_new_pack.uHG9bu/_new 2020-11-23 10:21:06.472727112 +0100 @@ -27,6 +27,8 @@ Patch1: OpenRGB-use_system_libs.patch # PATCH-FIX-UPSTREAM 0001-Fix-build-on-powerpc-and-related.patch Patch2: 0001-Fix-build-on-powerpc-and-related.patch +# PATCH-FIX-UPSTREAM reproducible.patch +Patch3: reproducible.patch BuildRequires: gcc-c++ BuildRequires: update-desktop-files BuildRequires: pkgconfig(Qt5Core) ++++++ reproducible.patch ++++++ commit f1b7b8ba900db58a1119d8d3e21c1c79de5666aa Author: Stefan Frijters <sfrijt...@gmail.com> Date: Fri Sep 11 09:54:42 2020 +0200 Allow to override build date with SOURCE_DATE_EPOCH in order to make builds reproducible. See https://reproducible-builds.org/ for why this is good and https://reproducible-builds.org/specs/source-date-epoch/ for the definition of this variable. diff --git a/OpenRGB.pro b/OpenRGB.pro index fb4c3ce..f0a5523 100644 --- a/OpenRGB.pro +++ b/OpenRGB.pro @@ -24,7 +24,7 @@ TEMPLATE = app # Automatically generated build information # #-----------------------------------------------------------------------# win32:BUILDDATE = $$system(date /t) -unix:BUILDDATE = $$system(date -R) +unix:BUILDDATE = $$system(date -R -d "@${SOURCE_DATE_EPOCH:-$(date +%s)}") GIT_COMMIT_ID = $$system(git --git-dir $$_PRO_FILE_PWD_/.git --work-tree $$_PRO_FILE_PWD_ rev-parse HEAD) GIT_COMMIT_DATE = $$system(git --git-dir $$_PRO_FILE_PWD_/.git --work-tree $$_PRO_FILE_PWD_ show -s --format=%ci HEAD) GIT_BRANCH = $$system(git --git-dir $$_PRO_FILE_PWD_/.git --work-tree $$_PRO_FILE_PWD_ rev-parse --abbrev-ref HEAD) _______________________________________________ openSUSE Commits mailing list -- commit@lists.opensuse.org To unsubscribe, email commit-le...@lists.opensuse.org List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette List Archives: https://lists.opensuse.org/archives/list/commit@lists.opensuse.org