all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Till Robin Zickel <trzickel@illegalaliensfrom.space>
To: 54299@debbugs.gnu.org
Subject: [bug#54299] [PATCH 13/27] added rust-num-enum@0.5
Date: Tue,  8 Mar 2022 18:31:13 +0100	[thread overview]
Message-ID: <20220308173127.21218-12-trzickel@illegalaliensfrom.space> (raw)
In-Reply-To: <20220308173127.21218-1-trzickel@illegalaliensfrom.space>

---
 gnu/packages/crates-io.scm | 51 +++++++++++++++++++++++++++++++++++---
 1 file changed, 47 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index cac17e17d5..7723436b21 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -38389,6 +38389,28 @@ (define-public rust-num-enum-0.4
 primitives and enums easier.")
     (license license:bsd-3)))
 
+(define-public rust-num-enum-0.5
+  (package
+    (inherit rust-num-enum-0.4)
+    (name "rust-num-enum")
+    (version "0.5.7")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "num_enum" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1j8rq7i4xnbzy72z82k41469xlj1bmn4ixagd9wlbvv2ark9alyg"))))
+    (arguments
+     `(#:tests? #f ;missing files
+       #:cargo-inputs
+       (("rust-derivative" ,rust-derivative-2) ("rust-num-enum" ,rust-num-enum-0.5)
+        ("rust-num-enum-derive" ,rust-num-enum-derive-0.5))
+       #:cargo-development-inputs
+       (("rust-anyhow" ,rust-anyhow-1) ("rust-trybuild" ,rust-trybuild-1)
+        ("rust-walkdir" ,rust-walkdir-2)
+        ("rust-rustversion" ,rust-rustversion-1))))))
+
 (define-public rust-num-enum-derive-0.4
   (package
     (name "rust-num-enum-derive")
@@ -38415,6 +38437,27 @@ (define-public rust-num-enum-derive-0.4
 primitives and enums easier.")
     (license license:bsd-3)))
 
+(define-public rust-num-enum-derive-0.5
+  (package
+    (inherit rust-num-enum-derive-0.4)
+    (name "rust-num-enum-derive")
+    (version "0.5.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "num_enum_derive" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1kj6b8f2fx8prlcl6y1k97668s5aiia4f9gjlk0nmpak3rj9h11v"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:tests? #f                      ;FIXME: some doc tests fail
+       #:cargo-inputs
+       (("rust-proc-macro-crate" ,rust-proc-macro-crate-1)
+        ("rust-proc-macro2" ,rust-proc-macro2-1)
+        ("rust-quote" ,rust-quote-1)
+        ("rust-syn" ,rust-syn-1))))))
+
 (define-public rust-num-format-0.4
   (package
     (name "rust-num-format")
@@ -59049,7 +59092,7 @@ (define-public rust-strsim-0.5
 (define-public rust-structopt-0.3
   (package
     (name "rust-structopt")
-    (version "0.3.21")
+    (version "0.3.22")
     (source
      (origin
        (method url-fetch)
@@ -59058,7 +59101,7 @@ (define-public rust-structopt-0.3
         (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "136j0lvjmpv5syi751vxg8vb30gfyv4k81x8d18kxrj6xvbsqxsj"))))
+         "0wadrsmkvab04dkbs670hcyl41l89kj7nvky6356l8k7rg6l3c39"))))
     (build-system cargo-build-system)
     (arguments
      `(#:skip-build? #t
@@ -59100,7 +59143,7 @@ (define-public rust-structopt-0.2
 (define-public rust-structopt-derive-0.4
   (package
    (name "rust-structopt-derive")
-   (version "0.4.14")
+   (version "0.4.15")
    (source
     (origin
      (method url-fetch)
@@ -59109,7 +59152,7 @@ (define-public rust-structopt-derive-0.4
       (string-append name "-" version ".tar.gz"))
      (sha256
       (base32
-       "143gjwvz3s86hwp070km83y25n8kqp5f01kb1dr19f4ilkywvaav"))))
+       "044w7z0bnsvla4d26s1r8s4q9sbx4f60c02yfxa1mxgmxi5964vq"))))
    (build-system cargo-build-system)
    (arguments
     `(#:skip-build? #t
-- 
2.34.0





  parent reply	other threads:[~2022-03-08 17:33 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-08 16:46 [bug#54299] [PATCH 01/27] added alacritty 0.10.1 Till Robin Zickel
2022-03-08 17:31 ` [bug#54299] [PATCH 02/27] added rust-android-log-sys@0.2 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 03/27] added rust-android-logger@0.10 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 04/27] added rust-calloop@0.9 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 05/27] added rust-dlib@0.5 Till Robin Zickel
2022-03-08 18:08     ` Maxime Devos
     [not found]       ` <baf3b583-7e80-7159-4ab9-4664f5ac114f@mailbox.org>
2022-03-21 18:50         ` Maxime Devos
2022-03-08 18:09     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 06/27] updated rust-memmap2@0.3 to version 0.3.1 Till Robin Zickel
2022-03-08 18:08     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 07/27] added rust-ndk@0.5 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 08/27] added rust-ndk-glue@0.5 Till Robin Zickel
2022-03-08 17:46     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 09/27] added rust-ndk-context@0.1 Till Robin Zickel
2022-03-08 18:07     ` Maxime Devos
     [not found]       ` <8b4b8564-7f2c-fd1b-16c8-383ad54b8ecf@mailbox.org>
2022-03-21 18:55         ` Maxime Devos
2022-03-21 18:56         ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 10/27] added rust-ndk-macro@0.3 Till Robin Zickel
2022-03-08 18:06     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 11/27] updated rust-ndk-sys@0.2 to 0.2.2 Till Robin Zickel
2022-03-08 18:05     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 12/27] added development inputs, reformatted rust-nix@0.22 Till Robin Zickel
2022-03-08 18:04     ` Maxime Devos
2022-03-08 17:31   ` Till Robin Zickel [this message]
2022-03-08 17:59     ` [bug#54299] [PATCH 13/27] added rust-num-enum@0.5 Maxime Devos
2022-03-08 17:59     ` Maxime Devos
2022-03-08 18:00     ` Maxime Devos
2022-03-08 18:01     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 14/27] added rust-glutin@0.28 Till Robin Zickel
2022-03-08 17:57     ` Maxime Devos
2022-03-08 17:58     ` Maxime Devos
2022-03-08 17:58     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 15/27] updated rust-glutin-egl-sys@0.1 to 0.1.5 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 16/27] added rust-raw-window-handle@0.4 Till Robin Zickel
2022-03-08 17:56     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 17/27] added rust-smithay-client-toolkit@0.15 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 18/27] reformatted rust-wayland-client@0.28 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 19/27] added rust-wayland-client@0.29 Till Robin Zickel
2022-03-08 17:56     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 20/27] added rust-wayland-commons@0.29 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 21/27] added rust-wayland-cursor@0.29 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 22/27] added rust-wayland-egl@0.29 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 23/27] added rust-wayland-protocols@0.29 Till Robin Zickel
2022-03-08 17:53     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 24/27] added rust-wayland-scanner@0.29 Till Robin Zickel
2022-03-08 17:52     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 25/27] added rust-wayland-server@0.29 Till Robin Zickel
2022-03-08 17:31   ` [bug#54299] [PATCH 26/27] added rust-wayland-sys@0.29 Till Robin Zickel
2022-03-08 17:47     ` Maxime Devos
2022-03-08 17:48     ` Maxime Devos
2022-03-08 17:49     ` Maxime Devos
2022-03-08 17:51     ` Maxime Devos
2022-03-08 17:31   ` [bug#54299] [PATCH 27/27] added rust-winit@0.26 Till Robin Zickel
2022-04-24 12:55 ` [bug#54299] [PATCH v2 01/25] gnu: rust-structopt-derive-0.4: Update to 0.4.18 phodina via Guix-patches via
2022-08-05 17:11   ` phodina via Guix-patches via
2022-06-26 13:01 ` [bug#54299] [PATCH 01/27] added alacritty 0.10.1 Maxime Devos
2022-10-15  7:17 ` [bug#54299] [PATCH v3] Build on Aarch64 phodina via Guix-patches via
2022-10-16  5:44   ` phodina via Guix-patches via
2022-12-25 17:50     ` phodina via Guix-patches via
2023-02-15 10:43       ` 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=20220308173127.21218-12-trzickel@illegalaliensfrom.space \
    --to=trzickel@illegalaliensfrom.space \
    --cc=54299@debbugs.gnu.org \
    /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.