File: add-missing-build-dependency.patch

package info (click to toggle)
plasma-welcome 6.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,996 kB
  • sloc: cpp: 907; xml: 308; python: 69; makefile: 3; sh: 1
file content (23 lines) | stat: -rw-r--r-- 1,180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Description: Build-depend on KNotifications for KNotificationJobUiDelegate 
 src/kded/daemon.cpp:11 and and src/controller.cpp:20 are using
 `KNotificationJobUiDelegate` so `plasma-welcome` should build depend on
 `KNotifications`.
 .
 This would also match what is already set in [.kde-ci.yml](.kde-ci.yml#L14).
Author: Aurélien COUDERC <coucouf@debian.org>
Forwarded: https://invent.kde.org/plasma/plasma-welcome/-/merge_requests/188
Last-Update: 2025-01-18
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/

--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -51,7 +51,7 @@
 )
 
 find_package(Qt6 ${QT_MIN_VERSION} REQUIRED COMPONENTS Core Gui Network Qml QuickControls2 Svg)
-find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS Kirigami Config CoreAddons ConfigWidgets DBusAddons I18n KIO NewStuff Service WindowSystem DBusAddons KCMUtils Svg JobWidgets)
+find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS Kirigami Config CoreAddons ConfigWidgets DBusAddons I18n KIO NewStuff Notifications Service WindowSystem DBusAddons KCMUtils Svg JobWidgets)
 find_package(Plasma ${PROJECT_DEP_VERSION} REQUIRED)
 find_package(KF6KirigamiAddons 1.2.0 REQUIRED)