all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Aaron Covrig via Guix-patches via <guix-patches@gnu.org>
To: 69624@debbugs.gnu.org
Cc: Aaron Covrig <aaron.covrig.us@ieee.org>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#69624] [PATCH v2 6/8] gnu: Add rust-devise-core-0.3.
Date: Fri,  5 Apr 2024 20:44:36 -0400	[thread overview]
Message-ID: <b1ddd90729878522e07f46ee7de293bf5a9755ee.1712364277.git.aaron.covrig.us@ieee.org> (raw)
In-Reply-To: <b3249a6d91fc3644863e48861354523f97af5f54.1712364277.git.aaron.covrig.us@ieee.org>

* gnu/packages/crates-io.scm (rust-devise-core-0.3): New variable.

Signed-off-by: Aaron Covrig <aaron.covrig.us@ieee.org>
---
 gnu/packages/crates-io.scm | 32 +++++++++++++++++++++++++-------
 1 file changed, 25 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 694cac002e..0d59da7c06 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -20972,12 +20972,11 @@ (define-public rust-devise-core-0.4
         (base32 "0sp5idq0idng9i5kwjd8slvc724s97r28arrhyqq1jpx1ax0vd9m"))))
     (build-system cargo-build-system)
     (arguments
-     `(#:cargo-inputs
-       (("rust-bitflags" ,rust-bitflags-2)
-        ("rust-proc-macro2" ,rust-proc-macro2-1)
-        ("rust-proc-macro2-diagnostics" ,rust-proc-macro2-diagnostics-0.10)
-        ("rust-quote" ,rust-quote-1)
-        ("rust-syn" ,rust-syn-2))))
+     `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
+                       ("rust-proc-macro2" ,rust-proc-macro2-1)
+                       ("rust-proc-macro2-diagnostics" ,rust-proc-macro2-diagnostics-0.10)
+                       ("rust-quote" ,rust-quote-1)
+                       ("rust-syn" ,rust-syn-2))))
     (home-page "https://github.com/SergioBenitez/Devise")
     (synopsis "Library for devising derives and other procedural macros")
     (description
@@ -20985,10 +20984,29 @@ (define-public rust-devise-core-0.4
 procedural macros.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-devise-core-0.2
+(define-public rust-devise-core-0.3
   (package
     (inherit rust-devise-core-0.4)
     (name "rust-devise-core")
+    (version "0.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "devise_core" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1l00qiih4z14ai0c3s16nlvw0kv4p07ygi6a0ms0knc78xpz87l4"))))
+    (arguments
+     `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-1)
+                       ("rust-proc-macro2" ,rust-proc-macro2-1)
+                       ("rust-proc-macro2-diagnostics" ,rust-proc-macro2-diagnostics-0.9)
+                       ("rust-quote" ,rust-quote-1)
+                       ("rust-syn" ,rust-syn-1))))))
+
+(define-public rust-devise-core-0.2
+  (package
+    (inherit rust-devise-core-0.3)
+    (name "rust-devise-core")
     (version "0.2.1")
     (source
      (origin
-- 
2.41.0





  parent reply	other threads:[~2024-04-06  0:49 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-08  3:21 [bug#69624] [PATCH rust-team] gnu: rust-devise: Added v0.3 and building v0.2 Aaron Covrig via Guix-patches via
2024-04-06  0:44 ` [bug#69624] [PATCH v2 1/8] gnu: Add rust-proc-macro2-diagnostics-0.9 Aaron Covrig via Guix-patches via
2024-04-06  0:44   ` [bug#69624] [PATCH v2 2/8] gnu: Enables building rust-proc-macro2-diagnostics-0.10 Aaron Covrig via Guix-patches via
2024-04-06  0:44   ` [bug#69624] [PATCH v2 3/8] gnu: Enables building rust-devise-core-0.2 Aaron Covrig via Guix-patches via
2024-04-06  0:44   ` [bug#69624] [PATCH v2 4/8] gnu: Enables building rust-devise-codegen-0.2 Aaron Covrig via Guix-patches via
2024-04-06  0:44   ` [bug#69624] [PATCH v2 5/8] gnu: Enable building rust-devise-0.2 Aaron Covrig via Guix-patches via
2024-04-06  0:44   ` Aaron Covrig via Guix-patches via [this message]
2024-04-06  0:44   ` [bug#69624] [PATCH v2 7/8] gnu: Add rust-devise-codegen-0.3 Aaron Covrig via Guix-patches via
2024-04-06  0:44   ` [bug#69624] [PATCH v2 8/8] gnu: Add rust-devise-0.3 Aaron Covrig via Guix-patches via
2024-04-07 12:27   ` bug#69624: [PATCH v2 1/8] gnu: Add rust-proc-macro2-diagnostics-0.9 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=b1ddd90729878522e07f46ee7de293bf5a9755ee.1712364277.git.aaron.covrig.us@ieee.org \
    --to=guix-patches@gnu.org \
    --cc=69624@debbugs.gnu.org \
    --cc=aaron.covrig.us@ieee.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 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.