Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package hfst-ospell for openSUSE:Factory checked in at 2023-03-11 18:22:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/hfst-ospell (Old) and /work/SRC/openSUSE:Factory/.hfst-ospell.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hfst-ospell" Sat Mar 11 18:22:51 2023 rev:7 rq:1070386 version:0.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/hfst-ospell/hfst-ospell.changes 2020-03-31 17:32:14.536260380 +0200 +++ /work/SRC/openSUSE:Factory/.hfst-ospell.new.31432/hfst-ospell.changes 2023-03-11 18:22:52.794517860 +0100 @@ -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.6zfYkV/_old 2023-03-11 18:22:53.278520383 +0100 +++ /var/tmp/diff_new_pack.6zfYkV/_new 2023-03-11 18:22:53.282520404 +0100 @@ -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>