Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package f2c for openSUSE:Factory checked in at 2023-07-18 22:08:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/f2c (Old) and /work/SRC/openSUSE:Factory/.f2c.new.3193 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "f2c" Tue Jul 18 22:08:34 2023 rev:21 rq:1099212 version:20210928 Changes: -------- --- /work/SRC/openSUSE:Factory/f2c/f2c.changes 2022-12-02 13:13:55.738113091 +0100 +++ /work/SRC/openSUSE:Factory/.f2c.new.3193/f2c.changes 2023-07-18 22:08:59.039277339 +0200 @@ -1,0 +2,5 @@ +Tue Jul 18 07:50:08 UTC 2023 - Andreas Schwab <[email protected]> + +- riscv-no-fpu-excp.patch: RISC-V does not support any FPU exceptions + +------------------------------------------------------------------- New: ---- riscv-no-fpu-excp.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ f2c.spec ++++++ --- /var/tmp/diff_new_pack.ljmPAf/_old 2023-07-18 22:08:59.719281140 +0200 +++ /var/tmp/diff_new_pack.ljmPAf/_new 2023-07-18 22:08:59.723281163 +0200 @@ -1,7 +1,7 @@ # # spec file for package f2c # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -34,6 +34,7 @@ Patch0: f2c-20110801.patch Patch1: libf2c-20110801-format-security.patch Patch2: f2c-20180821.patch +Patch3: riscv-no-fpu-excp.patch BuildRequires: tcsh BuildRequires: unzip @@ -64,6 +65,7 @@ %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 # Set library soversion sed -i "s/@SOVER@/%{sover}/" libf2c/makefile.u ++++++ riscv-no-fpu-excp.patch ++++++ Index: f2c-20210928/libf2c/uninit.c =================================================================== --- f2c-20210928.orig/libf2c/uninit.c +++ f2c-20210928/libf2c/uninit.c @@ -231,7 +231,7 @@ ieee0(Void) } #endif /* mips */ -#ifdef __linux__ +#if defined __linux__ && !defined __riscv #define IEEE0_done #include "fpu_control.h"
