Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lxqt-panel for openSUSE:Factory checked in at 2025-10-14 18:09:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lxqt-panel (Old) and /work/SRC/openSUSE:Factory/.lxqt-panel.new.18484 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lxqt-panel" Tue Oct 14 18:09:00 2025 rev:40 rq:1311234 version:2.2.2 Changes: -------- --- /work/SRC/openSUSE:Factory/lxqt-panel/lxqt-panel.changes 2025-06-23 15:07:16.490744617 +0200 +++ /work/SRC/openSUSE:Factory/.lxqt-panel.new.18484/lxqt-panel.changes 2025-10-14 18:10:43.920920085 +0200 @@ -1,0 +2,6 @@ +Mon Oct 13 19:34:12 UTC 2025 - Christophe Marin <[email protected]> + +- Add upstream change: + * lxqt-panel-qt610.patch + +------------------------------------------------------------------- New: ---- lxqt-panel-qt610.patch ----------(New B)---------- New:- Add upstream change: * lxqt-panel-qt610.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lxqt-panel.spec ++++++ --- /var/tmp/diff_new_pack.4Ly8kH/_old 2025-10-14 18:10:44.556946907 +0200 +++ /var/tmp/diff_new_pack.4Ly8kH/_new 2025-10-14 18:10:44.560947074 +0200 @@ -34,6 +34,8 @@ #PATCH-FIX-UPSTREAM 0003-use-wlroots-backend-with-unknown-compositors.patch #https://github.com/lxqt/lxqt-panel/pull/2161 Patch2: 0003-use-wlroots-backend-with-unknown-compositors.patch +# PATCH-FIX-UPSTREAM -- Qt 6.10 compat +Patch3: lxqt-panel-qt610.patch BuildRequires: cmake >= 3.5.0 BuildRequires: fdupes BuildRequires: gcc-c++ ++++++ lxqt-panel-qt610.patch ++++++ >From fce8cd99a1de0e637e8539c4d8ac68832a40fa6d Mon Sep 17 00:00:00 2001 From: Chiitoo <[email protected]> Date: Wed, 8 Oct 2025 19:45:28 +0300 Subject: [PATCH] cmake: fix build with Qt 6.10 (#2306) The 'Qt6FooPrivate' targets have been split into separate CMake files in Qt 6.9, and require a 'find_package(Qt6FooPrivate)' call starting with Qt 6.10. See also: https://bugreports.qt.io/browse/QTBUG-87776 --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 241166ad4..ecb283c82 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,6 +42,11 @@ find_package(lxqt-menu-data ${LXQT_MINIMUM_VERSION} REQUIRED) find_package(LayerShellQt REQUIRED) +if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0") + find_package(Qt6GuiPrivate REQUIRED) + find_package(Qt6WaylandClientPrivate REQUIRED) +endif() + # Patch Version set(LXQT_PANEL_PATCH_VERSION 2) set(LXQT_PANEL_VERSION ${LXQT_MAJOR_VERSION}.${LXQT_MINOR_VERSION}.${LXQT_PANEL_PATCH_VERSION})
