all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: phodina via Guix-patches via <guix-patches@gnu.org>
To: "50367@debbugs.gnu.org" <50367@debbugs.gnu.org>
Subject: [bug#50367] [PATCH 19/22] gnu: Add rust-proc-macro-crate-1.
Date: Sat, 04 Sep 2021 07:42:34 +0000	[thread overview]
Message-ID: <cY4N3WI0BoBg77r3tZG7E6Dth1cScjICDsrSWIjHsXF4CLMLUDiwTyb-ETqqf6JLFe3OxXSrO2SYnpQRcyuZSeFd9plMb1DD9UPp76bboTM=@protonmail.com> (raw)
In-Reply-To: <NobFwvPIrMv1lPM-QWvhmILR13j0mZEsK8EZ8i3kRcY9Jz4wENH9efUy2N96KWfIHRmDj1BHMSImooeGAsNEEog-oyjEXUs3DYe9PbCDVtY=@protonmail.com>

* gnu/packages/crates-io.scm (rust-proc-macro-crate-1): New variable.

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b6da0302ef..755769c4fb 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -35173,21 +35173,28 @@ replacements, adding colorful diffs.")
 formatted tables in terminal.")
     (license license:bsd-3)))

-(define-public rust-proc-macro-crate-0.1
+(define-public rust-proc-macro-crate-1
   (package
     (name "rust-proc-macro-crate")
-    (version "0.1.5")
+    (version "1.0.0")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "proc-macro-crate" version))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "11cpihdk9ba68hzw95aa8zxn0i5g6kdrfd4l2cy3d5jvb72a6vhx"))))
+        (base32
+         "14pzgkpnlzq6y7yc749h2lwd1mv44min4iszjk2znmi1yqfvvza1"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs
-       (("rust-toml" ,rust-toml-0.5))))
+       (("rust-thiserror" ,rust-thiserror-1)
+        ("rust-toml" ,rust-toml-0.5))
+       #:cargo-development-inputs
+       (("rust-proc-macro2" ,rust-proc-macro2-1)
+        ("rust-quote" ,rust-quote-1)
+        ("rust-syn" ,rust-syn-1))))
     (home-page "https://github.com/bkchr/proc-macro-crate")
     (synopsis "Support for @code{$crate} in procedural macros")
     (description
@@ -35195,6 +35202,22 @@ formatted tables in terminal.")
 renamed in @file{Cargo.toml}.")
     (license (list license:asl2.0 license:expat))))

+(define-public rust-proc-macro-crate-0.1
+  (package
+    (inherit rust-proc-macro-crate-1)
+    (name "rust-proc-macro-crate")
+    (version "0.1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "proc-macro-crate" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "11cpihdk9ba68hzw95aa8zxn0i5g6kdrfd4l2cy3d5jvb72a6vhx"))))
+    (arguments
+     `(#:cargo-inputs
+       (("rust-toml" ,rust-toml-0.5))))))
+
 (define-public rust-proc-macro-error-1
   (package
     (name "rust-proc-macro-error")
@@ -58050,7 +58073,7 @@ compression library.")
     (home-page "http://www.hashmismatch.net/libraries/packed-struct/")
     (synopsis "Binary-level structure packing and unpacking generator")
     (description "This package provides bit-level packing an unpacking
-of structs.  The library provides a meta-programming approach, using
+of structs.  Tkhe library provides a meta-programming approach, using
 attributes to define fields and how they should be packed.  The resulting
 trait implementations provide safe packing, unpacking and runtime debugging
 formatters with per-field documentation generated for each structure.
--
2.32.0




  parent reply	other threads:[~2021-09-04  7:43 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-04  7:03 [bug#50367] [PATCH 01/22] gnu: Add rust-mockall-derive-0.10 phodina via Guix-patches via
2021-09-04  7:08 ` [bug#50367] [PATCH 02/22] gnu: Add rust-fragile-1 phodina via Guix-patches via
2021-09-04  7:11 ` [bug#50367] [PATCH 03/22] gnu: Add rust-downcast-0.10 phodina via Guix-patches via
2021-09-04  7:24 ` [bug#50367] [PATCH 04/22] gnu: Add rust-mockall-double-0.2 phodina via Guix-patches via
2021-09-04  7:25 ` [bug#50367] [PATCH 05/22] gnu: rust-tracing: Update to 0.1.23 phodina via Guix-patches via
2021-09-04  7:27 ` [bug#50367] [PATCH 06/22] gnu: Add rust-mockall-0.10 phodina via Guix-patches via
2021-09-04  7:29 ` [bug#50367] [PATCH 07/22] gnu: Add rust-dlv-list-0.2 phodina via Guix-patches via
2021-09-04  7:30 ` [bug#50367] [PATCH 08/22] gnu: Add rust-ordered-multimap-0.3 phodina via Guix-patches via
2021-09-04  7:31 ` [bug#50367] [PATCH 09/22] gnu: Add rust-pretty-assertions-0.7 phodina via Guix-patches via
2021-09-04  7:33 ` [bug#50367] [PATCH 10/22] gnu: Add rust-os-info-3 phodina via Guix-patches via
2021-09-04  7:35 ` [bug#50367] [PATCH 11/22] gnu: Add rust-pathdiff-0.2 phodina via Guix-patches via
2021-09-04  7:36 ` [bug#50367] [PATCH 12/22] gnu: rust-open: Update to 1.7.1 phodina via Guix-patches via
2021-09-04  7:36 ` [bug#50367] [PATCH 13/22] gnu: Add rust-rust-ini-0.17 phodina via Guix-patches via
2021-09-04  7:37 ` [bug#50367] [PATCH 14/22] gnu: Add rust-semver-1 phodina via Guix-patches via
2021-09-04  7:38 ` [bug#50367] [PATCH 15/22] gnu: Add rust-path-slash-0.1 phodina via Guix-patches via
2021-09-04  7:39 ` [bug#50367] [PATCH 16/22] gnu: Add rust-versions-3 phodina via Guix-patches via
2021-09-04  7:40 ` [bug#50367] [PATCH 17/22] gnu: Add rust-process-control-3 phodina via Guix-patches via
2021-09-04  7:41 ` [bug#50367] [PATCH 18/22] gnu: Add rust-starship-module-config-derive-0.2 phodina via Guix-patches via
2021-09-04  7:42 ` phodina via Guix-patches via [this message]
2021-09-04  7:43 ` [bug#50367] [PATCH 20/22] gnu: Add rust-enumflags2-derive-0.6 phodina via Guix-patches via
2021-09-04  7:44 ` [bug#50367] [PATCH 21/22] gnu: Add rust-enumflags2-0.6 phodina via Guix-patches via
2021-09-04  7:45 ` [bug#50367] [PATCH 22/22] gnu: Add rust-serde-xml-rs-0.4 phodina via Guix-patches via
2021-09-22 15:00 ` [bug#50367] [PATCH 01/22] gnu: Add rust-mockall-derive-0.10 Nicolas Goaziou
2021-09-27 22:44   ` phodina 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

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

  git send-email \
    --in-reply-to='cY4N3WI0BoBg77r3tZG7E6Dth1cScjICDsrSWIjHsXF4CLMLUDiwTyb-ETqqf6JLFe3OxXSrO2SYnpQRcyuZSeFd9plMb1DD9UPp76bboTM=@protonmail.com' \
    --to=guix-patches@gnu.org \
    --cc=50367@debbugs.gnu.org \
    --cc=phodina@protonmail.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.