unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Julian Flake <flake@uni-koblenz.de>
To: 71052@debbugs.gnu.org
Cc: Julian Flake <flake@uni-koblenz.de>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#71052] [PATCH 9/9] Update just
Date: Sun, 19 May 2024 13:54:42 +0200	[thread overview]
Message-ID: <27f9732259b6f42643fbbea1fe11d704be071dda.1716119149.git.flake@uni-koblenz.de> (raw)
In-Reply-To: <cover.1716119149.git.flake@uni-koblenz.de>

Change-Id: I975f6559bbb7a9a92f90ae773889e4e77c96d3df
---
 gnu/packages/rust-apps.scm | 27 +++++++++++++++------------
 1 file changed, 15 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index d73bd1a030..08cc5228cb 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -31,6 +31,7 @@
 ;;; Copyright © 2024 Herman Rimm <herman@rimm.ee>
 ;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
 ;;; Copyright © 2024 Suhail Singh <suhail@bayesians.ca>
+;;; Copyright © 2024 Julian Flake <flake@uni-koblenz.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -70,6 +71,7 @@ (define-module (gnu packages rust-apps)
   #:use-module (gnu packages crates-vcs)
   #:use-module (gnu packages crates-web)
   #:use-module (gnu packages crates-windows)
+  #:use-module (gnu packages crypto)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages documentation)
   #:use-module (gnu packages emacs)
@@ -984,13 +986,13 @@ (define-public i3status-rust
 (define-public just
   (package
     (name "just")
-    (version "1.23.0")
+    (version "1.26.0")
     (source (origin
               (method url-fetch)
               (uri (crate-uri "just" version))
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
-               (base32 "0wpjv098a2yymsb41h6104cdia4gb6hwwh05pkwj5fx7b7g41a2q"))))
+               (base32 "0mqhjlbp3fdqj3c9s8wib11fxmvvgd9xr9a3i8w5xf1sdpjfk6az"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-test-flags
@@ -1001,6 +1003,7 @@ (define-public just
        #:cargo-inputs
        (("rust-ansi-term" ,rust-ansi-term-0.12)
         ("rust-atty" ,rust-atty-0.2)
+        ("rust-blake3" ,rust-blake3-1)
         ("rust-camino" ,rust-camino-1)
         ("rust-clap" ,rust-clap-2)
         ("rust-ctrlc" ,rust-ctrlc-3)
@@ -1008,8 +1011,8 @@ (define-public just
         ("rust-dirs" ,rust-dirs-5)
         ("rust-dotenvy" ,rust-dotenvy-0.15)
         ("rust-edit-distance" ,rust-edit-distance-2)
-        ("rust-env-logger" ,rust-env-logger-0.10)
-        ("rust-heck" ,rust-heck-0.4)
+        ("rust-env-logger" ,rust-env-logger-0.11)
+        ("rust-heck" ,rust-heck-0.5)
         ("rust-lexiclean" ,rust-lexiclean-0.0.1)
         ("rust-libc" ,rust-libc-0.2)
         ("rust-log" ,rust-log-0.4)
@@ -1021,7 +1024,7 @@ (define-public just
         ("rust-sha2" ,rust-sha2-0.10)
         ("rust-similar" ,rust-similar-2)
         ("rust-snafu" ,rust-snafu-0.8)
-        ("rust-strum" ,rust-strum-0.25)
+        ("rust-strum" ,rust-strum-0.26)
         ("rust-target" ,rust-target-2)
         ("rust-tempfile" ,rust-tempfile-3)
         ("rust-typed-arena" ,rust-typed-arena-2)
@@ -1032,7 +1035,7 @@ (define-public just
         ("rust-executable-path" ,rust-executable-path-1)
         ("rust-pretty-assertions" ,rust-pretty-assertions-1)
         ("rust-temptree" ,rust-temptree-0.2)
-        ("rust-which" ,rust-which-5)
+        ("rust-which" ,rust-which-6)
         ("rust-yaml-rust" ,rust-yaml-rust-0.4))
        #:phases
        (modify-phases %standard-phases
@@ -1062,24 +1065,24 @@ (define-public just
                     (elvish-completions-dir
                      (string-append share "/elvish/lib"))
                     (just (if ,(%current-target-system)
-                          (search-input-file native-inputs "/bin/just")
-                          (string-append out "/bin/just"))))
+                              (search-input-file native-inputs "/bin/just")
+                              (string-append out "/bin/just"))))
                (install-file "man/just.1" man1)
                (mkdir-p bash-completions-dir)
                (with-output-to-file
-                 (string-append bash-completions-dir "/just")
+                   (string-append bash-completions-dir "/just")
                  (lambda _ (invoke just "--completions" "bash")))
                (mkdir-p zsh-completions-dir)
                (with-output-to-file
-                 (string-append zsh-completions-dir "/_just")
+                   (string-append zsh-completions-dir "/_just")
                  (lambda _ (invoke just "--completions" "zsh")))
                (mkdir-p fish-completions-dir)
                (with-output-to-file
-                 (string-append fish-completions-dir "/just.fish")
+                   (string-append fish-completions-dir "/just.fish")
                  (lambda _ (invoke just "--completions" "fish")))
                (mkdir-p elvish-completions-dir)
                (with-output-to-file
-                 (string-append elvish-completions-dir "/just")
+                   (string-append elvish-completions-dir "/just")
                  (lambda _ (invoke just "--completions" "elvish")))))))))
     (native-inputs (if (%current-target-system)
                        (list this-package)
-- 
2.41.0





  parent reply	other threads:[~2024-05-19 11:57 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-19 11:54 [bug#71052] [PATCH 0/9] gnu: just: Update to 1.26.0 Julian Flake
2024-05-19 11:54 ` [bug#71057] [PATCH 1/9] Update rust-home Julian Flake
2024-05-19 11:54 ` [bug#71056] [PATCH 2/9] Update rust-heck Julian Flake
2024-05-19 11:54 ` [bug#71058] [PATCH 3/9] Update rust-libc Julian Flake
2024-05-19 11:54 ` [bug#71053] [PATCH 4/9] Update rust-regex(-automata) Julian Flake
2024-05-19 11:54 ` [bug#71059] [PATCH 5/9] Update rust-rustfix Julian Flake
2024-05-19 12:39   ` bug#71059: close false issues Julian Flake
2024-05-19 11:54 ` [bug#71054] [PATCH 6/9] Update rust-strum(-macros) Julian Flake
2024-05-19 11:54 ` [bug#71052] [PATCH 7/9] Update rust-which Julian Flake
2024-05-19 11:54 ` [bug#71055] [PATCH 8/9] Added rust-winsafe Julian Flake
2024-05-19 11:54 ` Julian Flake [this message]
2024-05-19 12:43 ` [bug#71052] [PATCH v2 0/9] gnu: just: Update to 1.26.0 Julian Flake
2024-05-19 12:43   ` [bug#71052] [PATCH v2 1/9] Update rust-home Julian Flake
2024-05-19 12:43   ` [bug#71052] [PATCH v2 2/9] Update rust-heck Julian Flake
2024-05-19 12:43   ` [bug#71052] [PATCH v2 3/9] Update rust-libc Julian Flake
2024-05-19 12:43   ` [bug#71052] [PATCH v2 4/9] Update rust-regex(-automata) Julian Flake
2024-05-19 12:43   ` [bug#71052] [PATCH v2 5/9] Update rust-rustfix Julian Flake
2024-05-19 12:43   ` [bug#71052] [PATCH v2 6/9] Update rust-strum(-macros) Julian Flake
2024-05-19 12:43   ` [bug#71052] [PATCH v2 7/9] Update rust-which Julian Flake
2024-05-19 12:43   ` [bug#71052] [PATCH v2 8/9] Added rust-winsafe Julian Flake
2024-05-19 12:43   ` [bug#71052] [PATCH v2 9/9] Update just Julian Flake

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

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=27f9732259b6f42643fbbea1fe11d704be071dda.1716119149.git.flake@uni-koblenz.de \
    --to=flake@uni-koblenz.de \
    --cc=71052@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /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 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).