Hello community, here is the log from the commit of package webkitgtk for openSUSE:Factory checked in at 2018-04-06 17:49:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/webkitgtk (Old) and /work/SRC/openSUSE:Factory/.webkitgtk.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "webkitgtk" Fri Apr 6 17:49:48 2018 rev:52 rq:593939 version:2.4.11 Changes: -------- --- /work/SRC/openSUSE:Factory/webkitgtk/webkitgtk.changes 2018-03-14 19:36:36.178391238 +0100 +++ /work/SRC/openSUSE:Factory/.webkitgtk.new/webkitgtk.changes 2018-04-06 17:52:19.805450720 +0200 @@ -1,0 +2,5 @@ +Thu Apr 5 18:47:05 UTC 2018 - [email protected] + +- Add webkitgtk-reproducible.patch to make build reproducible (boo#1041090) + +------------------------------------------------------------------- New: ---- webkitgtk-reproducible.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ webkitgtk.spec ++++++ --- /var/tmp/diff_new_pack.90vZXt/_old 2018-04-06 17:52:20.865412397 +0200 +++ /var/tmp/diff_new_pack.90vZXt/_new 2018-04-06 17:52:20.869412252 +0200 @@ -54,6 +54,8 @@ Patch12: webkitgtk-icu59.patch # PATCH-FEATURE-UPSTREAM webkitgtk-python3.patch [email protected] -- Allow to use python 3 to build Patch13: webkitgtk-python3.patch +# PATCH-FIX-UPSTREAM webkitgtk-reproducible.patch [email protected] -- Sort resource list +Patch14: webkitgtk-reproducible.patch BuildRequires: Mesa-devel BuildRequires: bison BuildRequires: chrpath @@ -228,6 +230,7 @@ %patch12 -p1 fi %patch13 -p1 +%patch14 -p1 # FIXME: workaround needed in > 1.7.90 to fix build mkdir -p DerivedSources/webkit mkdir -p DerivedSources/WebCore ++++++ webkitgtk-reproducible.patch ++++++ commit 6b37a6348a1d52f45d3c9028f4ed83c7a3922e8b Author: [email protected] <[email protected]@268f45cc-cd09-0410-ab3c-d52691b4dbfc> Date: Sun Jul 16 12:51:26 2017 +0000 [GTK] Sort inspector GResource manifest to ensure reproducible builds https://bugs.webkit.org/show_bug.cgi?id=174540 Patch by Bernhard M. Wiedemann <[email protected]> on 2017-07-16 Reviewed by Michael Catanzaro. * gtk/generate-inspector-gresource-manifest.py: (get_filenames): sort list of input files git-svn-id: http://svn.webkit.org/repository/webkit/trunk@219546 268f45cc-cd09-0410-ab3c-d52691b4dbfc diff --git a/Tools/gtk/generate-inspector-gresource-manifest.py b/Tools/gtk/generate-inspector-gresource-manifest.py index 03060cfa29..ce23b66938 100755 --- a/Tools/gtk/generate-inspector-gresource-manifest.py +++ b/Tools/gtk/generate-inspector-gresource-manifest.py @@ -28,7 +28,7 @@ def get_filenames(args): filenames = [] for pattern in args: - paths = glob.glob(pattern) + paths = sorted(glob.glob(pattern)) for filename in paths: base_dir_index = filename.rfind(BASE_DIR) if base_dir_index != -1:
