Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package fastjet-contrib for openSUSE:Factory
checked in at 2022-10-14 15:42:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fastjet-contrib (Old)
and /work/SRC/openSUSE:Factory/.fastjet-contrib.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fastjet-contrib"
Fri Oct 14 15:42:14 2022 rev:5 rq:1010531 version:1.048
Changes:
--------
--- /work/SRC/openSUSE:Factory/fastjet-contrib/fastjet-contrib.changes
2022-01-10 23:53:51.804818016 +0100
+++
/work/SRC/openSUSE:Factory/.fastjet-contrib.new.2275/fastjet-contrib.changes
2022-10-14 15:43:21.043999698 +0200
@@ -1,0 +2,5 @@
+Wed Oct 12 15:09:03 UTC 2022 - Bernhard Wiedemann <[email protected]>
+
+- Add reproducible.patch to sort the file list (boo#1041090)
+
+-------------------------------------------------------------------
New:
----
reproducible.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ fastjet-contrib.spec ++++++
--- /var/tmp/diff_new_pack.UQPL2t/_old 2022-10-14 15:43:21.508000473 +0200
+++ /var/tmp/diff_new_pack.UQPL2t/_new 2022-10-14 15:43:21.512000479 +0200
@@ -24,6 +24,8 @@
License: GPL-2.0-only
URL: https://fastjet.hepforge.org/contrib/
Source:
https://fastjet.hepforge.org/contrib/downloads/fjcontrib-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM - https://github.com/alisw/fastjet/pull/6
+Patch0: reproducible.patch
BuildRequires: fastjet-devel
BuildRequires: gcc-c++
@@ -52,6 +54,7 @@
%prep
%setup -q -n fjcontrib-%{version}
+%patch0 -p1
%build
# %%configure does not work as a few of the args passed to it isn't recognised
by the configure script
++++++ reproducible.patch ++++++
https://github.com/alisw/fastjet/pull/6
>From a921ef877955f14784775c44b52684c025897f78 Mon Sep 17 00:00:00 2001
From: "Bernhard M. Wiedemann" <[email protected]>
Date: Mon, 20 Jan 2020 10:20:49 +0100
Subject: [PATCH 1/2] configure: Nicify
---
fjcontrib/configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fjcontrib/configure b/fjcontrib/configure
index 4883d83..ca43bf8 100755
--- fjcontrib/configure
+++ fjcontrib/configure
@@ -10,8 +10,8 @@
#------------------------------------------------------------------------
# the list of contribs supported by this script
#------------------------------------------------------------------------
-all_contribs=`find . -mindepth 2 -maxdepth 2 -name VERSION -not -print \
- | sed 's/\.\///g;s/\/.*$//g' | grep -v "Template"`
+all_contribs=`find . -mindepth 2 -maxdepth 2 -name VERSION -not -print |
+ sed 's/\.\///g;s/\/.*$//g' | grep -v "Template"`
#------------------------------------------------------------------------
# default values prior to the arg parsing
>From 826fa9e7643f4113355c727a8a26fd44258deefd Mon Sep 17 00:00:00 2001
From: "Bernhard M. Wiedemann" <[email protected]>
Date: Mon, 20 Jan 2020 10:21:33 +0100
Subject: [PATCH 2/2] configure: Sort input file list
so that libfastjetcontribfragile.so builds in a reproducible way
in spite of indeterministic filesystem readdir order.
See https://reproducible-builds.org/ for why this is good.
---
fjcontrib/configure | 1 +
1 file changed, 1 insertion(+)
diff --git a/fjcontrib/configure b/fjcontrib/configure
index ca43bf8..5d88d5d 100755
--- fjcontrib/configure
+++ fjcontrib/configure
@@ -11,6 +11,7 @@
# the list of contribs supported by this script
#------------------------------------------------------------------------
all_contribs=`find . -mindepth 2 -maxdepth 2 -name VERSION -not -print |
+ sort |
sed 's/\.\///g;s/\/.*$//g' | grep -v "Template"`
#------------------------------------------------------------------------