Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package xdg-desktop-portal-lxqt for
openSUSE:Factory checked in at 2025-10-14 18:08:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-lxqt (Old)
and /work/SRC/openSUSE:Factory/.xdg-desktop-portal-lxqt.new.18484 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xdg-desktop-portal-lxqt"
Tue Oct 14 18:08:58 2025 rev:8 rq:1311233 version:1.2.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/xdg-desktop-portal-lxqt/xdg-desktop-portal-lxqt.changes
2025-04-22 17:26:42.115099842 +0200
+++
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-lxqt.new.18484/xdg-desktop-portal-lxqt.changes
2025-10-14 18:10:42.388855479 +0200
@@ -1,0 +2,6 @@
+Mon Oct 13 20:08:14 UTC 2025 - Christophe Marin <[email protected]>
+
+- Add upstream change:
+ * xdg-desktop-portal-lxqt-qt610.patch
+
+-------------------------------------------------------------------
New:
----
xdg-desktop-portal-lxqt-qt610.patch
----------(New B)----------
New:- Add upstream change:
* xdg-desktop-portal-lxqt-qt610.patch
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xdg-desktop-portal-lxqt.spec ++++++
--- /var/tmp/diff_new_pack.5GUHpD/_old 2025-10-14 18:10:42.992880951 +0200
+++ /var/tmp/diff_new_pack.5GUHpD/_new 2025-10-14 18:10:42.992880951 +0200
@@ -1,7 +1,7 @@
#
# spec file for package xdg-desktop-portal-lxqt
#
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,8 @@
Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.xz
Source1:
%{url}/releases/download/%{version}/%{name}-%{version}.tar.xz.asc
Source2: %{name}.keyring
+# PATCH-FIX-UPSTREAM -- Qt 610 compat
+Patch0: xdg-desktop-portal-lxqt-qt610.patch
BuildRequires: cmake >= 3.18.0
BuildRequires: gcc-c++
BuildRequires: pkgconfig
@@ -44,7 +46,7 @@
functionality needed by nearly all of its components.
%prep
-%autosetup
+%autosetup -p1
%build
%cmake_qt6
++++++ xdg-desktop-portal-lxqt-qt610.patch ++++++
>From 15fae3c57a8e8149ef19a8c919f5728016390e3f Mon Sep 17 00:00:00 2001
From: Chiitoo <[email protected]>
Date: Wed, 8 Oct 2025 19:48:31 +0300
Subject: [PATCH] cmake: fix build with Qt 6.10 (#50)
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 b1e6103..22fe8af 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -18,6 +18,11 @@ find_package(Qt6 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
DBus
Widgets
)
+
+if (Qt6Gui_VERSION VERSION_GREATER_EQUAL "6.10.0")
+ find_package(Qt6GuiPrivate REQUIRED)
+endif()
+
find_package(fm-qt6 ${LIBFMQT_MINIMUM_VERSION} REQUIRED)
find_package(KF6WindowSystem ${KF6_MIN_VERSION} REQUIRED)