unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Zheng Junjie <873216071@qq.com>
To: 48956@debbugs.gnu.org
Cc: Zheng junjie <873216071@qq.com>
Subject: [bug#48956] [PATCH 18/58] gnu: Add rust-object-0.24.
Date: Fri, 11 Jun 2021 20:52:57 +0800	[thread overview]
Message-ID: <tencent_BD0BE5F02579B5189B3DA9D759087F233A08@qq.com> (raw)
In-Reply-To: <20210611125337.10255-1-873216071@qq.com>

From: Zheng junjie <873216071@qq.com>

* gnu/packages/crates-io.scm (rust-object-0.24): New variable.
(rust-object-0.23): inherit from above.
---
 gnu/packages/crates-io.scm | 46 +++++++++++++++++++++++++++++++-------
 1 file changed, 38 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 89d0cc8c75..cdaa52431e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -28089,28 +28089,35 @@ Foundation framework.")
      "This package provides utilities for testing Objective-C interop.")
     (license license:expat)))
 
-(define-public rust-object-0.23
+(define-public rust-object-0.24
   (package
     (name "rust-object")
-    (version "0.23.0")
+    (version "0.24.0")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "object" version))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "1m658q2ci9hk8csbl17zwcg1hpvcxm2sspjb9bzg0kc1cifsp9x9"))))
+        (base32
+         "0w21hp41mixzaavsdpjylbylh44z2b5d2wbnf5ipkvkjq38ksnqs"))))
     (build-system cargo-build-system)
     (arguments
      `(#:skip-build? #t
        #:cargo-inputs
-       (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
+       (("rust-compiler-builtins"
+         ,rust-compiler-builtins-0.1)
         ("rust-crc32fast" ,rust-crc32fast-1)
         ("rust-flate2" ,rust-flate2-1)
         ("rust-indexmap" ,rust-indexmap-1)
-        ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
-        ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
-        ("rust-wasmparser" ,rust-wasmparser-0.57))))
+        ("rust-rustc-std-workspace-alloc"
+         ,rust-rustc-std-workspace-alloc-1)
+        ("rust-rustc-std-workspace-core"
+         ,rust-rustc-std-workspace-core-1)
+        ("rust-wasmparser" ,rust-wasmparser-0.57))
+       #:cargo-development-inputs
+       (("rust-memmap" ,rust-memmap-0.7))))
     (home-page "https://github.com/gimli-rs/object")
     (synopsis "Unified interface for reading and writing object file formats")
     (description
@@ -28118,6 +28125,29 @@ Foundation framework.")
 file formats.")
     (license (list license:asl2.0 license:expat))))
 
+(define-public rust-object-0.23
+  (package
+    (inherit rust-object-0.24)
+    (name "rust-object")
+    (version "0.23.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "object" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1m658q2ci9hk8csbl17zwcg1hpvcxm2sspjb9bzg0kc1cifsp9x9"))))
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs
+       (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
+        ("rust-crc32fast" ,rust-crc32fast-1)
+        ("rust-flate2" ,rust-flate2-1)
+        ("rust-indexmap" ,rust-indexmap-1)
+        ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
+        ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
+        ("rust-wasmparser" ,rust-wasmparser-0.57))))))
+
 (define-public rust-object-0.22
   (package
     (inherit rust-object-0.23)
-- 
2.32.0





  parent reply	other threads:[~2021-06-11 12:55 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20210611125337.10255-1-873216071@qq.com>
2021-06-11 12:52 ` [bug#48956] [PATCH 17/58] gnu: Add rust-snap-1 Zheng Junjie
2021-06-11 12:52 ` Zheng Junjie [this message]
2021-06-11 12:52 ` [bug#48956] [PATCH 19/58] gnu: Add rust-anymap-0.12 Zheng Junjie
2021-06-11 12:52 ` [bug#48956] [PATCH 20/58] gnu: Add rust-xshell-macros-0.1 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 21/58] gnu: Add rust-xshell-0.1 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 22/58] gnu: Add rust-arrayvec-0.7 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 23/58] gnu: Add rust-camino-1 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 24/58] gnu: Add rust-countme-2 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 25/58] gnu: Add rust-cargo-metadata-0.13 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 26/58] gnu: Add rust-cov-mark-1 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 27/58] gnu: Add rust-drop-bomb-0.1 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 28/58] gnu: Add rust-jod-thread-0.1 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 29/58] gnu: Add rust-lsp-types-0.83 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 30/58] gnu: Add rust-lsp-server-0.5 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 31/58] gnu: Add rust-inotify-0.9 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 32/58] gnu: Add rust-fsevent-sys-3 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 33/58] gnu: rust-time-0.2: fix inputs Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 34/58] gnu: Add rust-fsevent-2 Zheng Junjie
2021-06-11 12:53 ` [bug#48956] [PATCH 35/58] gnu: Add rust-notify-5 Zheng Junjie

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=tencent_BD0BE5F02579B5189B3DA9D759087F233A08@qq.com \
    --to=873216071@qq.com \
    --cc=48956@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 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).