Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kakoune for openSUSE:Factory checked in at 2023-04-11 15:54:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kakoune (Old) and /work/SRC/openSUSE:Factory/.kakoune.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kakoune" Tue Apr 11 15:54:42 2023 rev:24 rq:1078450 version:2022.10.31 Changes: -------- --- /work/SRC/openSUSE:Factory/kakoune/kakoune.changes 2022-10-31 10:45:20.297046769 +0100 +++ /work/SRC/openSUSE:Factory/.kakoune.new.19717/kakoune.changes 2023-04-11 15:54:43.518057324 +0200 @@ -1,0 +2,6 @@ +Sun Apr 2 12:00:45 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Add upstream bug fix patch: Fix new gcc errors for missing types. + * 894e44fdbff4221549d358faa4a73ea43e1283a5.patch + +------------------------------------------------------------------- New: ---- 894e44fdbff4221549d358faa4a73ea43e1283a5.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kakoune.spec ++++++ --- /var/tmp/diff_new_pack.Jfiusp/_old 2023-04-11 15:54:44.026060258 +0200 +++ /var/tmp/diff_new_pack.Jfiusp/_new 2023-04-11 15:54:44.030060280 +0200 @@ -1,7 +1,7 @@ # # spec file for package kakoune # -# 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 @@ -24,6 +24,7 @@ Group: Productivity/Text/Editors URL: https://kakoune.org/ Source: https://github.com/mawww/kakoune/releases/download/v%{version}/kakoune-%{version}.tar.bz2 +Patch: https://github.com/mawww/kakoune/commit/894e44fdbff4221549d358faa4a73ea43e1283a5.patch BuildRequires: asciidoc BuildRequires: fdupes BuildRequires: gcc-c++ >= 12 ++++++ 894e44fdbff4221549d358faa4a73ea43e1283a5.patch ++++++ >From 894e44fdbff4221549d358faa4a73ea43e1283a5 Mon Sep 17 00:00:00 2001 From: ioh <m...@sdf.org> Date: Tue, 28 Feb 2023 19:36:44 -0800 Subject: [PATCH] Fix new gcc errors for missing types. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Errors when building with gcc 13: ranked_match.hh:10:21: error: âuint64_tâ does not name a type 10 | using UsedLetters = uint64_t; | ^~~~~~~~ --- src/keys.hh | 2 ++ src/ranked_match.hh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/keys.hh b/src/keys.hh index 0af1a5a8f9..ccafe336d3 100644 --- a/src/keys.hh +++ b/src/keys.hh @@ -9,6 +9,8 @@ #include "unicode.hh" #include "vector.hh" +#include <cstdint> + namespace Kakoune { diff --git a/src/ranked_match.hh b/src/ranked_match.hh index ec7fe626cb..62d6b8f033 100644 --- a/src/ranked_match.hh +++ b/src/ranked_match.hh @@ -4,6 +4,8 @@ #include "string.hh" #include "meta.hh" +#include <cstdint> + namespace Kakoune {