Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package icmake for openSUSE:Factory checked in at 2023-03-02 23:03:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/icmake (Old) and /work/SRC/openSUSE:Factory/.icmake.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "icmake" Thu Mar 2 23:03:00 2023 rev:14 rq:1068237 version:10.03.00 Changes: -------- --- /work/SRC/openSUSE:Factory/icmake/icmake.changes 2022-11-22 16:09:28.241812946 +0100 +++ /work/SRC/openSUSE:Factory/.icmake.new.31432/icmake.changes 2023-03-02 23:03:20.695392337 +0100 @@ -1,0 +2,6 @@ +Tue Feb 28 15:15:24 UTC 2023 - Martin Liška <mli...@suse.cz> + +- Add gcc-13-fix.patch in order to fix the upstream issue: + https://gitlab.com/fbb-git/icmake/-/issues/5 + +------------------------------------------------------------------- New: ---- gcc-13-fix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ icmake.spec ++++++ --- /var/tmp/diff_new_pack.gOIIVc/_old 2023-03-02 23:03:21.207399656 +0100 +++ /var/tmp/diff_new_pack.gOIIVc/_new 2023-03-02 23:03:21.215399770 +0100 @@ -1,7 +1,7 @@ # # spec file for package icmake # -# 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 @@ -25,6 +25,7 @@ URL: https://gitlab.com/fbb-git/icmake Source: %{URL}/-/archive/%{version}/icmake-%{version}.tar.bz2 Patch1: prevent-double-slash.patch +Patch2: gcc-13-fix.patch BuildRequires: bison BuildRequires: flex BuildRequires: gcc-c++ @@ -38,8 +39,7 @@ that have proven to be useful in program maintenance. %prep -%setup -q -%patch1 -p1 +%autosetup -p1 %build export CXXFLAGS="%{optflags} -std=c++20" ++++++ gcc-13-fix.patch ++++++ diff --git a/icmake/comp/symtab/symtab.h b/icmake/comp/symtab/symtab.h index cea2df3..a57ea2c 100644 --- a/icmake/comp/symtab/symtab.h +++ b/icmake/comp/symtab/symtab.h @@ -3,6 +3,7 @@ #include <string> #include <vector> +#include <cstdint> #include "../exprtype/exprtype.h"