This is an automated email from the git hooks/post-receive script.

avp pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e032a0f38f gnu: dool: Update to 1.3.3.
e032a0f38f is described below

commit e032a0f38ff3394816fdc29554933ce77c545eff
Author: Artyom V. Poptsov <[email protected]>
AuthorDate: Sun Oct 6 09:50:03 2024 +0300

    gnu: dool: Update to 1.3.3.
    
    * gnu/packages/admin.scm (dool): Update to 1.3.3.
    [arguments]<phases>: Fix "check" phase by removing "-f" option from the dool
    arguments as it leads to failures during tests but works after installation.
    Don't remove "examples/dstat.py" as it is already removed in the upstream.
    
    Change-Id: I22714bc03bf248b97ba8f21835aedb213e1b281b
---
 gnu/packages/admin.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 398f5b6bfd..2cb50ed4a8 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -3544,7 +3544,7 @@ throughput (in the same interval).")
 (define-public dool
   (package
     (name "dool")
-    (version "1.3.0")
+    (version "1.3.3")
     (source
      (origin
        (method git-fetch)
@@ -3553,7 +3553,7 @@ throughput (in the same interval).")
              (commit (string-append "v" version))))
        (file-name (git-file-name "dool" version))
        (sha256
-        (base32 "1728wxy338gf2l06b0b4j9j8vihadw5whzzj7mi9p3by633h5s8m"))))
+        (base32 "0y5y5c07hgj6v2nvimnwc8myx43li8ib40hdvz7q4q1pdqx3r0jl"))))
     (build-system python-build-system)
     (arguments
      (list
@@ -3562,7 +3562,6 @@ throughput (in the same interval).")
           (add-after 'unpack 'remove-symlinks-and-snap-packaging
             ;; Remove symlinks that make 'ensure-no-mtimes-pre-1980 fail.
             (lambda _
-              (delete-file "examples/dstat.py")
               (delete-file-recursively "packaging/snap")))
           (delete 'build)
           (replace 'install
@@ -3579,7 +3578,7 @@ throughput (in the same interval).")
             (lambda* (#:key tests? #:allow-other-keys)
               (when tests?
                 (invoke "./dool" "--version")
-                (invoke "./dool" "-taf" "1" "5")))))))
+                (invoke "./dool" "-ta" "1" "5")))))))
     (synopsis "Command line system resource monitoring tool")
     (description "Dool is a command line tool to monitor many aspects of your
 system: CPU, Memory, Network, Load Average, etc.  It also includes a robust

Reply via email to