Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package hfst-ospell for SUSE:ALP:Workbench checked in at 2023-04-06 14:02:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/SUSE:ALP:Workbench.OBS/hfst-ospell (Old) and /work/SRC/SUSE:ALP:Workbench.OBS/.hfst-ospell.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hfst-ospell" Thu Apr 6 14:02:49 2023 rev:2 rq: version:0.5.1 Changes: -------- --- /work/SRC/SUSE:ALP:Workbench.OBS/hfst-ospell/hfst-ospell.changes 2023-04-04 12:02:31.363550255 +0200 +++ /work/SRC/SUSE:ALP:Workbench.OBS/.hfst-ospell.new.19717/hfst-ospell.changes 2023-04-06 14:02:50.106296821 +0200 @@ -1,0 +2,5 @@ +Thu Mar 9 07:04:33 UTC 2023 - Martin Liška <mli...@suse.cz> + +- Add upstream patch gcc13-fix.patch in order to support GCC 13. + +------------------------------------------------------------------- New: ---- gcc13-fix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ hfst-ospell.spec ++++++ --- /var/tmp/diff_new_pack.Ad1bx7/_old 2023-04-06 14:02:50.526299238 +0200 +++ /var/tmp/diff_new_pack.Ad1bx7/_new 2023-04-06 14:02:50.530299262 +0200 @@ -1,7 +1,7 @@ # # spec file for package hfst-ospell # -# Copyright (c) 2020 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 @@ -28,6 +28,7 @@ Source0: https://github.com/hfst/%{name}/releases/download/v%{version}/%{_name}-%{version}.tar.gz Source99: baselibs.conf Patch0: gcc10-Fix-a-typo-in-wide-string-conversion-function-49.patch +Patch1: gcc13-fix.patch BuildRequires: gcc-c++ BuildRequires: libtool BuildRequires: pkgconfig @@ -58,6 +59,7 @@ %prep %setup -q -n %{_name}-%{version} %patch0 -p1 +%patch1 -p1 %build # disable libxml++ as upstream requires version 2.6 ++++++ gcc13-fix.patch ++++++ >From 7481bffbf622bc9aee3547183fbe8db9cf8b22ce Mon Sep 17 00:00:00 2001 From: Tino Didriksen <m...@tinodidriksen.com> Date: Sun, 3 Jul 2022 23:16:52 +0200 Subject: [PATCH] Include cstdint (fixes #57) --- hfst-ol.h | 1 + 1 file changed, 1 insertion(+) diff --git a/hfst-ol.h b/hfst-ol.h index 0a83ec5..ee59b14 100644 --- a/hfst-ol.h +++ b/hfst-ol.h @@ -28,6 +28,7 @@ #include <climits> #include <cstdio> #include <cstdlib> +#include <cstdint> #include <iostream> #include <cstring> #include <set>