guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

229/330: gnu: eza: Update to 0.18.7.


From: guix-commits
Subject: 229/330: gnu: eza: Update to 0.18.7.
Date: Mon, 18 Mar 2024 07:16:22 -0400 (EDT)

efraim pushed a commit to branch rust-team
in repository guix.

commit 1b1bff1b771980515d33cc831536633b743f629b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Mar 17 14:36:11 2024 +0200

    gnu: eza: Update to 0.18.7.
    
    * gnu/packages/rust-apps.scm (eza): Update to 0.18.7.
    [cargo-inputs]: Add rust-ansi-width-0.1, rust-path-clean-1,
    rust-rayon-1.  Replace rust-uutils-term-grid-0.3 with 0.6.  Remove
    rust-num-cpus-1, rust-scoped-threadpool-0.1.
    [cargo-development-inputs]: Replace rust-trycmd-0.14 with 0.15.
    [arguments]: Also build and install another manpage.
    
    Change-Id: I089aeec38b56a2d844851dbe21482ad8f78d7da7
---
 gnu/packages/rust-apps.scm | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 8eca82f40c..fec2fdd39e 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -545,19 +545,20 @@ configuration instructions.")
 (define-public eza
   (package
     (name "eza")
-    (version "0.17.0")
+    (version "0.18.7")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "eza" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "026xagh42nrdy2yg9197mmb2bhm5mdvbf9vd9fk9iysrj1iay63r"))))
+        (base32 "1wnkbzaza0bcw5rld3baikpwwvnajz3j6nbpaic5mhv86rshqlcq"))))
     (build-system cargo-build-system)
     (arguments
      (list
       #:install-source? #f
-      #:cargo-inputs `(("rust-ansiterm" ,rust-ansiterm-0.12)
+      #:cargo-inputs `(("rust-ansi-width" ,rust-ansi-width-0.1)
+                       ("rust-ansiterm" ,rust-ansiterm-0.12)
                        ("rust-chrono" ,rust-chrono-0.4)
                        ("rust-git2" ,rust-git2-0.18)
                        ("rust-glob" ,rust-glob-0.3)
@@ -565,24 +566,24 @@ configuration instructions.")
                        ("rust-locale" ,rust-locale-0.2)
                        ("rust-log" ,rust-log-0.4)
                        ("rust-natord" ,rust-natord-1)
-                       ("rust-num-cpus" ,rust-num-cpus-1)
                        ("rust-number-prefix" ,rust-number-prefix-0.4)
                        ("rust-once-cell" ,rust-once-cell-1)
                        ("rust-palette" ,rust-palette-0.7)
+                       ("rust-path-clean" ,rust-path-clean-1)
                        ("rust-percent-encoding" ,rust-percent-encoding-2)
                        ("rust-phf" ,rust-phf-0.11)
                        ("rust-plist" ,rust-plist-1)
                        ("rust-proc-mounts" ,rust-proc-mounts-0.3)
-                       ("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)
+                       ("rust-rayon" ,rust-rayon-1)
                        ("rust-terminal-size" ,rust-terminal-size-0.3)
                        ("rust-timeago" ,rust-timeago-0.4)
                        ("rust-unicode-width" ,rust-unicode-width-0.1)
-                       ("rust-uutils-term-grid" ,rust-uutils-term-grid-0.3)
+                       ("rust-uutils-term-grid" ,rust-uutils-term-grid-0.6)
                        ("rust-uzers" ,rust-uzers-0.11)
                        ("rust-windows-sys" ,rust-windows-sys-0.52)
                        ("rust-zoneinfo-compiled" ,rust-zoneinfo-compiled-0.5))
       #:cargo-development-inputs `(("rust-criterion" ,rust-criterion-0.5)
-                                   ("rust-trycmd" ,rust-trycmd-0.14))
+                                   ("rust-trycmd" ,rust-trycmd-0.15))
       #:phases #~(modify-phases %standard-phases
                    (add-after 'build 'build-manual
                      (lambda* (#:key inputs #:allow-other-keys)
@@ -594,7 +595,9 @@ configuration instructions.")
                                             "-f" "markdown"
                                             "-t" "man"
                                             (string-append "man/" page 
".md")))))
-                              (list "eza.1" "eza_colors.5")))))
+                              (list "eza.1"
+                                    "eza_colors.5"
+                                    "eza_colors-explanation.5")))))
                    (add-after 'install 'install-extras
                      (lambda* (#:key outputs #:allow-other-keys)
                        (let* ((out (assoc-ref outputs "out"))
@@ -611,6 +614,8 @@ configuration instructions.")
                            (install-file "eza.1" man1))
                          (when (file-exists? "eza_colors.5")
                            (install-file "eza_colors.5" man5))
+                         (when (file-exists? "eza_colors-explanation.5")
+                           (install-file "eza_colors-explanation.5" man5))
                          (mkdir-p bash-completions-dir)
                          (mkdir-p zsh-completions-dir)
                          (mkdir-p fish-completions-dir)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]