From: Jordan Moore <lockbox@struct.foo>
To: 74520@debbugs.gnu.org
Cc: Jordan Moore <lockbox@struct.foo>,
Sharlatan Hellseher <sharlatanus@gmail.com>
Subject: [bug#74520] [PATCH] gnu: du-dust: Update to 1.1.1.
Date: Sun, 24 Nov 2024 21:55:14 -0500 [thread overview]
Message-ID: <ba3ec4f64d26ae4485f4c262da83035e4421781e.1732502787.git.lockbox@struct.foo> (raw)
* gnu/packages/admin.scm (du-dust): Update to 1.1.1.
Change-Id: I0bd13a96669e526c7c9c5eab0f3ff416b3e69f05
---
gnu/packages/admin.scm | 98 ++++++++++++++++++++++--------------------
1 file changed, 52 insertions(+), 46 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 46282da67e..e2ed9c1d86 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -6222,54 +6222,60 @@ (define-public doctl
(define-public du-dust
(package
(name "du-dust")
- (version "0.8.6")
- (source (origin
- (method url-fetch)
- (uri (crate-uri "du-dust" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "1w52xdz1vi6awsvf4lph791zv13phjvz4ypmxr7f6pgxd3crr77c"))))
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "du-dust" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0qr6ikq2ds8bq35iw480qyhf3d43dj61wiwp8587n3mgqf5djx8w"))))
(build-system cargo-build-system)
(arguments
- `(#:cargo-test-flags
- (list "--release" "--"
- "--skip=test_apparent_size")
- #:install-source? #f
- #:cargo-inputs (("rust-ansi-term" ,rust-ansi-term-0.12)
- ("rust-atty" ,rust-atty-0.2)
- ("rust-clap" ,rust-clap-3)
- ("rust-clap-complete" ,rust-clap-complete-3)
- ("rust-clap-mangen" ,rust-clap-mangen-0.1)
- ("rust-config-file" ,rust-config-file-0.2)
- ("rust-directories" ,rust-directories-4)
- ("rust-lscolors" ,rust-lscolors-0.13)
- ("rust-rayon" ,rust-rayon-1)
- ("rust-regex" ,rust-regex-1)
- ("rust-serde" ,rust-serde-1)
- ("rust-stfu8" ,rust-stfu8-0.2)
- ("rust-sysinfo" ,rust-sysinfo-0.27)
- ("rust-terminal-size" ,rust-terminal-size-0.2)
- ("rust-thousands" ,rust-thousands-0.2)
- ("rust-unicode-width" ,rust-unicode-width-0.1)
- ("rust-winapi-util" ,rust-winapi-util-0.1))
- #:cargo-development-inputs (("rust-assert-cmd" ,rust-assert-cmd-2)
- ("rust-tempfile" ,rust-tempfile-3))
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'install-extras
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (share (string-append out "/share")))
- (install-file "man-page/dust.1"
- (string-append share "/man/man1"))
- (mkdir-p (string-append out "/etc/bash_completion.d"))
- (copy-file "completions/dust.bash"
- (string-append out "/etc/bash_completion.d/dust"))
- (install-file "completions/dust.fish"
- (string-append share "/fish/vendor_completions.d"))
- (install-file "completions/_dust"
- (string-append share "/zsh/site-functions"))))))))
+ (list #:cargo-test-flags `(list "--release" "--"
+ "--skip=test_apparent_size")
+ #:install-source? #f
+ #:cargo-inputs `(("rust-ansi-term" ,rust-ansi-term-0.12)
+ ("rust-chrono" ,rust-chrono-0.4)
+ ("rust-clap" ,rust-clap-4)
+ ("rust-clap" ,rust-clap-4)
+ ("rust-clap-complete" ,rust-clap-complete-4)
+ ("rust-clap-mangen" ,rust-clap-mangen-0.2)
+ ("rust-config-file" ,rust-config-file-0.2)
+ ("rust-ctrlc" ,rust-ctrlc-3)
+ ("rust-directories" ,rust-directories-4)
+ ("rust-filesize" ,rust-filesize-0.2)
+ ("rust-lscolors" ,rust-lscolors-0.13)
+ ("rust-rayon" ,rust-rayon-1)
+ ("rust-regex" ,rust-regex-1)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-stfu8" ,rust-stfu8-0.2)
+ ("rust-sysinfo" ,rust-sysinfo-0.27)
+ ("rust-terminal-size" ,rust-terminal-size-0.2)
+ ("rust-thousands" ,rust-thousands-0.2)
+ ("rust-unicode-width" ,rust-unicode-width-0.1)
+ ("rust-winapi-util" ,rust-winapi-util-0.1))
+ #:cargo-development-inputs `(("rust-assert-cmd" ,rust-assert-cmd-2)
+ ("rust-tempfile" ,rust-tempfile-3))
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'install 'install-extras
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (share (string-append out "/share")))
+ (install-file "man-page/dust.1"
+ (string-append share "/man/man1"))
+ (mkdir-p (string-append out
+ "/etc/bash_completion.d"))
+ (copy-file "completions/dust.bash"
+ (string-append out
+ "/etc/bash_completion.d/dust"))
+ (install-file "completions/dust.fish"
+ (string-append share
+ "/fish/vendor_completions.d"))
+ (install-file "completions/_dust"
+ (string-append share
+ "/zsh/site-functions"))))))))
(home-page "https://github.com/bootandy/dust")
(synopsis "Graphical disk usage analyzer")
(description "This package provides a graphical disk usage analyzer in
base-commit: 50d9e8b454906c0b95abfddf5c27ecfacf241cbe
--
2.46.0
next reply other threads:[~2024-11-25 3:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-25 2:55 Jordan Moore [this message]
2024-11-25 6:59 ` bug#74520: [PATCH] gnu: du-dust: Update to 1.1.1 Efraim Flashner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ba3ec4f64d26ae4485f4c262da83035e4421781e.1732502787.git.lockbox@struct.foo \
--to=lockbox@struct.foo \
--cc=74520@debbugs.gnu.org \
--cc=sharlatanus@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.