unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#73239] [PATCH v1 0/2] Fix shortcut key issue with xfce4-pulseaudio-plugin
@ 2024-09-13 21:56 Ashvith Shetty
  2024-09-13 21:59 ` [bug#73239] [PATCH v1 1/2] gnu: xfce4-pulseaudio-plugin: Add inputs "keybinder" and "pavucontrol" Ashvith Shetty
  2024-09-13 21:59 ` [bug#73239] [PATCH v1 2/2] gnu: xfce: Remove input "xfce4-volumed-pulse" Ashvith Shetty
  0 siblings, 2 replies; 3+ messages in thread
From: Ashvith Shetty @ 2024-09-13 21:56 UTC (permalink / raw)
  To: 73239; +Cc: Ashvith Shetty

This patch series resolves the issue with media key while using xfce4-pulseaudio-plugin.
Since the media keys work fine now, there's no need to provide xfce4-volumed-pulse as
another input for the xfce metapackage.

Ashvith Shetty (2):
  gnu: xfce4-pulseaudio-plugin: Add inputs "keybinder" and "pavucontrol"
  gnu: xfce: Remove input "xfce4-volumed-pulse"

 gnu/packages/xfce.scm | 108 +++++++++++++++++++++---------------------
 1 file changed, 55 insertions(+), 53 deletions(-)

-- 
2.46.0





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#73239] [PATCH v1 1/2] gnu: xfce4-pulseaudio-plugin: Add inputs "keybinder" and "pavucontrol"
  2024-09-13 21:56 [bug#73239] [PATCH v1 0/2] Fix shortcut key issue with xfce4-pulseaudio-plugin Ashvith Shetty
@ 2024-09-13 21:59 ` Ashvith Shetty
  2024-09-13 21:59 ` [bug#73239] [PATCH v1 2/2] gnu: xfce: Remove input "xfce4-volumed-pulse" Ashvith Shetty
  1 sibling, 0 replies; 3+ messages in thread
From: Ashvith Shetty @ 2024-09-13 21:59 UTC (permalink / raw)
  To: 73239; +Cc: Ashvith Shetty, Ashvith Shetty

* gnu/packages/xfce.scm (xfce4-pulseaudio-plugin)[inputs]: Add the missing inputs "keybinder" and "pavucontrol"

Change-Id: Iab871e33e4821c2631d6ad19759e1d1a0b3af02d
---
 gnu/packages/xfce.scm | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 33b8d59051..8277668f2c 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -504,15 +504,22 @@ (define-public xfce4-pulseaudio-plugin
        (method url-fetch)
        (uri (string-append "https://archive.xfce.org/src/panel-plugins/"
                            "xfce4-pulseaudio-plugin/"
-                           (version-major+minor version) "/"
-                           "xfce4-pulseaudio-plugin-" version ".tar.bz2"))
+                           (version-major+minor version)
+                           "/"
+                           "xfce4-pulseaudio-plugin-"
+                           version
+                           ".tar.bz2"))
        (sha256
         (base32 "0j037wnx0z22nw11mq0y3cnq1srr52zckjap3klj3hirghh2nx5x"))))
     (build-system gnu-build-system)
-    (native-inputs
-     (list intltool pkg-config dbus-glib dbus))
-    (inputs
-     (list exo libnotify libxfce4ui pulseaudio xfce4-panel))
+    (native-inputs (list intltool pkg-config dbus-glib dbus))
+    (inputs (list exo
+                  keybinder
+                  libnotify
+                  libxfce4ui
+                  pavucontrol
+                  pulseaudio
+                  xfce4-panel))
     (home-page "https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/")
     (synopsis "PulseAudio panel plugin for Xfce")
     (description
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#73239] [PATCH v1 2/2] gnu: xfce: Remove input "xfce4-volumed-pulse"
  2024-09-13 21:56 [bug#73239] [PATCH v1 0/2] Fix shortcut key issue with xfce4-pulseaudio-plugin Ashvith Shetty
  2024-09-13 21:59 ` [bug#73239] [PATCH v1 1/2] gnu: xfce4-pulseaudio-plugin: Add inputs "keybinder" and "pavucontrol" Ashvith Shetty
@ 2024-09-13 21:59 ` Ashvith Shetty
  1 sibling, 0 replies; 3+ messages in thread
From: Ashvith Shetty @ 2024-09-13 21:59 UTC (permalink / raw)
  To: 73239; +Cc: Ashvith Shetty, Ashvith Shetty

* gnu/packages/xfce.scm (xfce)[inputs]: Remove input "xfce4-volumed-pulse"

Change-Id: I80a80064c75907b2a1e6e880fab9f1e772921b13
---
 gnu/packages/xfce.scm | 89 ++++++++++++++++++++-----------------------
 1 file changed, 42 insertions(+), 47 deletions(-)

diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 8277668f2c..5ece50b69b 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -1207,61 +1207,56 @@ (define-public xfce
   (package
     (name "xfce")
     (version (package-version xfce4-session))
-    (source #f)
+    (source
+     #f)
     (build-system trivial-build-system)
     (arguments
      '(#:modules ((guix build union))
-       #:builder
-       (begin
-         (use-modules (ice-9 match)
-                      (guix build union))
-         (match %build-inputs
-           (((names . directories) ...)
-            (union-build (assoc-ref %outputs "out")
-                         directories)
-            #t)))))
-    (inputs
-     (list exo
-           garcon
-           adwaita-icon-theme
-           elementary-xfce-icon-theme
-           greybird-gtk-theme
-           hicolor-icon-theme
-           mate-polkit-for-xfce
-           mousepad
-           ristretto
-           shared-mime-info
-           thunar
-           thunar-volman
-           tumbler
-           xfce4-appfinder
-           xfce4-notifyd                          ;for pop-up notifications
-           xfce4-panel
-           xfce4-power-manager
-           xfce4-screenshooter
-           xfce4-session
-           xfce4-settings
-           xfce4-taskmanager
-           xfce4-terminal
-           xfconf
-           xfdesktop
-           xfwm4
-           xfwm4-themes
-           xkill
-           ;; Panel plugins.
-           xfce4-battery-plugin
-           xfce4-clipman-plugin
-           xfce4-pulseaudio-plugin
-           xfce4-volumed-pulse
-           xfce4-xkb-plugin))
+       #:builder (begin
+                   (use-modules (ice-9 match)
+                                (guix build union))
+                   (match %build-inputs
+                     (((names . directories) ...)
+                      (union-build (assoc-ref %outputs "out") directories) #t)))))
+    (inputs (list exo
+                  garcon
+                  adwaita-icon-theme
+                  elementary-xfce-icon-theme
+                  greybird-gtk-theme
+                  hicolor-icon-theme
+                  mate-polkit-for-xfce
+                  mousepad
+                  ristretto
+                  shared-mime-info
+                  thunar
+                  thunar-volman
+                  tumbler
+                  xfce4-appfinder
+                  xfce4-notifyd ;for pop-up notifications
+                  xfce4-panel
+                  xfce4-power-manager
+                  xfce4-screenshooter
+                  xfce4-session
+                  xfce4-settings
+                  xfce4-taskmanager
+                  xfce4-terminal
+                  xfconf
+                  xfdesktop
+                  xfwm4
+                  xfwm4-themes
+                  xkill
+                  ;; Panel plugins.
+                  xfce4-battery-plugin
+                  xfce4-clipman-plugin
+                  xfce4-pulseaudio-plugin
+                  xfce4-xkb-plugin))
     (propagated-inputs
      ;; Default font that applications such as IceCat require.
      (list font-dejavu))
     (native-search-paths
      ;; For finding panel and thunar plugins.
-     (append
-      (package-native-search-paths xfce4-panel)
-      (package-native-search-paths thunar)))
+     (append (package-native-search-paths xfce4-panel)
+             (package-native-search-paths thunar)))
     (home-page "https://www.xfce.org/")
     (synopsis "Desktop environment (meta-package)")
     (description
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-09-13 22:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-13 21:56 [bug#73239] [PATCH v1 0/2] Fix shortcut key issue with xfce4-pulseaudio-plugin Ashvith Shetty
2024-09-13 21:59 ` [bug#73239] [PATCH v1 1/2] gnu: xfce4-pulseaudio-plugin: Add inputs "keybinder" and "pavucontrol" Ashvith Shetty
2024-09-13 21:59 ` [bug#73239] [PATCH v1 2/2] gnu: xfce: Remove input "xfce4-volumed-pulse" Ashvith Shetty

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).