Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package graphite2 for openSUSE:Factory checked in at 2025-05-06 16:38:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/graphite2 (Old) and /work/SRC/openSUSE:Factory/.graphite2.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "graphite2" Tue May 6 16:38:40 2025 rev:32 rq:1274308 version:1.3.14 Changes: -------- --- /work/SRC/openSUSE:Factory/graphite2/graphite2.changes 2023-09-26 22:23:20.983421698 +0200 +++ /work/SRC/openSUSE:Factory/.graphite2.new.30101/graphite2.changes 2025-05-06 16:39:11.146543692 +0200 @@ -1,0 +2,6 @@ +Sat Apr 12 21:12:51 UTC 2025 - Friedrich Haubensak <[email protected]> + +- add graphite2-1.3.14-gcc15.patch (from upstream PR) to fix + gcc15 compile time error + +------------------------------------------------------------------- New: ---- graphite2-1.3.14-gcc15.patch BETA DEBUG BEGIN: New: - add graphite2-1.3.14-gcc15.patch (from upstream PR) to fix gcc15 compile time error BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ graphite2.spec ++++++ --- /var/tmp/diff_new_pack.A7529s/_old 2025-05-06 16:39:11.646564589 +0200 +++ /var/tmp/diff_new_pack.A7529s/_new 2025-05-06 16:39:11.646564589 +0200 @@ -28,6 +28,7 @@ Source1: baselibs.conf Patch0: graphite2-1.2.0-cmakepath.patch Patch2: link-gcc-shared.diff +Patch3: graphite2-1.3.14-gcc15.patch BuildRequires: cmake BuildRequires: fontconfig-devel BuildRequires: freetype2-devel ++++++ graphite2-1.3.14-gcc15.patch ++++++ https://github.com/silnrsi/graphite/pull/91 >From fb5e7313802a32783cf0a3f1c28880f11e9588a5 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich <[email protected]> Date: Fri, 2 Aug 2024 22:31:44 +0100 Subject: [PATCH] tests/featuremap/featuremaptest.cpp: add missing <stdint.h> include Without the change `graphite` build fails on upcoming `gcc-15` as: tests/featuremap/featuremaptest.cpp:30:15: error: 'uint8_t' was not declared in this scope 30 | std::vector<uint8_t> _ttf; | ^~~~~~~ tests/featuremap/featuremaptest.cpp:16:1: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>' 15 | #include "inc/Face.h" +++ |+#include <cstdint> 16 | #include "inc/FeatureMap.h" --- a/tests/featuremap/featuremaptest.cpp +++ b/tests/featuremap/featuremaptest.cpp @@ -6,6 +6,7 @@ #include <iostream> #include <map> #include <memory> +#include <stdint.h> #include <string> #include <vector>
