[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
118/373: gnu: libksysguard: Update to 6.1.2.
From: |
guix-commits |
Subject: |
118/373: gnu: libksysguard: Update to 6.1.2. |
Date: |
Mon, 8 Jul 2024 08:04:34 -0400 (EDT) |
z572 pushed a commit to branch kde-team
in repository guix.
commit 5ac687567d1fd3745ce84cf0227846991cd71f34
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Thu May 2 23:12:19 2024 +0800
gnu: libksysguard: Update to 6.1.2.
* gnu/packages/kde-plasma.scm (libksysguard): Update to 6.1.2.
[source]: Remvoe patches.
[inputs]: Remove plasma-framework, qtbase-5, qtdeclarative-5, qtscript,
qtwebchannel-5, qtwebengine-5, and qtx11extras; add libplasma,
qtdeclarative, qtwebchannel, and qtwebengine.
[native-inputs]: Remove qttools-5; add qttools.
[arguments]: Set #:qtbase to qtbase.
* gnu/packages/patches/libksysguard-qdiriterator-follow-symlinks.patch:
Remove it.
* gnu/local.mk (dist_patch_DATA): Unregister it.
Change-Id: Ic5b88315da7682dcd47ec19894b8ed88b87d6688
---
gnu/local.mk | 1 -
gnu/packages/kde-plasma.scm | 32 ++++++++++------------
...libksysguard-qdiriterator-follow-symlinks.patch | 24 ----------------
3 files changed, 15 insertions(+), 42 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 752cf5b4d2..ab635e1ca6 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1636,7 +1636,6 @@ dist_patch_DATA =
\
%D%/packages/patches/libofa-ftbfs-2.diff \
%D%/packages/patches/libotr-test-auth-fix.patch \
%D%/packages/patches/libksieve-Fix-missing-link-libraries.patch \
- %D%/packages/patches/libksysguard-qdiriterator-follow-symlinks.patch \
%D%/packages/patches/libmad-armv7-thumb-pt1.patch \
%D%/packages/patches/libmad-armv7-thumb-pt2.patch \
%D%/packages/patches/libmad-length-check.patch \
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index b617b95eb8..63d7dd99c3 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -1090,17 +1090,16 @@ basic needs and easy to configure for those who want
special setups.")
(define-public libksysguard
(package
(name "libksysguard")
- (version "5.27.7")
+ (version "6.1.2")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/plasma/" version
"/libksysguard-" version ".tar.xz"))
- (patches (search-patches
"libksysguard-qdiriterator-follow-symlinks.patch"))
(sha256
- (base32 "066bjar4105bfyry6ni7nnikz66bqzy5nvssz6vm4np3aa996ak8"))))
+ (base32 "1l1fy5i9yxh7fnxfyfsk0hnyd1vfzac336kcfwklkqa7l796hpc0"))))
(native-inputs
- (list bash-minimal extra-cmake-modules pkg-config qttools-5))
+ (list bash-minimal extra-cmake-modules pkg-config qttools))
(inputs
(list kauth
kcompletion
@@ -1120,22 +1119,21 @@ basic needs and easy to configure for those who want
special setups.")
libcap
libpcap
`(,lm-sensors "lib")
- plasma-framework
- qtbase-5
- qtdeclarative-5
- qtscript
- qtwebchannel-5
- qtwebengine-5
- qtx11extras
+ libplasma
+ qtdeclarative
+ qtwebchannel
+ qtwebengine
zlib))
(build-system qt-build-system)
(arguments
- (list #:phases #~(modify-phases %standard-phases
- (add-after 'unpack 'fix-test
- (lambda* _
- (substitute* "autotests/processtest.cpp"
- (("/bin/sh")
- (which "bash"))))))))
+ (list
+ #:qtbase qtbase
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-test
+ (lambda* _
+ (substitute* "autotests/processtest.cpp"
+ (("/bin/sh")
+ (which "bash"))))))))
(home-page "https://userbase.kde.org/KSysGuard";)
(synopsis "Network enabled task and system monitoring")
(description "KSysGuard can obtain information on system load and
diff --git
a/gnu/packages/patches/libksysguard-qdiriterator-follow-symlinks.patch
b/gnu/packages/patches/libksysguard-qdiriterator-follow-symlinks.patch
deleted file mode 100644
index ec4a34037d..0000000000
--- a/gnu/packages/patches/libksysguard-qdiriterator-follow-symlinks.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 46164a50de4102d02ae9d1d480acdd4b12303db8 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel <ttuegel@gmail.com>
-Date: Wed, 14 Oct 2015 07:07:22 -0500
-Subject: [PATCH] qdiriterator follow symlinks
-
----
- processui/scripting.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/processui/scripting.cpp b/processui/scripting.cpp
-index efed8ff..841761a 100644
---- a/processui/scripting.cpp
-+++ b/processui/scripting.cpp
-@@ -293,7 +293,7 @@ void Scripting::loadContextMenu()
- const QStringList dirs =
- QStandardPaths::locateAll(QStandardPaths::GenericDataLocation,
QStringLiteral("ksysguard/scripts/"), QStandardPaths::LocateDirectory);
- for (const QString &dir : dirs) {
-- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"),
QDir::NoFilter, QDirIterator::Subdirectories);
-+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"),
QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks);
- while (it.hasNext()) {
- scripts.append(it.next());
- }
---
-2.5.2
- 87/373: gnu: Add ksvg., (continued)
- 87/373: gnu: Add ksvg., guix-commits, 2024/07/08
- 80/373: gnu: knewstuff: Update to 6.3.0., guix-commits, 2024/07/08
- 88/373: gnu: Add kstatusnotifieritem., guix-commits, 2024/07/08
- 94/373: gnu: kcmutils: Update to 6.3.0., guix-commits, 2024/07/08
- 96/373: gnu: Add plasma-activities-stats., guix-commits, 2024/07/08
- 97/373: gnu: kdesu: Update to 6.3.0., guix-commits, 2024/07/08
- 98/373: gnu: knotifyconfig: Update to 6.3.0., guix-commits, 2024/07/08
- 102/373: gnu: baloo: Update to 6.3.0., guix-commits, 2024/07/08
- 106/373: gnu: bluedevil: Update to 6.1.2., guix-commits, 2024/07/08
- 116/373: gnu: kpipewire: Update to 6.1.2., guix-commits, 2024/07/08
- 118/373: gnu: libksysguard: Update to 6.1.2.,
guix-commits <=
- 125/373: gnu: drkonqi: Update to 6.1.2., guix-commits, 2024/07/08
- 129/373: gnu: kscreenlocker: Update to 6.1.2., guix-commits, 2024/07/08
- 136/373: gnu: kirigami-addons: Update to 1.3.0., guix-commits, 2024/07/08
- 143/373: gnu: plasma-welcome: Update to 6.1.2., guix-commits, 2024/07/08
- 147/373: gnu: ksystemstats: Update to 6.1.2., guix-commits, 2024/07/08
- 151/373: gnu: discover: Update to 6.1.2., guix-commits, 2024/07/08
- 154/373: gnu: plasma-integration: Update to 6.1.2., guix-commits, 2024/07/08
- 59/373: gnu: knotifications: Update to 6.3.0., guix-commits, 2024/07/08
- 82/373: gnu: kdav: Update to 6.3.0., guix-commits, 2024/07/08
- 91/373: gnu: kwayland: Update to 6.1.2., guix-commits, 2024/07/08