Hello community, here is the log from the commit of package pidentd for openSUSE:Factory checked in at 2018-07-14 20:24:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pidentd (Old) and /work/SRC/openSUSE:Factory/.pidentd.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pidentd" Sat Jul 14 20:24:47 2018 rev:21 rq:622462 version:3.0.19 Changes: -------- --- /work/SRC/openSUSE:Factory/pidentd/pidentd.changes 2018-04-07 20:55:24.637966000 +0200 +++ /work/SRC/openSUSE:Factory/.pidentd.new/pidentd.changes 2018-07-14 20:24:54.136137018 +0200 @@ -1,0 +2,5 @@ +Fri Jul 13 02:51:10 UTC 2018 - [email protected] + +- Add reproducible.patch to drop uname -r from binary (boo#1101107) + +------------------------------------------------------------------- New: ---- reproducible.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pidentd.spec ++++++ --- /var/tmp/diff_new_pack.sbJ8k6/_old 2018-07-14 20:24:54.764138632 +0200 +++ /var/tmp/diff_new_pack.sbJ8k6/_new 2018-07-14 20:24:54.764138632 +0200 @@ -29,6 +29,7 @@ Patch1: 01-legacy.patch Patch2: pidentd-rpmlint-gcc-checks.patch Patch3: pidentd-no-date.patch +Patch4: reproducible.patch BuildRequires: autoconf BuildRequires: libtool @@ -43,6 +44,7 @@ %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %build autoconf ++++++ reproducible.patch ++++++ Author: Bernhard M. Wiedemann <bwiedemann suse de> Date: 2018-07-13 Do not capture build system kernel version in order to make builds reproducible. See https://reproducible-builds.org/ for why this is good. Index: pidentd-3.0.19/src/support.c =================================================================== --- pidentd-3.0.19.orig/src/support.c +++ pidentd-3.0.19/src/support.c @@ -44,7 +44,7 @@ osinfo_get(char *buf) if (uname(&ub) < 0) return NULL; #ifndef _AIX - sprintf(buf, "%s %s", ub.sysname, ub.release); + sprintf(buf, "%s 2.6", ub.sysname); #else sprintf(buf, "%s %s.%s", ub.sysname, ub.version, ub.release); #endif
