Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kaidan for openSUSE:Factory checked in at 2025-12-03 14:12:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kaidan (Old) and /work/SRC/openSUSE:Factory/.kaidan.new.14147 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kaidan" Wed Dec 3 14:12:56 2025 rev:14 rq:1320891 version:0.13.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kaidan/kaidan.changes 2025-10-08 18:19:41.851440455 +0200 +++ /work/SRC/openSUSE:Factory/.kaidan.new.14147/kaidan.changes 2025-12-03 14:14:15.534949997 +0100 @@ -1,0 +2,6 @@ +Tue Dec 2 18:55:36 UTC 2025 - Christophe Marin <[email protected]> + +- Add upstream change (boo#1254389) + * 0001-Add-dependency-Qt6GuiPrivate-needed-since-Qt-6.10.0.patch + +------------------------------------------------------------------- New: ---- 0001-Add-dependency-Qt6GuiPrivate-needed-since-Qt-6.10.0.patch ----------(New B)---------- New:- Add upstream change (boo#1254389) * 0001-Add-dependency-Qt6GuiPrivate-needed-since-Qt-6.10.0.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kaidan.spec ++++++ --- /var/tmp/diff_new_pack.NkSppa/_old 2025-12-03 14:14:16.194977849 +0100 +++ /var/tmp/diff_new_pack.NkSppa/_new 2025-12-03 14:14:16.194977849 +0100 @@ -28,12 +28,15 @@ Source0: https://download.kde.org/unstable/%{name}/%{version}/%{name}-%{version}.tar.xz Source1: https://download.kde.org/unstable/%{name}/%{version}/%{name}-%{version}.tar.xz.sig Source2: kaidan.keyring +# PATCH-FIX-UPSTREAM +Patch0: 0001-Add-dependency-Qt6GuiPrivate-needed-since-Qt-6.10.0.patch BuildRequires: fdupes BuildRequires: kf6-extra-cmake-modules >= %{qt6_version} # Both Qt 5 and Qt 6 flavors use the same cmake config name, use the -devel package name # BuildRequires: cmake(KQuickImageEditor) BuildRequires: kquickimageeditor6-devel BuildRequires: pkgconfig +BuildRequires: qt6-gui-private-devel >= %{qt6_version} BuildRequires: qt6-declarative-tools >= %{qt6_version} BuildRequires: qt6-sql-sqlite >= %{qt6_version} BuildRequires: cmake(KDSingleApplication-qt6) ++++++ 0001-Add-dependency-Qt6GuiPrivate-needed-since-Qt-6.10.0.patch ++++++ >From 59c310e9581a8e718a34a72755d27c94d6ac27af Mon Sep 17 00:00:00 2001 From: Melvin Keskin <[email protected]> Date: Mon, 13 Oct 2025 21:02:48 +0200 Subject: [PATCH] Add dependency Qt6GuiPrivate needed since Qt 6.10.0 --- CMakeLists.txt | 5 +++++ README.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 027530b..faea08d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,6 +52,11 @@ set(AUTOMOC_MOC_OPTIONS -Muri=${APPLICATION_ID}) # Find packages find_package(Qt6 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Core Concurrent Qml Quick Svg Sql QuickControls2 Xml Multimedia Positioning Location) + +if(Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0" AND NOT WIN32 AND NOT APPLE) + find_package(Qt6GuiPrivate ${QT_MIN_VERSION} REQUIRED NO_MODULE) +endif() + find_package(KF6 ${KF_MIN_VERSION} REQUIRED COMPONENTS KIO Kirigami Prison) if (NOT ANDROID) find_package(KF6 ${KF_MIN_VERSION} OPTIONAL_COMPONENTS Crash) diff --git a/README.md b/README.md index b1f0e53..ab84543 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Kaidan yourself can be found in our [Wiki][wiki]. The following dependencies are needed by Kaidan: -* [Qt][qt-build-sources] >= 6.6.0 - Core | Concurrent | Qml | Quick | Svg | Sql | QuickControls2 | Xml | Multimedia | Positioning | Location +* [Qt][qt-build-sources] >= 6.6.0 - Core | Concurrent | Qml | Quick | Svg | Sql | QuickControls2 | Xml | Multimedia | Positioning | Location | Qt6GuiPrivate (since Qt 6.10.0) * [KDE Frameworks][kf] >= 6.11.0 - [ECM (extra-cmake-modules)][ecm] | [KWindowSystem][kwindowsystem] | [KNotifications][knotifications] (`-DUSE_KNOTIFICATIONS=OFF` to disable) | [KIO][kio] | [Kirigami][kirigami-repo] | [Prison][prison] * [KDSingleApplication][kdsingleapplication] * [Kirigami Addons][kirigami-addons] >= 1.4.0 -- 2.52.0
