Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lnav for openSUSE:Factory checked in at 2023-04-14 13:13:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lnav (Old) and /work/SRC/openSUSE:Factory/.lnav.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lnav" Fri Apr 14 13:13:18 2023 rev:6 rq:1079269 version:0.11.1 Changes: -------- --- /work/SRC/openSUSE:Factory/lnav/lnav.changes 2022-10-14 15:42:31.227916512 +0200 +++ /work/SRC/openSUSE:Factory/.lnav.new.19717/lnav.changes 2023-04-14 13:13:31.763718700 +0200 @@ -1,0 +2,6 @@ +Tue Apr 11 11:24:08 UTC 2023 - Bjørn Lie <[email protected]> + +- Add e25d3e3c69fcf57bbaec2333846b9a43c4d1fc90.patch: Fix build + with GCC 13 (add missing <cstdint> include). + +------------------------------------------------------------------- New: ---- e25d3e3c69fcf57bbaec2333846b9a43c4d1fc90.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lnav.spec ++++++ --- /var/tmp/diff_new_pack.tlCMV9/_old 2023-04-14 13:13:32.235721400 +0200 +++ /var/tmp/diff_new_pack.tlCMV9/_new 2023-04-14 13:13:32.239721423 +0200 @@ -2,7 +2,7 @@ # # spec file for package lnav # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # Copyright (c) 2010-2013 Pascal Bleser <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -35,6 +35,8 @@ #Git-Clone: https://github.com/tstack/lnav.git Source: https://github.com/tstack/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz Source1: lnav.desktop +# PATCH-FIX-UPSTREAM e25d3e3c69fcf57bbaec2333846b9a43c4d1fc90.patch -- Fix build with GCC 13 (add missing <cstdint> include) +Patch: https://github.com/tstack/lnav/commit/e25d3e3c69fcf57bbaec2333846b9a43c4d1fc90.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: libcurl-devel ++++++ e25d3e3c69fcf57bbaec2333846b9a43c4d1fc90.patch ++++++ >From e25d3e3c69fcf57bbaec2333846b9a43c4d1fc90 Mon Sep 17 00:00:00 2001 From: Sam James <[email protected]> Date: Sat, 21 Jan 2023 18:11:20 +0000 Subject: [PATCH] Fix build with GCC 13 (add missing <cstdint> include) GCC 13 (as usual for new compiler releases) shuffles around some internal includes and so <cstdint> is no longer transitively included. Explicitly include <cstdint> for uint32_t. Signed-off-by: Sam James <[email protected]> --- src/base/lnav_log.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/base/lnav_log.hh b/src/base/lnav_log.hh index 8fd8e36c0..a0837e348 100644 --- a/src/base/lnav_log.hh +++ b/src/base/lnav_log.hh @@ -32,6 +32,7 @@ #ifndef lnav_log_hh #define lnav_log_hh +#include <cstdint> #include <string> #include <stdio.h>
