guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a7a18db1b8075e23ff754284868ade4b1d77679c
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Dec 26 23:39:10 2025 +0100

    gnu: volctl: Update to 0.9.5.
    
    * gnu/packages/gtk.scm (volctl): Update to 0.9.5.
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:tests?>: Disable them.
    <#:phases>: Improve style.
    [native-inputs]: Add python-setuptools.
    [description]: Improve style.
    
    Change-Id: Idd0c1ff06f0469c3afdbe102d3ac08fceb29eb38
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/gtk.scm | 47 +++++++++++++++++++++++++----------------------
 1 file changed, 25 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index ae80c09aec..662c9871a9 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -3036,27 +3036,29 @@ user interaction (e.g.  measuring distances).")
 (define-public volctl
   (package
     (name "volctl")
-    (version "0.9.4")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference (url "https://github.com/buzz/volctl";)
-                                  (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0anrwz8rvbliskmcgpw2zabgjj5c72hpi7cf0jg05vvmlpnbsd4g"))))
-    (build-system python-build-system)
+    (version "0.9.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/buzz/volctl";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0113mkhvjh2asmydpvm96j1d8s6bbp5gnhfzirjb6flj6zy6dgfc"))))
+    (build-system pyproject-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'patch-path
-           (lambda* (#:key inputs #:allow-other-keys)
-             (substitute* "volctl/xwrappers.py"
-               (("libXfixes.so")
-                (string-append (search-input-file inputs
-                                                  "/lib/libXfixes.so")))))))))
-    (inputs
-     (list libxfixes))
+     (list
+      #:tests? #f                       ;No tests.
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'patch-path
+            (lambda* (#:key inputs #:allow-other-keys)
+              (substitute* "volctl/xwrappers.py"
+                (("libXfixes.so")
+                 (search-input-file inputs "/lib/libXfixes.so"))))))))
+    (native-inputs (list python-setuptools))
+    (inputs (list libxfixes))
     (propagated-inputs
      (list python-click
            python-pycairo
@@ -3066,8 +3068,9 @@ user interaction (e.g.  measuring distances).")
            gtk+))
     (home-page "https://buzz.github.io/volctl/";)
     (synopsis "Per-application volume control and on-screen display")
-    (description "Volctl is a PulseAudio-enabled tray icon volume control and
-OSD applet for graphical desktops.  It's not meant to be an replacement for a
+    (description
+     "Volctl is a PulseAudio-enabled tray icon volume control and OSD applet
+for graphical desktops.  It's not meant to be an replacement for a
 full-featured mixer application.  If you're looking for that check out the
 excellent pavucontrol.")
 

Reply via email to