Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package netcdf for openSUSE:Factory checked in at 2021-01-30 13:56:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/netcdf (Old) and /work/SRC/openSUSE:Factory/.netcdf.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "netcdf" Sat Jan 30 13:56:24 2021 rev:61 rq:867730 version:4.7.4 Changes: -------- --- /work/SRC/openSUSE:Factory/netcdf/netcdf.changes 2020-12-09 22:22:27.867738856 +0100 +++ /work/SRC/openSUSE:Factory/.netcdf.new.28504/netcdf.changes 2021-01-30 13:57:30.422340249 +0100 @@ -1,0 +2,6 @@ +Fri Jan 29 14:21:02 UTC 2021 - Egbert Eich <e...@suse.com> + +- Define-byteswap-functions-before-use.patch: + Define byteswap() functions before use (bsc#1181523). + +------------------------------------------------------------------- New: ---- Define-byteswap-functions-before-use.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ netcdf.spec ++++++ --- /var/tmp/diff_new_pack.ShuQDE/_old 2021-01-30 13:57:30.918342585 +0100 +++ /var/tmp/diff_new_pack.ShuQDE/_new 2021-01-30 13:57:30.922342604 +0100 @@ -1,7 +1,7 @@ # # spec file for package netcdf # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -421,6 +421,7 @@ Source1: nc-config.1.gz Patch0: Fix-logging-argument.patch Patch1: get_filter_info-get-correct-number-of-filter-elements.patch +Patch2: Define-byteswap-functions-before-use.patch BuildRequires: gawk BuildRequires: libtool BuildRequires: m4 ++++++ Define-byteswap-functions-before-use.patch ++++++ From: Egbert Eich <e...@suse.com> Date: Fri Jan 29 15:08:00 2021 +0100 Subject: Define byteswap() functions before use Patch-mainline: Not yet Git-commit: d35804c423112c496f7c6b0785b646875866b91c References: This fixes the build on System-z. Signed-off-by: Egbert Eich <e...@suse.com> --- netcdf-c-4.7.4/libdispatch/dfilter.c | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/libdispatch/dfilter.c b/netcdf-c-4.7.4/libdispatch/dfilter.c index 8938464..0e490a3 100644 --- a/libdispatch/dfilter.c +++ b/libdispatch/dfilter.c @@ -40,6 +40,10 @@ Unified filter related code /* Forward */ static int gettype(const int q0, const int q1, int* unsignedp); +#ifdef WORDS_BIGENDIAN +static void byteswap8(unsigned char* mem); +static void byteswap4(unsigned char* mem); +#endif const struct LegalFormat { const char* tag;