unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#37571] [PATCH 1/2] gnu: Add keybinder-3.0.
@ 2019-10-01 12:37 Ingo Ruhnke
  2019-10-01 12:37 ` [bug#37572] [PATCH 2/2] gnu: Add xfce4-volumed-pulse Ingo Ruhnke
  2019-10-01 22:34 ` bug#37571: [PATCH 1/2] gnu: Add keybinder-3.0 Danny Milosavljevic
  0 siblings, 2 replies; 4+ messages in thread
From: Ingo Ruhnke @ 2019-10-01 12:37 UTC (permalink / raw)
  To: 37571

* gnu/packages/wm.scm: Add keybinder-3.0 package.
---
 gnu/packages/wm.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index e47979d026..865b1edee1 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -22,6 +22,7 @@
 ;;; Copyright © 2019 Timothy Sample <samplet@ngyro.com>
 ;;; Copyright © 2019 Gábor Boskovits <boskovits@gmail.com>
 ;;; Copyright © 2019 Kyle Andrews <kyle.c.andrews@gmail.com>
+;;; Copyright © 2019 Ingo Ruhnke <grumbel@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1000,6 +1001,34 @@ Keybinder works with GTK-based applications using the X Window System.")
     (home-page "https://github.com/kupferlauncher/keybinder")
     (license license:gpl2+)))
 
+(define-public keybinder-3.0
+  (package
+    (name "keybinder-3.0")
+    (version "0.3.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/kupferlauncher/keybinder"
+                           "/releases/download/" name "-v" version "/" name "-"
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0830ihwnalw59pp1xzrp37dn58n8vwb8zasnm4a1h81v3x7dxqz6"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gtk+" ,gtk+)
+       ("gobject-introspection" ,gobject-introspection)))
+    (native-inputs
+     `(("gtk-doc" ,gtk-doc)
+       ("pkg-config" ,pkg-config)))
+    (synopsis "Library for registering global keyboard shortcuts, Gtk3 version")
+    (description
+     "Keybinder is a library for registering global keyboard shortcuts.
+Keybinder works with GTK-based applications using the X Window System.")
+    (home-page "https://github.com/kupferlauncher/keybinder")
+    (license license:x11)))
+
 (define-public spectrwm
   (package
     (name "spectrwm")
-- 
2.20.1

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

* [bug#37572] [PATCH 2/2] gnu: Add xfce4-volumed-pulse.
  2019-10-01 12:37 [bug#37571] [PATCH 1/2] gnu: Add keybinder-3.0 Ingo Ruhnke
@ 2019-10-01 12:37 ` Ingo Ruhnke
  2019-10-25 10:31   ` bug#37572: " Ludovic Courtès
  2019-10-01 22:34 ` bug#37571: [PATCH 1/2] gnu: Add keybinder-3.0 Danny Milosavljevic
  1 sibling, 1 reply; 4+ messages in thread
From: Ingo Ruhnke @ 2019-10-01 12:37 UTC (permalink / raw)
  To: 37572

* gnu/packages/xfce.scm: Add xfce4-volumed-pulse.
---
 gnu/packages/xfce.scm | 33 ++++++++++++++++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index c71285c7bd..d8f67374fa 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -10,6 +10,7 @@
 ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2019 Pkill -9 <pkill9@runbox.com>
 ;;; Copyright © 2019 L  p R n  d n <guix@lprndn.info>
+;;; Copyright © 2019 Ingo Ruhnke <grumbel@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -61,7 +62,8 @@
   #:use-module (gnu packages photo)
   #:use-module (gnu packages pcre)
   #:use-module (gnu packages popt)
-  #:use-module (gnu packages pulseaudio))
+  #:use-module (gnu packages pulseaudio)
+  #:use-module (gnu packages wm))
 
 (define-public gtk-xfce-engine
   (package
@@ -1198,3 +1200,32 @@ A plugin for the Xfce panel is also available.")
      "Xfce Screensaver is a screen saver and locker that aims to have simple,
  sane, secure defaults and be well integrated with the Xfce desktop. ")
     (license gpl2+)))
+
+(define-public xfce4-volumed-pulse
+  (package
+    (name "xfce4-volumed-pulse")
+    (version "0.2.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://archive.xfce.org/src/apps/"
+                                  name "/" (version-major+minor version) "/"
+                                  name "-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "1q639iwwj7q2plgz0wdgdbi5wkgaq177ca9rnnlrnbdmid5z5fqk"))))
+    (build-system glib-or-gtk-build-system)
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("xfconf" ,xfconf)
+       ("libnotify" ,libnotify)
+       ("pulseaudio" ,pulseaudio)
+       ("keybinder-3.0" ,keybinder-3.0)
+       ("gtk+" ,gtk+)))
+    (home-page "https://goodies.xfce.org/projects/applications/xfce4-volumed")
+    (synopsis "XFCE volume keys daemon")
+    (description
+     "This is a volume keys control daemon for Xfce Desktop environment. It controls
+ the volume using multimedia keys. It also provides volume change notifications.")
+    (license gpl3+)))
-- 
2.20.1

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

* bug#37571: [PATCH 1/2] gnu: Add keybinder-3.0.
  2019-10-01 12:37 [bug#37571] [PATCH 1/2] gnu: Add keybinder-3.0 Ingo Ruhnke
  2019-10-01 12:37 ` [bug#37572] [PATCH 2/2] gnu: Add xfce4-volumed-pulse Ingo Ruhnke
@ 2019-10-01 22:34 ` Danny Milosavljevic
  1 sibling, 0 replies; 4+ messages in thread
From: Danny Milosavljevic @ 2019-10-01 22:34 UTC (permalink / raw)
  To: Ingo Ruhnke; +Cc: 37571-done

[-- Attachment #1: Type: text/plain, Size: 137 bytes --]

Thanks!  Pushed both to guix master as commits
8c765a3b26cfcedf02208dfda151d154835f0b85 and
b6b257ed94a9f01451e9d1b1e3c72a2df21125b7.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* bug#37572: [PATCH 2/2] gnu: Add xfce4-volumed-pulse.
  2019-10-01 12:37 ` [bug#37572] [PATCH 2/2] gnu: Add xfce4-volumed-pulse Ingo Ruhnke
@ 2019-10-25 10:31   ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2019-10-25 10:31 UTC (permalink / raw)
  To: Ingo Ruhnke; +Cc: 37572-done

Hi,

Ingo Ruhnke <grumbel@gmail.com> skribis:

> * gnu/packages/xfce.scm: Add xfce4-volumed-pulse.

This was applied a while back in b6b257ed94a.

Thanks!

Ludo’.

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

end of thread, other threads:[~2019-10-25 10:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-01 12:37 [bug#37571] [PATCH 1/2] gnu: Add keybinder-3.0 Ingo Ruhnke
2019-10-01 12:37 ` [bug#37572] [PATCH 2/2] gnu: Add xfce4-volumed-pulse Ingo Ruhnke
2019-10-25 10:31   ` bug#37572: " Ludovic Courtès
2019-10-01 22:34 ` bug#37571: [PATCH 1/2] gnu: Add keybinder-3.0 Danny Milosavljevic

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).