guix_mirror_bot pushed a commit to branch kde-team
in repository guix.
commit 60e2527c39cb2b01c397a35d148fe68c9d6ff4f3
Author: Zheng Junjie <[email protected]>
AuthorDate: Mon Jul 21 22:40:45 2025 +0800
gnu: kio: Update to 6.16.0.
* gnu/packages/kde-frameworks.scm (kio): Update to 6.16.0.
[source]: Remove patches.
* gnu/packages/patches/kio-search-smbd-on-PATH.patch: Remove it.
* gnu/local.mk (dist_patch_DATA): Unregister it.
Change-Id: I68401c2fcee4c46111472e1f7b60db11b02097f1
---
gnu/local.mk | 1 -
gnu/packages/kde-frameworks.scm | 5 ++---
gnu/packages/patches/kio-search-smbd-on-PATH.patch | 24 ----------------------
3 files changed, 2 insertions(+), 28 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 4672492c92..6546ecfbaf 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1706,7 +1706,6 @@ dist_patch_DATA =
\
%D%/packages/patches/kiki-missing-includes.patch \
%D%/packages/patches/kiki-portability-64bit.patch \
%D%/packages/patches/kinit-kdeinit-extra_libs.patch \
- %D%/packages/patches/kio-search-smbd-on-PATH.patch \
%D%/packages/patches/kismet-unbundle-boost.patch \
%D%/packages/patches/kitty-fix-wayland-protocols.patch \
%D%/packages/patches/kiwix-desktop-newer-libkiwix.patch \
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 99e9e789ce..bebee71836 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -3929,7 +3929,7 @@ consumption.")
(define-public kio
(package
(name "kio")
- (version "6.13.0")
+ (version "6.16.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -3938,8 +3938,7 @@ consumption.")
name "-" version ".tar.xz"))
(sha256
(base32
- "00x2q9pf52khllnh86h4zcmqxhhfry6y5qkxvg25gws0nz8545a3"))
- (patches (search-patches "kio-search-smbd-on-PATH.patch"))))
+ "131y6ciamibwssb8i5phxxx154mfnw656wzg6kadzgvj1j5bypk7"))))
(build-system cmake-build-system)
(propagated-inputs
(list acl
diff --git a/gnu/packages/patches/kio-search-smbd-on-PATH.patch
b/gnu/packages/patches/kio-search-smbd-on-PATH.patch
deleted file mode 100644
index 5118c9a361..0000000000
--- a/gnu/packages/patches/kio-search-smbd-on-PATH.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From af54a2a37655df26a33bc6783cb472c38f65322f Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel <[email protected]>
-Date: Sun, 28 Mar 2021 10:31:12 -0500
-Subject: [PATCH 1/2] Remove impure smbd search path
-
----
- src/core/ksambashare.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/core/ksambashare.cpp b/src/core/ksambashare.cpp
-index e810ce4..7cfb4e6 100644
---- a/src/core/ksambashare.cpp
-+++ b/src/core/ksambashare.cpp
-@@ -61,7 +61,7 @@ KSambaSharePrivate::~KSambaSharePrivate()
- bool KSambaSharePrivate::isSambaInstalled()
- {
- const bool daemonExists =
-- !QStandardPaths::findExecutable(QStringLiteral("smbd"),
{QStringLiteral("/usr/sbin/"), QStringLiteral("/usr/local/sbin/")}).isEmpty();
-+ !QStandardPaths::findExecutable(QStringLiteral("smbd")).isEmpty();
- if (!daemonExists) {
- qCDebug(KIO_CORE_SAMBASHARE) << "KSambaShare: Could not find smbd";
- }
---
-2.30.1