From 9173c7a4032a50d52e28ed6079d78a8a2b5bc387 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Wed, 1 Oct 2025 09:03:40 +0530 Subject: [PATCH] gnu: kio-zeroconf: Move to kde-internet.scm. * gnu/packages/kde.scm (kio-zeroconf): Remove variable. * gnu/packages/kde-internet.scm (kio-zeroconf): New variable. Change-Id: I5d7445a3bf957099a516f0bf7aebd8a908d09103 --- gnu/packages/kde-internet.scm | 28 ++++++++++++++++++++++++++++ gnu/packages/kde.scm | 29 ----------------------------- 2 files changed, 28 insertions(+), 29 deletions(-) diff --git a/gnu/packages/kde-internet.scm b/gnu/packages/kde-internet.scm index 72d7f463479..9164b20ba68 100644 --- a/gnu/packages/kde-internet.scm +++ b/gnu/packages/kde-internet.scm @@ -155,6 +155,34 @@ This package is part of the KDE networking module.") (license ;; GPL for programs, LGPL for libraries, FDL for documentation (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))) +(define-public kio-zeroconf + (package + (name "kio-zeroconf") + (version "24.12.1") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" version + "/src/kio-zeroconf-" version ".tar.xz")) + (sha256 + (base32 "1ngn1iz4nybix7wshjsddvlm69mdvj8pis63yiyk5p3aiv0h2axl")))) + (build-system qt-build-system) + (native-inputs + (list extra-cmake-modules)) + (inputs + (list kdbusaddons kdnssd ki18n kio)) + (arguments (list #:qtbase qtbase + #:tests? #f + #:configure-flags + #~(list "-DQT_MAJOR_VERSION=6"))) + (home-page "https://apps.kde.org/kio_zeroconf/") + (synopsis "DNS-SD Service Discovery Monitor") + (description "Adds an entry to Dolphin's Network page to show local +services such as printers which advertise themselves with DNSSD (called Avahi +or Bonjour by other projects).") + (license ;; GPL for programs, LGPL for libraries, FDL for documentation + (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))) + (define-public konversation (package (name "konversation") diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index f725518eca3..a09748e4ffb 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -1837,35 +1837,6 @@ PostScript, PDF, RAW, Mobipocket, and Blender files.") picture metadata as EXIF/IPTC and XMP.") (license license:gpl2+))) -(define-public kio-zeroconf - (package - (name "kio-zeroconf") - (version "24.12.1") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://kde/stable/release-service/" version - "/src/kio-zeroconf-" version ".tar.xz")) - (sha256 - (base32 "1ngn1iz4nybix7wshjsddvlm69mdvj8pis63yiyk5p3aiv0h2axl")))) - (build-system qt-build-system) - (native-inputs - (list extra-cmake-modules)) - (inputs - (list kdbusaddons kdnssd ki18n kio)) - (arguments (list #:qtbase qtbase - #:tests? #f - #:configure-flags - #~(list "-DQT_MAJOR_VERSION=6"))) - (home-page "https://apps.kde.org/kio_zeroconf/") - (synopsis "DNS-SD Service Discovery Monitor") - (description "Adds an entry to Dolphin's Network page to show local -services such as printers which advertise themselves with DNSSD (called Avahi -or Bonjour by other projects).") - (license ;; GPL for programs, LGPL for libraries, FDL for documentation - (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))) - - (define-public kuserfeedback ;; FIXME: Try to reduce data collection and ensure transmission i disabled by default. ;; FIXME: Check https://www.reddit.com/r/kde/comments/f7ojg9 for insights