Hello community, here is the log from the commit of package gdata-sharp for openSUSE:Factory checked in at 2017-07-19 11:22:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gdata-sharp (Old) and /work/SRC/openSUSE:Factory/.gdata-sharp.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gdata-sharp" Wed Jul 19 11:22:37 2017 rev:16 rq:511186 version:1.4.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/gdata-sharp/gdata-sharp.changes 2017-05-16 14:46:04.147424400 +0200 +++ /work/SRC/openSUSE:Factory/.gdata-sharp.new/gdata-sharp.changes 2017-07-19 12:22:15.205823534 +0200 @@ -1,0 +2,6 @@ +Tue Jul 18 11:40:21 UTC 2017 - [email protected] + +- Add gdata-sharp-reproducible.patch to sort input files + to fix build-compare (boo#1041090) + +------------------------------------------------------------------- New: ---- gdata-sharp-reproducible.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gdata-sharp.spec ++++++ --- /var/tmp/diff_new_pack.xbHE2t/_old 2017-07-19 12:22:15.737748473 +0200 +++ /var/tmp/diff_new_pack.xbHE2t/_new 2017-07-19 12:22:15.741747909 +0200 @@ -35,6 +35,8 @@ Patch1: gdata-sharp-runtime-4.5.patch # PATCH-FIX-OPENSUSE gdata-sharp-find-nunit.patch [email protected] -- Use pkgconfig to find the right parameters to link nunit Patch2: gdata-sharp-find-nunit.patch +# PATCH-FIX-UPSTREAM https://github.com/google/google-gdata/pull/725 +Patch3: gdata-sharp-reproducible.patch %description The GData .NET Client Library provides a library and source code @@ -59,6 +61,7 @@ %if 0%{?suse_version} != 1320 && 0%{?suse_version} != 1310 %patch2 -p1 %endif +%patch3 -p1 %build make PREFIX=%{_prefix} ++++++ gdata-sharp-reproducible.patch ++++++ PATCH-FIX-UPSTREAM https://github.com/google/google-gdata/pull/725 Sort input file list in order to make builds reproducible. See https://reproducible-builds.org/ for why this is good. Index: libgoogle-data-mono-1.4.0.2/Makefile =================================================================== --- libgoogle-data-mono-1.4.0.2.orig/Makefile +++ libgoogle-data-mono-1.4.0.2/Makefile @@ -55,20 +55,20 @@ samples = \ all: $(ALLLIBS) tests $(samples) $(PKGCONFIG_FILES) -core_sources = $(wildcard src/core/*.cs) $(wildcard version/*.cs) -extensions_sources = $(wildcard src/extensions/*.cs) $(wildcard version/*.cs) -gbase_sources = $(wildcard src/gbase/*.cs) $(wildcard version/*.cs) -gcodesearch_sources = $(wildcard src/gcodesearch/*.cs) $(wildcard version/*.cs) -gspreadsheet_sources = $(wildcard src/gspreadsheet/*.cs) $(wildcard version/*.cs) -gcalendar_sources = $(wildcard src/gcalendar/*.cs) $(wildcard version/*.cs) -gacl_sources = $(wildcard src/gacl/*.cs) $(wildcard version/*.cs) -gapps_sources = $(wildcard src/gapps/*.cs) $(wildcard version/*.cs) -gphotos_sources = $(wildcard src/gphotos/*.cs) $(wildcard version/*.cs) -gdocuments_sources = $(wildcard src/gdocuments/*.cs) $(wildcard version/*.cs) -gcontact_sources = $(wildcard src/gcontacts/*.cs) $(wildcard version/*.cs) -youtube_sources = $(wildcard src/youtube/*.cs) $(wildcard version/*.cs) -health_sources = $(wildcard src/ghealth/*.cs) $(wildcard version/*.cs) -blogger_sources = $(wildcard src/blogger/*.cs) $(wildcard version/*.cs) +core_sources = $(sort $(wildcard src/core/*.cs) $(wildcard version/*.cs)) +extensions_sources = $(sort $(wildcard src/extensions/*.cs) $(wildcard version/*.cs)) +gbase_sources = $(sort $(wildcard src/gbase/*.cs) $(wildcard version/*.cs)) +gcodesearch_sources = $(sort $(wildcard src/gcodesearch/*.cs) $(wildcard version/*.cs)) +gspreadsheet_sources = $(sort $(wildcard src/gspreadsheet/*.cs) $(wildcard version/*.cs)) +gcalendar_sources = $(sort $(wildcard src/gcalendar/*.cs) $(wildcard version/*.cs)) +gacl_sources = $(sort $(wildcard src/gacl/*.cs) $(wildcard version/*.cs)) +gapps_sources = $(sort $(wildcard src/gapps/*.cs) $(wildcard version/*.cs)) +gphotos_sources = $(sort $(wildcard src/gphotos/*.cs) $(wildcard version/*.cs)) +gdocuments_sources = $(sort $(wildcard src/gdocuments/*.cs) $(wildcard version/*.cs)) +gcontact_sources = $(sort $(wildcard src/gcontacts/*.cs) $(wildcard version/*.cs)) +youtube_sources = $(sort $(wildcard src/youtube/*.cs) $(wildcard version/*.cs)) +health_sources = $(sort $(wildcard src/ghealth/*.cs) $(wildcard version/*.cs)) +blogger_sources = $(sort $(wildcard src/blogger/*.cs) $(wildcard version/*.cs)) test_sources = $(wildcard src/unittests/*.cs) $(wildcard src/unittests/gbase/*.cs) $(wildcard src/unittests/gapps/*.cs)\ $(wildcard src/unittests/spreadsheets/*.cs) $(wildcard src/unittests/youtube/*.cs) $(wildcard src/version/*cs)\ $(wildcard src/unittests/core/*.cs) $(wildcard src/unittests/picasa/*.cs)
