Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package barrier for openSUSE:Factory checked in at 2023-03-28 17:50:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/barrier (Old) and /work/SRC/openSUSE:Factory/.barrier.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "barrier" Tue Mar 28 17:50:22 2023 rev:5 rq:1074799 version:2.4.0 Changes: -------- --- /work/SRC/openSUSE:Factory/barrier/barrier.changes 2021-11-17 09:08:18.354078510 +0100 +++ /work/SRC/openSUSE:Factory/.barrier.new.31432/barrier.changes 2023-03-28 17:50:29.615301484 +0200 @@ -1,0 +2,5 @@ +Mon Mar 27 23:53:22 UTC 2023 - Simon Lees <sfl...@suse.de> + +- Fix gcc13 build with fix-build2.patch + +------------------------------------------------------------------- New: ---- fix-build2.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ barrier.spec ++++++ --- /var/tmp/diff_new_pack.meo2TU/_old 2023-03-28 17:50:30.163304128 +0200 +++ /var/tmp/diff_new_pack.meo2TU/_new 2023-03-28 17:50:30.167304147 +0200 @@ -1,7 +1,7 @@ # # spec file for package barrier # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2023 SUSE LLC # Copyright (c) 2018 Christian Mauderer <o...@c-mauderer.de>. # # All modifications and additions to the file contributed by third parties @@ -30,6 +30,8 @@ Source3: barriers.service # https://github.com/debauchee/barrier/issues/1366 Patch0: fix-build.patch +# Required for gcc-13 +Patch1: fix-build2.patch BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: git-core ++++++ fix-build2.patch ++++++ >From d376d23d534e053a160c32ee1170d237a2f3d6bd Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" <c...@musicinmybrain.net> Date: Thu, 26 Jan 2023 09:25:59 -0500 Subject: [PATCH] Add missing #include directives needed for GCC 13 --- src/lib/base/String.h | 1 + src/lib/net/FingerprintData.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/lib/base/String.h b/src/lib/base/String.h index 9c5a53bac4..fa37f8f0dc 100644 --- a/src/lib/base/String.h +++ b/src/lib/base/String.h @@ -18,6 +18,7 @@ #pragma once +#include <cstdint> #include "common/common.h" #include "common/stdstring.h" diff --git a/src/lib/net/FingerprintData.h b/src/lib/net/FingerprintData.h index 938a69538d..522a481353 100644 --- a/src/lib/net/FingerprintData.h +++ b/src/lib/net/FingerprintData.h @@ -18,6 +18,7 @@ #ifndef BARRIER_LIB_NET_FINGERPRINT_DATA_H #define BARRIER_LIB_NET_FINGERPRINT_DATA_H +#include <cstdint> #include <string> #include <vector>