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: "50368@debbugs.gnu.org" <50368@debbugs.gnu.org>
Subject: [bug#50368] [PATCH 2/9] gnu: Add rust-multipart-0.18.
Date: Sat, 04 Sep 2021 08:58:59 +0000	[thread overview]
Message-ID: <dhUyrIUpKpzH5RfFiyJ6SeWs0pLs1HgZN9vdtgEDGkEd5EjcYOK3gNSrYGnL_UX6inOnhQP3D8Zj6pGinDN-OaqR_TjDjDpupWgRQfJJ-OE=@protonmail.com> (raw)
In-Reply-To: <z0YmncNh1i9u6h11ea4Kd6s_ABCJ89_totSxa81UrqKdQGtdIcE_4eemElwMwHa7Patp2Th9wRsNJ97D6r2f-l5v46hINrBKxW0NyLOEDpM=@protonmail.com>

* gnu/packages/crates-io.scm (rust-multipart-0.18): New variable.

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 605106f9fa..2cd07b513c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -27367,21 +27367,22 @@ which defines a default trait implementation, and @code{trait_impl} which uses
 a default trait implementation you've defined.")
     (license license:lgpl2.1+)))

-(define-public rust-multipart-0.17
+(define-public rust-multipart-0.18
   (package
     (name "rust-multipart")
-    (version "0.17.1")
+    (version "0.18.0")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "multipart" version))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "1m3nrydgc56wjixsahipmvjgnxnw2cz7w8ryghsgahwjr3nswl6h"))))
+        (base32
+         "10libwfbazqcyxcpgpcdf1a66jnzghwlmxlxnffg4rrqhqrwdph0"))))
     (build-system cargo-build-system)
     (arguments
-     `(#:skip-build? #t
-       #:cargo-inputs
+     `(#:cargo-inputs
        (("rust-buf-redux" ,rust-buf-redux-0.8)
         ("rust-clippy" ,rust-clippy-0.0)
         ("rust-httparse" ,rust-httparse-1)
@@ -27393,7 +27394,7 @@ a default trait implementation you've defined.")
         ("rust-mime-guess" ,rust-mime-guess-2)
         ("rust-nickel" ,rust-nickel-0.11)
         ("rust-quick-error" ,rust-quick-error-1)
-        ("rust-rand" ,rust-rand-0.7)
+        ("rust-rand" ,rust-rand-0.8)
         ("rust-rocket" ,rust-rocket-0.4)
         ("rust-safemem" ,rust-safemem-0.3)
         ("rust-tempfile" ,rust-tempfile-3)
@@ -27401,7 +27402,8 @@ a default trait implementation you've defined.")
         ("rust-twoway" ,rust-twoway-0.1))
        #:cargo-development-inputs
        (("rust-env-logger" ,rust-env-logger-0.5))))
-    (home-page "https://github.com/abonander/multipart")
+    (home-page
+     "https://github.com/abonander/multipart")
     (synopsis
      "Backend-agnostic extension for file uploads in HTTP libraries for Rust")
     (description
@@ -27410,6 +27412,41 @@ that provides support for POST multipart/form-data requests on both client and
 server.")
     (license (list license:expat license:asl2.0))))

+(define-public rust-multipart-0.17
+  (package
+    (inherit rust-multipart-0.18)
+    (name "rust-multipart")
+    (version "0.17.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "multipart" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1m3nrydgc56wjixsahipmvjgnxnw2cz7w8ryghsgahwjr3nswl6h"))))
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs
+       (("rust-buf-redux" ,rust-buf-redux-0.8)
+        ("rust-clippy" ,rust-clippy-0.0)
+        ("rust-httparse" ,rust-httparse-1)
+        ("rust-hyper" ,rust-hyper-0.10)
+        ("rust-iron" ,rust-iron-0.6)
+        ("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-mime" ,rust-mime-0.3)
+        ("rust-mime-guess" ,rust-mime-guess-2)
+        ("rust-nickel" ,rust-nickel-0.11)
+        ("rust-quick-error" ,rust-quick-error-1)
+        ("rust-rand" ,rust-rand-0.7)
+        ("rust-rocket" ,rust-rocket-0.4)
+        ("rust-safemem" ,rust-safemem-0.3)
+        ("rust-tempfile" ,rust-tempfile-3)
+        ("rust-tiny-http" ,rust-tiny-http-0.6)
+        ("rust-twoway" ,rust-twoway-0.1))
+       #:cargo-development-inputs
+        (("rust-env-logger" ,rust-env-logger-0.5))))))
+
 (define-public rust-multiversion-0.6
   (package
     (name "rust-multiversion")
--
2.32.0




  reply	other threads:[~2021-09-04  9:00 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-04  8:46 [bug#50368] [PATCH 1/9] gnu: rust-multipart-0.17: Fix inputs phodina via Guix-patches via
2021-09-04  8:58 ` phodina via Guix-patches via [this message]
2021-09-04 19:10   ` [bug#50368] [PATCH 2/9] gnu: Add rust-multipart-0.18 Xinglu Chen
2021-09-04  8:59 ` [bug#50368] [PATCH 3/9] gnu: rust-base64-0.13: Fix inputs phodina via Guix-patches via
2021-09-04 19:13   ` Xinglu Chen
2021-09-04  9:01 ` [bug#50368] [PATCH 4/9] gnu: Add rust-noise-0.7 phodina via Guix-patches via
2021-09-04 19:17   ` Xinglu Chen
2021-09-04  9:02 ` [bug#50368] [PATCH 5/9] gnu: rust-deflate: Update to 0.9.1 phodina via Guix-patches via
2021-09-04 19:21   ` Xinglu Chen
2021-09-04  9:03 ` [bug#50368] [PATCH 6/9] gnu: Add rust-libloading-0.7 phodina via Guix-patches via
2021-09-04 19:23   ` Xinglu Chen
2021-09-04  9:04 ` [bug#50368] [PATCH 7/9] gnu: Add rust-fdlimit-0.1 phodina via Guix-patches via
2021-09-04 19:26   ` Xinglu Chen
2021-09-04  9:05 ` [bug#50368] [PATCH 8/9] gnu: Add rust-chunked-tansfer-1 phodina via Guix-patches via
2021-09-04 19:27   ` Xinglu Chen
2021-09-04  9:06 ` [bug#50368] [PATCH 9/9] gnu: Add rust-tiny-http-0.8 phodina via Guix-patches via
2021-09-04 19:32   ` Xinglu Chen
2021-09-05 13:10     ` phodina via Guix-patches via
2021-09-05 13:48       ` Xinglu Chen
2021-09-15 19:16 ` [bug#50368] [PATCH v2 2/9] gnu: Add rust-multipart-0.18 phodina via Guix-patches via
2021-09-15 19:17 ` [bug#50368] [PATCH v2 3/9] gnu: rust-base64-0.13: Fix inputs phodina via Guix-patches via
2021-09-15 19:17 ` [bug#50368] [PATCH v2 4/9] gnu: Add rust-noise-0.7 phodina via Guix-patches via
2021-09-15 19:18 ` [bug#50368] [PATCH v2 5/9] gnu: Add rust-deflate-0.9 phodina via Guix-patches via
2021-09-15 19:19 ` [bug#50368] [PATCH v2 6/9] gnu: Add rust-libloading-0.7 phodina via Guix-patches via
2021-09-15 19:20 ` [bug#50368] [PATCH v2 7/9] gnu: Add rust-fdlimit-0.1 phodina via Guix-patches via
2021-09-20 12:08   ` Xinglu Chen
2021-09-27 22:00     ` phodina via Guix-patches via
2021-09-15 19:20 ` [bug#50368] [PATCH v2 8/9] gnu: Add rust-chunked-tansfer-1 phodina via Guix-patches via
2021-09-15 19:21 ` [bug#50368] [PATCH v2 9/9] gnu: Add rust-tiny-http-0.8 phodina via Guix-patches via
2021-11-03 12:01 ` bug#50368: [PATCH 1/9] gnu: rust-multipart-0.17: Fix inputs Nicolas Goaziou

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='dhUyrIUpKpzH5RfFiyJ6SeWs0pLs1HgZN9vdtgEDGkEd5EjcYOK3gNSrYGnL_UX6inOnhQP3D8Zj6pGinDN-OaqR_TjDjDpupWgRQfJJ-OE=@protonmail.com' \
    --to=guix-patches@gnu.org \
    --cc=50368@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.