GNU bug report logs - #75169
[PATCH] gnu: Allow Plasma 6 to access bluetooth devices in "System Settings"

Previous Next

Package: guix-patches;

Reported by: Karl Hallsby <karl <at> hallsby.com>

Date: Sat, 28 Dec 2024 22:11:02 UTC

Severity: normal

Tags: patch

Done: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75169 in the body.
You can then email your comments to 75169 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#75169; Package guix-patches. (Sat, 28 Dec 2024 22:11:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Karl Hallsby <karl <at> hallsby.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 28 Dec 2024 22:11:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Karl Hallsby <karl <at> hallsby.com>
To: guix-patches <at> gnu.org
Cc: Raven Hallsby <karl <at> hallsby.com>
Subject: [PATCH] gnu: Allow Plasma 6 to access bluetooth devices in "System
 Settings"
Date: Sat, 28 Dec 2024 16:09:51 -0600
From: Raven Hallsby <karl <at> hallsby.com>

* gnu/packages/kde-plasma.scm (bluedevil): Propagate bluez-qt.
* gnu/packages/kde-plasma.scm (plasma): Add bluedevil as input.
* gnu/services/desktop.scm (plasma-dbus-service): Add bluedevil as dbus-based
application.

This adds the Bluetooth section back to KDE Plasma 6's System Settings menu.

Change-Id: If6a740c88e81bac4ccc220e918c17045eaa8e597
---
 gnu/packages/kde-plasma.scm | 6 +++++-
 gnu/services/desktop.scm    | 2 ++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 817126f3e1..241d953e9a 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2020, 2023, 2024 Zheng Junjie <873216071 <at> qq.com>
 ;;; Copyright © 2022 Brendan Tildesley <mail <at> brendan.scot>
 ;;; Copyright © 2022 Petr Hodina <phodina <at> protonmail.com>
+;;; Copyright © 2024 Raven Hallsby <karl <at> hallsby.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -123,9 +124,11 @@ (define-public bluedevil
                   ki18n
                   kio
                   kdeclarative
-                  bluez-qt
                   shared-mime-info
                   qtdeclarative))
+    (propagated-inputs
+     (list
+      bluez-qt))
     (synopsis "Manage the Bluetooth settings from Plasma")
     (description
      "This package provides Bluetooth manager for Plasma Shell.")
@@ -1755,6 +1758,7 @@ (define-public plasma
                              plasma-nm
                              plasma-pa
                              plasma-systemmonitor
+                             bluedevil
                              ;; plasma-thunderbolt ;; waiting for bolt
                              kglobalaccel
                              kglobalacceld
diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm
index 4f679485bc..d99082e3f9 100644
--- a/gnu/services/desktop.scm
+++ b/gnu/services/desktop.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2021, 2022 muradm <mail <at> muradm.net>
 ;;; Copyright © 2023 Bruno Victal <mirai <at> makinata.eu>
 ;;; Copyright © 2023 Zheng Junjie <873216071 <at> qq.com>
+;;; Copyright © 2024 Raven Hallsby <karl <at> hallsby.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1807,6 +1808,7 @@ (define (plasma-dbus-service config)
            "libksysguard"
            "ktexteditor"
            "powerdevil"
+           "bluedevil"
            "kwallet"
            "plasma-firewall"))))
 

base-commit: 5b8c19c2089c18a98eed87a10a303d24ea9666db
-- 
2.46.0





Reply sent to Zheng Junjie <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Wed, 15 Jan 2025 16:55:02 GMT) Full text and rfc822 format available.

Notification sent to Karl Hallsby <karl <at> hallsby.com>:
bug acknowledged by developer. (Wed, 15 Jan 2025 16:55:02 GMT) Full text and rfc822 format available.

Message #10 received at 75169-done <at> debbugs.gnu.org (full text, mbox):

From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
To: Karl Hallsby via Guix-patches via <guix-patches <at> gnu.org>
Cc: 75169-done <at> debbugs.gnu.org, Karl Hallsby <karl <at> hallsby.com>
Subject: Re: [bug#75169] [PATCH] gnu: Allow Plasma 6 to access bluetooth
 devices in "System Settings"
Date: Thu, 16 Jan 2025 00:54:33 +0800
[Message part 1 (text/plain, inline)]
Karl Hallsby via Guix-patches via <guix-patches <at> gnu.org> writes:

> From: Raven Hallsby <karl <at> hallsby.com>
>
> * gnu/packages/kde-plasma.scm (bluedevil): Propagate bluez-qt.
> * gnu/packages/kde-plasma.scm (plasma): Add bluedevil as input.
> * gnu/services/desktop.scm (plasma-dbus-service): Add bluedevil as dbus-based
> application.
>
> This adds the Bluetooth section back to KDE Plasma 6's System Settings menu.
>
> Change-Id: If6a740c88e81bac4ccc220e918c17045eaa8e597
> ---
>  gnu/packages/kde-plasma.scm | 6 +++++-
>  gnu/services/desktop.scm    | 2 ++
>  2 files changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
> index 817126f3e1..241d953e9a 100644
> --- a/gnu/packages/kde-plasma.scm
> +++ b/gnu/packages/kde-plasma.scm
> @@ -7,6 +7,7 @@
>  ;;; Copyright © 2020, 2023, 2024 Zheng Junjie <873216071 <at> qq.com>
>  ;;; Copyright © 2022 Brendan Tildesley <mail <at> brendan.scot>
>  ;;; Copyright © 2022 Petr Hodina <phodina <at> protonmail.com>
> +;;; Copyright © 2024 Raven Hallsby <karl <at> hallsby.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -123,9 +124,11 @@ (define-public bluedevil
>                    ki18n
>                    kio
>                    kdeclarative
> -                  bluez-qt
>                    shared-mime-info
>                    qtdeclarative))
> +    (propagated-inputs
> +     (list
> +      bluez-qt))
>      (synopsis "Manage the Bluetooth settings from Plasma")
>      (description
>       "This package provides Bluetooth manager for Plasma Shell.")
> @@ -1755,6 +1758,7 @@ (define-public plasma
>                               plasma-nm
>                               plasma-pa
>                               plasma-systemmonitor
> +                             bluedevil
>                               ;; plasma-thunderbolt ;; waiting for bolt
>                               kglobalaccel
>                               kglobalacceld
> diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm
> index 4f679485bc..d99082e3f9 100644
> --- a/gnu/services/desktop.scm
> +++ b/gnu/services/desktop.scm
> @@ -17,6 +17,7 @@
>  ;;; Copyright © 2021, 2022 muradm <mail <at> muradm.net>
>  ;;; Copyright © 2023 Bruno Victal <mirai <at> makinata.eu>
>  ;;; Copyright © 2023 Zheng Junjie <873216071 <at> qq.com>
> +;;; Copyright © 2024 Raven Hallsby <karl <at> hallsby.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -1807,6 +1808,7 @@ (define (plasma-dbus-service config)
>             "libksysguard"
>             "ktexteditor"
>             "powerdevil"
> +           "bluedevil"
>             "kwallet"
>             "plasma-firewall"))))
>  
>
> base-commit: 5b8c19c2089c18a98eed87a10a303d24ea9666db
adjust and pushed, closing.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#75169; Package guix-patches. (Wed, 15 Jan 2025 16:56:01 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 13 Feb 2025 12:24:11 GMT) Full text and rfc822 format available.

This bug report was last modified 28 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.