unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Nicolas Graves via Guix-patches via <guix-patches@gnu.org>
To: 56752@debbugs.gnu.org
Cc: ngraves@ngraves.fr
Subject: [bug#56752] [PATCH v2 09/10] gnu: rust-clap-3: Update to 3.1.18.
Date: Wed, 26 Oct 2022 10:59:07 +0200	[thread overview]
Message-ID: <20221026085908.2938-9-ngraves@ngraves.fr> (raw)
In-Reply-To: <20221026085908.2938-1-ngraves@ngraves.fr>

* gnu/packages/crates-io.scm (rust-clap-3): Update to 3.1.18.
---
 gnu/packages/crates-io.scm | 29 ++++++++++++++++++-----------
 1 file changed, 18 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 80576f3533..cb4afafcb6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -10486,36 +10486,43 @@ (define-public rust-clap-derive-3
 (define-public rust-clap-3
   (package
     (name "rust-clap")
-    (version "3.0.0-beta.2")
+    (version "3.1.18")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "clap" version))
-       (file-name
-        (string-append name "-" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32
-         "0hm1kivw6190rxbfqhdr4hqwlrijvwh90i3d9dyyw0d5k0chdlab"))))
+        (base32 "02s4hk9hrmm2s1j7dkbwpyd75mfzx3p8ks2chmp4ccybv95xznyj"))))
     (build-system cargo-build-system)
     (arguments
-     `(#:cargo-inputs
+     `(#:skip-build? #t
+       #:cargo-inputs
        (("rust-atty" ,rust-atty-0.2)
+        ("rust-backtrace" ,rust-backtrace-0.3)
         ("rust-bitflags" ,rust-bitflags-1)
         ("rust-clap-derive" ,rust-clap-derive-3)
+        ("rust-clap-lex" ,rust-clap-lex-0.2)
         ("rust-indexmap" ,rust-indexmap-1)
-        ("rust-os-str-bytes" ,rust-os-str-bytes-2)
+        ("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-regex" ,rust-regex-1)
         ("rust-strsim" ,rust-strsim-0.10)
         ("rust-termcolor" ,rust-termcolor-1)
         ("rust-terminal-size" ,rust-terminal-size-0.1)
-        ("rust-textwrap" ,rust-textwrap-0.12)
-        ("rust-unicode-width" ,rust-unicode-width-0.1)
-        ("rust-vec-map" ,rust-vec-map-0.8)
+        ("rust-textwrap" ,rust-textwrap-0.15)
+        ("rust-unicase" ,rust-unicase-2)
         ("rust-yaml-rust" ,rust-yaml-rust-0.4))
        #:cargo-development-inputs
        (("rust-criterion" ,rust-criterion-0.3)
+        ("rust-humantime" ,rust-humantime-2)
         ("rust-lazy-static" ,rust-lazy-static-1)
         ("rust-regex" ,rust-regex-1)
-        ("rust-version-sync" ,rust-version-sync-0.8))))
+        ("rust-rustversion" ,rust-rustversion-1)
+        ("rust-shlex" ,rust-shlex-1)
+        ("rust-snapbox" ,rust-snapbox-0.4)
+        ("rust-trybuild" ,rust-trybuild-1)
+        ;; ("rust-trycmd" ,rust-trycmd-0.13)
+       )))
     (home-page "https://clap.rs/")
     (synopsis "Command Line Argument Parser")
     (description
-- 
2.38.0





  parent reply	other threads:[~2022-10-26  9:05 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-24 21:01 [bug#56752] [PATCH 00/27] Add swayr and swayrbar Aleksandr Vityazev
2022-07-24 21:08 ` Maxime Devos
2022-07-24 21:10 ` [bug#56752] [PATCH 01/27] gnu: Add rust-rt-format-0.3 Aleksandr Vityazev
2022-07-24 21:11 ` [bug#56752] [PATCH 02/27] gnu: Add rust-swaybar-types-3 Aleksandr Vityazev
2022-10-25  7:35 ` [bug#56752] swayr Nicolas Graves via Guix-patches via
2022-10-27  5:54   ` kiasoc5 via Guix-patches via
2022-11-28  8:53   ` Andrew Tropin
2022-11-28 10:08     ` Andrew Tropin
2022-10-26  8:28 ` [bug#56752] [PATCH 01/10] gnu: rust-thiserror-impl-1: Update to 1.0.37 Nicolas Graves via Guix-patches via
2022-10-26  8:28   ` [bug#56752] [PATCH 02/10] gnu: rust-thiserror-1: " Nicolas Graves via Guix-patches via
2022-10-26  8:28   ` [bug#56752] [PATCH 03/10] gnu: Add rust-textwrap-0.15 Nicolas Graves via Guix-patches via
2022-10-26  8:28   ` [bug#56752] [PATCH 04/10] gnu: Add rust-swayipc-types-1 Nicolas Graves via Guix-patches via
2022-10-26  8:28   ` [bug#56752] [PATCH 05/10] gnu: Add rust-swayipc-3 Nicolas Graves via Guix-patches via
2022-10-26  8:28   ` [bug#56752] [PATCH 06/10] gnu: Add rust-rt-format-0.3 Nicolas Graves via Guix-patches via
2022-10-26  8:28   ` [bug#56752] [PATCH 07/10] gnu: Add rust-clap-lex-0.2 Nicolas Graves via Guix-patches via
2022-10-26  8:28   ` [bug#56752] [PATCH 08/10] gnu: rust-clap-derive-3: Update to 3.1.18 Nicolas Graves via Guix-patches via
2022-10-26  8:28   ` [bug#56752] [PATCH 09/10] gnu: rust-clap-3: " Nicolas Graves via Guix-patches via
2022-10-26  8:28   ` [bug#56752] [PATCH 10/10] gnu: Add swayr Nicolas Graves via Guix-patches via
2022-10-26  9:05   ` [bug#56752] [PATCH 01/10] gnu: rust-thiserror-impl-1: Update to 1.0.37 Nicolas Graves via Guix-patches via
2022-10-26  8:58 ` [bug#56752] [PATCH v2 " Nicolas Graves via Guix-patches via
2022-10-26  8:59   ` [bug#56752] [PATCH v2 02/10] gnu: rust-thiserror-1: " Nicolas Graves via Guix-patches via
2022-10-26  8:59   ` [bug#56752] [PATCH v2 03/10] gnu: Add rust-textwrap-0.15 Nicolas Graves via Guix-patches via
2022-10-26  8:59   ` [bug#56752] [PATCH v2 04/10] gnu: Add rust-swayipc-types-1 Nicolas Graves via Guix-patches via
2022-10-26  8:59   ` [bug#56752] [PATCH v2 05/10] gnu: Add rust-swayipc-3 Nicolas Graves via Guix-patches via
2022-10-26  8:59   ` [bug#56752] [PATCH v2 06/10] gnu: Add rust-rt-format-0.3 Nicolas Graves via Guix-patches via
2022-10-26  8:59   ` [bug#56752] [PATCH v2 07/10] gnu: Add rust-clap-lex-0.2 Nicolas Graves via Guix-patches via
2022-10-26  8:59   ` [bug#56752] [PATCH v2 08/10] gnu: rust-clap-derive-3: Update to 3.1.18 Nicolas Graves via Guix-patches via
2022-10-26  8:59   ` Nicolas Graves via Guix-patches via [this message]
2022-10-26  8:59   ` [bug#56752] [PATCH v2 10/10] gnu: Add swayr Nicolas Graves via Guix-patches via

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=20221026085908.2938-9-ngraves@ngraves.fr \
    --to=guix-patches@gnu.org \
    --cc=56752@debbugs.gnu.org \
    --cc=ngraves@ngraves.fr \
    /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).