Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package opencc for openSUSE:Factory checked in at 2025-04-08 17:50:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/opencc (Old) and /work/SRC/openSUSE:Factory/.opencc.new.1907 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "opencc" Tue Apr 8 17:50:13 2025 rev:26 rq:1267507 version:1.1.9 Changes: -------- --- /work/SRC/openSUSE:Factory/opencc/opencc.changes 2024-10-01 17:11:31.733004126 +0200 +++ /work/SRC/openSUSE:Factory/.opencc.new.1907/opencc.changes 2025-04-08 17:50:43.541224520 +0200 @@ -1,0 +2,5 @@ +Sat Apr 5 14:42:06 UTC 2025 - Friedrich Haubensak <hs...@mail.de> + +- Add opencc-gcc15.patch to fix gcc15 compile time error + +------------------------------------------------------------------- New: ---- opencc-gcc15.patch BETA DEBUG BEGIN: New: - Add opencc-gcc15.patch to fix gcc15 compile time error BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ opencc.spec ++++++ --- /var/tmp/diff_new_pack.SIjH8m/_old 2025-04-08 17:50:44.077246986 +0200 +++ /var/tmp/diff_new_pack.SIjH8m/_new 2025-04-08 17:50:44.081247155 +0200 @@ -24,6 +24,8 @@ Group: System/I18n/Chinese URL: https://github.com/BYVoid/OpenCC Source: https://github.com/BYVoid/OpenCC/archive/ver.%{version}/OpenCC-ver.%{version}.tar.gz +# PATCH-FIX-UPSTREAM +Patch1: opencc-gcc15.patch BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: pkgconfig @@ -74,6 +76,8 @@ %prep %setup -q -n OpenCC-ver.%{version} +%autopatch -p1 + # call python3 with path sed -i \ -e 's:BIN python:BIN /usr/bin/python3:g' \ ++++++ opencc-gcc15.patch ++++++ github.com/BYVoid/OpenCC/pull/934 github.com/BYVoid/OpenCC/commit/72cae18 >From 72cae18cfe4272f2b11c9ec1c44d6af7907abcab Mon Sep 17 00:00:00 2001 From: Peng Wu <alexep...@gmail.com> Date: Thu, 13 Feb 2025 00:15:10 +0800 Subject: [PATCH] Fix build for gcc 15 (#934) Co-authored-by: Peng Wu <p...@redhat.com> --- src/SerializedValues.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SerializedValues.hpp b/src/SerializedValues.hpp index c17210ba7..f7e5bb264 100644 --- a/src/SerializedValues.hpp +++ b/src/SerializedValues.hpp @@ -18,6 +18,8 @@ #pragma once +#include <cstdint> + #include "Common.hpp" #include "SerializableDict.hpp"