Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fcitx5-anthy for openSUSE:Leap:16.0 checked in at 2025-07-15 17:55:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:16.0/fcitx5-anthy (Old) and /work/SRC/openSUSE:Leap:16.0/.fcitx5-anthy.new.7373 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fcitx5-anthy" Tue Jul 15 17:55:02 2025 rev:2 rq:1293337 version:5.1.7 Changes: -------- --- /work/SRC/openSUSE:Leap:16.0/fcitx5-anthy/fcitx5-anthy.changes 2025-03-19 11:42:45.175721198 +0100 +++ /work/SRC/openSUSE:Leap:16.0/.fcitx5-anthy.new.7373/fcitx5-anthy.changes 2025-07-15 17:55:39.495901610 +0200 @@ -1,0 +2,20 @@ +Sun Jun 22 03:42:44 UTC 2025 - Marguerite Su <i...@marguerite.su> + +- update to 5.1.7 + * Convert all table in default_tables into std:array + * Use more utf8::MakeStringViewRange instead of utf8_string_substr + * Port to StandardPaths + +------------------------------------------------------------------- +Wed Jan 29 06:51:02 UTC 2025 - Marguerite Su <i...@marguerite.su> + +- update to 5.1.6 + * Fix nicola key timeout accuracy + +------------------------------------------------------------------- +Sun Jan 5 06:05:06 UTC 2025 - Marguerite Su <i...@marguerite.su> + +- update to 5.1.5 + * translation update + +------------------------------------------------------------------- Old: ---- fcitx5-anthy-5.1.4.tar.zst New: ---- fcitx5-anthy-5.1.7.tar.zst ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fcitx5-anthy.spec ++++++ --- /var/tmp/diff_new_pack.Av8GUu/_old 2025-07-15 17:55:39.727911301 +0200 +++ /var/tmp/diff_new_pack.Av8GUu/_new 2025-07-15 17:55:39.727911301 +0200 @@ -1,7 +1,7 @@ # # spec file for package fcitx5-anthy # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: fcitx5-anthy -Version: 5.1.4 +Version: 5.1.7 Release: 0 Summary: Anthy Wrapper for Fcitx5 License: GPL-2.0-or-later @@ -28,7 +28,11 @@ BuildRequires: cmake BuildRequires: extra-cmake-modules BuildRequires: fcitx5-devel +%if 0%{?suse_version} >= 1550 BuildRequires: gcc-c++ +%else +BuildRequires: gcc13-c++ +%endif BuildRequires: hicolor-icon-theme BuildRequires: pkgconfig BuildRequires: zstd @@ -48,6 +52,9 @@ %autopatch -p1 %build +%if 0%{?suse_version} < 1550 +export CXX=%{_bindir}/g++-13 +%endif %cmake %make_build ++++++ fcitx5-anthy-5.1.4.tar.zst -> fcitx5-anthy-5.1.7.tar.zst ++++++ ++++ 14603 lines of diff (skipped) ++++++ fcitx5-anthy-leap15.5.patch ++++++ --- /var/tmp/diff_new_pack.Av8GUu/_old 2025-07-15 17:55:39.995922495 +0200 +++ /var/tmp/diff_new_pack.Av8GUu/_new 2025-07-15 17:55:39.995922495 +0200 @@ -1,33 +1,33 @@ -Index: fcitx5-anthy-5.1.4/CMakeLists.txt +Index: fcitx5-anthy-5.1.7/CMakeLists.txt =================================================================== ---- fcitx5-anthy-5.1.4.orig/CMakeLists.txt -+++ fcitx5-anthy-5.1.4/CMakeLists.txt -@@ -11,7 +11,7 @@ include(ECMUninstallTarget) - option(ENABLE_TEST "Build Test" On) - option(ENABLE_COVERAGE "Build the project with gcov support (Need ENABLE_TEST=On)" Off) +--- fcitx5-anthy-5.1.7.orig/CMakeLists.txt ++++ fcitx5-anthy-5.1.7/CMakeLists.txt +@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.6) --find_package(Fcitx5Core 5.1.2 REQUIRED) -+find_package(Fcitx5Core 5.0.18 REQUIRED) - find_package(Fcitx5Module REQUIRED COMPONENTS Clipboard) - find_package(Gettext REQUIRED) - find_package(PkgConfig REQUIRED) -Index: fcitx5-anthy-5.1.4/src/engine.cpp + project(fcitx5-anthy VERSION 5.1.7) + +-set(REQUIRED_FCITX_VERSION 5.1.13) ++set(REQUIRED_FCITX_VERSION 5.0.18) + find_package(ECM 1.0.0 REQUIRED) + set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) + include(FeatureSummary) +Index: fcitx5-anthy-5.1.7/src/engine.cpp =================================================================== ---- fcitx5-anthy-5.1.4.orig/src/engine.cpp -+++ fcitx5-anthy-5.1.4/src/engine.cpp -@@ -276,7 +276,7 @@ AnthyEngine::AnthyEngine(fcitx::Instance +--- fcitx5-anthy-5.1.7.orig/src/engine.cpp ++++ fcitx5-anthy-5.1.7/src/engine.cpp +@@ -294,7 +294,7 @@ AnthyEngine::AnthyEngine(fcitx::Instance FCITX_ANTHY_INFO() << "Anthy: " << msg; }, 0); -- if constexpr (fcitx::isAndroid() || fcitx::isApple()) { -+ /*if constexpr (fcitx::isAndroid() || fcitx::isApple()) { - const auto &sp = fcitx::StandardPath::global(); - std::string anthy_conf = sp.locate(fcitx::StandardPath::Type::Data, - "anthy/anthy-unicode.conf"); -@@ -292,7 +292,7 @@ AnthyEngine::AnthyEngine(fcitx::Instance +- if constexpr (fcitx::isAndroid() || fcitx::isApple() || ++ /*if constexpr (fcitx::isAndroid() || fcitx::isApple() || + fcitx::isEmscripten()) { + const auto &sp = fcitx::StandardPaths::global(); + std::string anthy_conf = sp.locate(fcitx::StandardPathsType::Data, +@@ -311,7 +311,7 @@ AnthyEngine::AnthyEngine(fcitx::Instance anthy_conf_override( "XDG_CONFIG_HOME", - sp.userDirectory(fcitx::StandardPath::Type::Data).c_str()); + sp.userDirectory(fcitx::StandardPathsType::Data).string().c_str()); - } + }*/ if (anthy_init()) {