Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package hyprland-qtutils for
openSUSE:Factory checked in at 2025-10-18 18:36:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/hyprland-qtutils (Old)
and /work/SRC/openSUSE:Factory/.hyprland-qtutils.new.18484 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hyprland-qtutils"
Sat Oct 18 18:36:25 2025 rev:6 rq:1312167 version:0.1.5
Changes:
--------
--- /work/SRC/openSUSE:Factory/hyprland-qtutils/hyprland-qtutils.changes
2025-09-15 19:55:04.336559791 +0200
+++
/work/SRC/openSUSE:Factory/.hyprland-qtutils.new.18484/hyprland-qtutils.changes
2025-10-18 18:36:29.502097712 +0200
@@ -1,0 +2,6 @@
+Sat Oct 18 15:01:25 UTC 2025 - Shawn Dunn <[email protected]>
+
+- Add 5ffdfc13ed03df1dae5084468d935f0a3f2c9a4c.patch enables
+ building against Qt 6.10
+
+-------------------------------------------------------------------
New:
----
5ffdfc13ed03df1dae5084468d935f0a3f2c9a4c.patch
----------(New B)----------
New:
- Add 5ffdfc13ed03df1dae5084468d935f0a3f2c9a4c.patch enables
building against Qt 6.10
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ hyprland-qtutils.spec ++++++
--- /var/tmp/diff_new_pack.ZgVDiH/_old 2025-10-18 18:36:29.966117196 +0200
+++ /var/tmp/diff_new_pack.ZgVDiH/_new 2025-10-18 18:36:29.966117196 +0200
@@ -30,17 +30,25 @@
# Adding a Donate Screen like this just feels like crossing a line, and has
been
# Removed.
Patch0: 0001-Remove-donate-screen-module.patch
+
+# PATCH-FIX-UPSTREAM 5ffdfc13ed03df1dae5084468d935f0a3f2c9a4c.patch
+#
https://github.com/hyprwm/hyprland-qtutils/commit/5ffdfc13ed03df1dae5084468d935f0a3f2c9a4c
+Patch1: 5ffdfc13ed03df1dae5084468d935f0a3f2c9a4c.patch
+
BuildRequires: chrpath
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: git-core
-BuildRequires: qt6-waylandclient-private-devel
-BuildRequires: pkgconfig(Qt6Platform)
-BuildRequires: pkgconfig(Qt6Quick)
-BuildRequires: pkgconfig(Qt6QuickControls2)
-BuildRequires: pkgconfig(Qt6WaylandClient)
-BuildRequires: pkgconfig(Qt6Widgets)
+
+BuildRequires: cmake(Qt6Quick)
+BuildRequires: cmake(Qt6QuickControls2)
+BuildRequires: cmake(Qt6Qml)
+BuildRequires: cmake(Qt6WaylandClient)
+BuildRequires: cmake(Qt6WaylandClientPrivate)
+BuildRequires: cmake(Qt6Widgets)
+
BuildRequires: pkgconfig(hyprutils)
+
## MANUAL BEGIN
Requires: hyprland-qt-support
## MANUAL END
++++++ 5ffdfc13ed03df1dae5084468d935f0a3f2c9a4c.patch ++++++
>From 5ffdfc13ed03df1dae5084468d935f0a3f2c9a4c Mon Sep 17 00:00:00 2001
From: VuaTech <[email protected]>
Date: Fri, 12 Sep 2025 12:32:35 -0400
Subject: [PATCH] cmake: Added find_package entry for WaylandClientPrivate
(#19)
---
utils/dialog/CMakeLists.txt | 2 +-
utils/donate-screen/CMakeLists.txt | 2 +-
utils/update-screen/CMakeLists.txt | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/utils/dialog/CMakeLists.txt b/utils/dialog/CMakeLists.txt
index ad7ae44..c3a5915 100644
--- a/utils/dialog/CMakeLists.txt
+++ b/utils/dialog/CMakeLists.txt
@@ -5,7 +5,7 @@ project(hyprland-dialog VERSION ${VER} LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
-find_package(Qt6 6.5 REQUIRED COMPONENTS Widgets Quick QuickControls2
WaylandClient)
+find_package(Qt6 6.5 REQUIRED COMPONENTS Widgets Quick QuickControls2
WaylandClient WaylandClientPrivate)
find_package(PkgConfig REQUIRED)
pkg_check_modules(hyprutils REQUIRED IMPORTED_TARGET hyprutils)
diff --git a/utils/donate-screen/CMakeLists.txt
b/utils/donate-screen/CMakeLists.txt
index ddc7eb5..a1189ff 100644
--- a/utils/donate-screen/CMakeLists.txt
+++ b/utils/donate-screen/CMakeLists.txt
@@ -5,7 +5,7 @@ project(hyprland-donate-screen VERSION ${VER} LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
-find_package(Qt6 6.5 REQUIRED COMPONENTS Widgets Quick QuickControls2
WaylandClient)
+find_package(Qt6 6.5 REQUIRED COMPONENTS Widgets Quick QuickControls2
WaylandClient WaylandClientPrivate)
find_package(PkgConfig REQUIRED)
pkg_check_modules(hyprutils REQUIRED IMPORTED_TARGET hyprutils)
diff --git a/utils/update-screen/CMakeLists.txt
b/utils/update-screen/CMakeLists.txt
index a70edca..78ccab2 100644
--- a/utils/update-screen/CMakeLists.txt
+++ b/utils/update-screen/CMakeLists.txt
@@ -5,7 +5,7 @@ project(hyprland-update-screen VERSION ${VER} LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
-find_package(Qt6 6.5 REQUIRED COMPONENTS Widgets Quick QuickControls2
WaylandClient)
+find_package(Qt6 6.5 REQUIRED COMPONENTS Widgets Quick QuickControls2
WaylandClient WaylandClientPrivate)
find_package(PkgConfig REQUIRED)
pkg_check_modules(hyprutils REQUIRED IMPORTED_TARGET hyprutils)