Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libqt5-qtlocation for 
openSUSE:Factory checked in at 2023-03-04 22:42:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libqt5-qtlocation (Old)
 and      /work/SRC/openSUSE:Factory/.libqt5-qtlocation.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libqt5-qtlocation"

Sat Mar  4 22:42:20 2023 rev:53 rq:1069151 version:5.15.8+kde3

Changes:
--------
--- /work/SRC/openSUSE:Factory/libqt5-qtlocation/libqt5-qtlocation.changes      
2023-01-11 14:33:25.128676144 +0100
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtlocation.new.31432/libqt5-qtlocation.changes
   2023-03-04 22:42:28.763539738 +0100
@@ -1,0 +2,6 @@
+Fri Mar  3 11:19:13 UTC 2023 - Fabian Vogt <fv...@suse.com>
+
+- Add patch to fix build with GCC 13 (boo#1207470):
+  * 0001-Add-some-missing-cstdint-inclusions-872.patch
+
+-------------------------------------------------------------------

New:
----
  0001-Add-some-missing-cstdint-inclusions-872.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libqt5-qtlocation.spec ++++++
--- /var/tmp/diff_new_pack.kap6xZ/_old  2023-03-04 22:42:29.919545295 +0100
+++ /var/tmp/diff_new_pack.kap6xZ/_new  2023-03-04 22:42:29.923545315 +0100
@@ -34,6 +34,8 @@
 URL:            https://www.qt.io
 Source:         %{tar_version}.tar.xz
 Source1:        baselibs.conf
+# PATCH-FIX-UPSTREAM 
https://invent.kde.org/qt/qt/qtlocation-mapboxgl/-/merge_requests/1
+Patch1:         0001-Add-some-missing-cstdint-inclusions-872.patch
 BuildRequires:  fdupes
 BuildRequires:  libicu-devel
 BuildRequires:  libqt5-qtbase-private-headers-devel >= %{real_version}

++++++ 0001-Add-some-missing-cstdint-inclusions-872.patch ++++++
>From d8054f1efa0b97b291a6f8c7fff9090b0fd4328e Mon Sep 17 00:00:00 2001
From: Fabian Vogt <fv...@suse.de>
Date: Fri, 3 Mar 2023 11:39:58 +0100
Subject: [PATCH] Add some missing cstdint inclusions (#872)

GCC 13 removed some indirect inclusions of cstdint which this relied on.
Include it explicitly to fix build errors.
---
 include/mbgl/util/geometry.hpp | 2 ++
 include/mbgl/util/string.hpp   | 1 +
 src/mbgl/gl/stencil_mode.hpp   | 2 ++
 3 files changed, 5 insertions(+)

diff --git a/src/3rdparty/mapbox-gl-native/include/mbgl/util/geometry.hpp 
b/src/3rdparty/mapbox-gl-native/include/mbgl/util/geometry.hpp
index a28c59a47d..283ec7dbbe 100644
--- a/src/3rdparty/mapbox-gl-native/include/mbgl/util/geometry.hpp
+++ b/src/3rdparty/mapbox-gl-native/include/mbgl/util/geometry.hpp
@@ -1,5 +1,7 @@
 #pragma once
 
+#include <cstdint>
+
 #include <mapbox/geometry/geometry.hpp>
 #include <mapbox/geometry/point_arithmetic.hpp>
 #include <mapbox/geometry/for_each_point.hpp>
diff --git a/src/3rdparty/mapbox-gl-native/include/mbgl/util/string.hpp 
b/src/3rdparty/mapbox-gl-native/include/mbgl/util/string.hpp
index 13498ccb92..2f6acb6410 100644
--- a/src/3rdparty/mapbox-gl-native/include/mbgl/util/string.hpp
+++ b/src/3rdparty/mapbox-gl-native/include/mbgl/util/string.hpp
@@ -3,6 +3,7 @@
 #include <sstream>
 #include <string>
 #include <cassert>
+#include <cstdint>
 #include <cstdlib>
 #include <exception>
 
diff --git a/src/3rdparty/mapbox-gl-native/src/mbgl/gl/stencil_mode.hpp 
b/src/3rdparty/mapbox-gl-native/src/mbgl/gl/stencil_mode.hpp
index bc959c9a73..fd00370f88 100644
--- a/src/3rdparty/mapbox-gl-native/src/mbgl/gl/stencil_mode.hpp
+++ b/src/3rdparty/mapbox-gl-native/src/mbgl/gl/stencil_mode.hpp
@@ -1,5 +1,7 @@
 #pragma once
 
+#include <cstdint>
+
 #include <mbgl/util/variant.hpp>
 
 namespace mbgl {
-- 
2.39.2

Reply via email to