From 768c185a7d067dce2de602acd3328f103c4d7908 Mon Sep 17 00:00:00 2001 From: Zheng Junjie Date: Sat, 6 Jul 2024 15:09:54 +0800 Subject: gnu: kdeplasma-addons: Update to 6.1.2. * gnu/packages/kde-plasma.scm (kdeplasma-addons): Update to 6.1.2. [inputs]: Remove plasma-framework and qtdeclarative-5; add kauth, kdbusaddons, kglobalaccel, kxmlgui, libplasma, plasma5support, qt5compat, and qtdeclarative. [arguments]: Set #:qtbase to qtbase. Change-Id: I0043ea40ee59c5d87eefefc02e5de7ec1aceb6ba --- gnu/packages/kde-plasma.scm | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index 9a7008083f..302d24e459 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -515,17 +515,18 @@ KDE Frameworks 5 to better interact with the system.") (define-public kdeplasma-addons (package (name "kdeplasma-addons") - (version "5.27.7") + (version "6.1.2") (source (origin (method url-fetch) (uri (string-append "mirror://kde/stable/plasma/" version "/" name "-" version ".tar.xz")) (sha256 (base32 - "0l7g4lx6y10xfabfcgvh7zb7h08clj0g9yx8ajyg7rzwfa43visi")))) + "1q8jhj9b9sj7bdkr0bvk4grjjrylq86svwvr96knnpicxbjf633c")))) (build-system qt-build-system) (arguments - (list #:phases #~(modify-phases %standard-phases + (list #:qtbase qtbase + #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? inputs #:allow-other-keys) @@ -537,23 +538,29 @@ KDE Frameworks 5 to better interact with the system.") "(converterrunnertest)"))))))) (native-inputs (list extra-cmake-modules tzdata-for-tests)) (inputs (list karchive + kauth kconfig kcoreaddons kdeclarative + kdbusaddons kholidays ki18n kio kcmutils + kglobalaccel + kxmlgui knotifications krunner kservice kunitconversion knewstuff - plasma-framework + libplasma + plasma5support purpose sonnet - ;; qtwebengine-5 ; Optional for online dictionary - qtdeclarative-5)) + qt5compat + ;; qtwebengine ; Optional for online dictionary + qtdeclarative)) (synopsis "Add-ons to improve your Plasma experience") (description "This package provides multiple addons for the Plasma Desktop.") -- cgit v1.2.3 new 'current-service' procedure....* gnu/services/herd.scm (current-service): New procedure, mostly reusing the existing current-services. (current-services): Implement in terms of the above procedure. Maxim Cournoyer 2023-05-30services: herd: "Resolve" transient services only when needed....This allows us to get rid of the "eval root" actions, which in turn would lead to confusing "Evaluating user expression" messages. Fixes <https://issues.guix.gnu.org/55857>. * gnu/services/herd.scm (resolve-transients): In 'values', avoid 'eval-there' call when UNRESOLVED is empty. Ludovic Courtès