Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package linux_logo for openSUSE:Factory checked in at 2022-02-09 22:04:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/linux_logo (Old) and /work/SRC/openSUSE:Factory/.linux_logo.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "linux_logo" Wed Feb 9 22:04:17 2022 rev:2 rq:952990 version:6.0 Changes: -------- --- /work/SRC/openSUSE:Factory/linux_logo/linux_logo.changes 2020-05-14 23:27:39.133355175 +0200 +++ /work/SRC/openSUSE:Factory/.linux_logo.new.1898/linux_logo.changes 2022-02-09 22:04:20.585630790 +0100 @@ -1,0 +2,5 @@ +Wed Feb 9 11:55:33 UTC 2022 - Bernhard Wiedemann <[email protected]> + +- Add reproducible.patch to sort the file list (boo#1041090) + +------------------------------------------------------------------- New: ---- reproducible.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ linux_logo.spec ++++++ --- /var/tmp/diff_new_pack.NsK7YO/_old 2022-02-09 22:04:21.113631941 +0100 +++ /var/tmp/diff_new_pack.NsK7YO/_new 2022-02-09 22:04:21.121631957 +0100 @@ -23,13 +23,14 @@ License: GPL-2.0-only URL: http://deater.net/weave/vmwprod/linux_logo/ Source: http://deater.net/weave/vmwprod/linux_logo/%{name}-%{version}.tar.gz +Patch0: reproducible.patch %description The Linux logo on the text console, with colors and system information. Contains a number of built-in logos. %prep -%setup -q +%autosetup -p1 %build %configure ++++++ reproducible.patch ++++++ https://github.com/deater/linux_logo/pull/17 commit c3f23ac89189139e1b295a4fef50af336917b5fe Author: Bernhard M. Wiedemann <[email protected]> Date: Fri May 22 12:21:36 2020 +0200 Sort input file list so that logo_config and load_logos.h build in a reproducible way in spite of indeterministic filesystem readdir order See https://reproducible-builds.org/ for why this is good. Index: linux_logo-6.0/Makefile =================================================================== --- linux_logo-6.0.orig/Makefile +++ linux_logo-6.0/Makefile @@ -42,7 +42,7 @@ translations: cd po && $(MAKE) logos-all: logo_config - find ./logos -type f -a ! -name banner.logo -a ! -name classic.logo >> logo_config + find ./logos -type f -a ! -name banner.logo -a ! -name classic.logo | sort >> logo_config $(MAKE) all logo_config:
