all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Xinglu Chen <public@yoctocell.xyz>
To: phodina <phodina@protonmail.com>,
	"50368@debbugs.gnu.org" <50368@debbugs.gnu.org>
Subject: [bug#50368] [PATCH 5/9] gnu: rust-deflate: Update to 0.9.1.
Date: Sat, 04 Sep 2021 21:21:22 +0200	[thread overview]
Message-ID: <871r645eq5.fsf@yoctocell.xyz> (raw)
In-Reply-To: <dSeyDIv5vaCZ37ysQmyO8EyAwBINliBvjwfk8yf2JiG3aKJgeDrwxrSqe72z3Q8vh_k03nbK7RopA7iPqDPh-serJ1ZrJX5b-EzsPqCokIo=@protonmail.com>

[-- Attachment #1: Type: text/plain, Size: 2732 bytes --]

On Sat, Sep 04 2021, phodina via Guix-patches via wrote:

> * gnu/packages/crates-io.scm (rust-deflate): Update to 0.9.1.
> [cargo-inputs]: Remove rust-byteorder-1.

I suggest

  * gnu/packages/crates-io.scm (rust-deflate-0.9): New variable.
  (rust-deflate-0.8): Inherit from ‘rust-deflate-0.9’.
  (rust-deflate-0.7): Likewise.
  
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 3df14a1d6d..e0b36cef51 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -12611,10 +12611,10 @@ type.")
>  thread.")
>      (license license:mpl2.0)))
>
> -(define-public rust-deflate-0.8
> +(define-public rust-deflate-0.9
>    (package
>      (name "rust-deflate")
> -    (version "0.8.6")
> +    (version "0.9.1")
>      (source
>        (origin
>          (method url-fetch)
> @@ -12623,13 +12623,12 @@ thread.")
>           (string-append name "-" version ".tar.gz"))
>          (sha256
>           (base32
> -          "0x6iqlayg129w63999kz97m279m0jj4x4sm6gkqlvmp73y70yxvk"))))
> +          "0w0ww0hrq4bjnihxgbnrri4lj5c8yzg31fyzx36fd9pvvw2vz5az"))))
>      (build-system cargo-build-system)
>      (arguments
>       `(#:tests? #f      ; not all test files included
>         #:cargo-inputs
>         (("rust-adler32" ,rust-adler32-1)
> -        ("rust-byteorder" ,rust-byteorder-1)
>          ("rust-gzip-header" ,rust-gzip-header-0.3))
>         #:cargo-development-inputs
>         (("rust-miniz-oxide" ,rust-miniz-oxide-0.3))))
> @@ -12639,9 +12638,32 @@ thread.")
>       "This package provides a DEFLATE, zlib and gzip encoder written in rust.")
>      (license (list license:expat license:asl2.0))))
>
> +(define-public rust-deflate-0.8
> +  (package
> +    (inherit rust-deflate-0.9)
> +    (name "rust-deflate")
> +    (version "0.8.6")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "deflate" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +         (base32
> +          "0x6iqlayg129w63999kz97m279m0jj4x4sm6gkqlvmp73y70yxvk"))))
> +    (arguments
> +     `(#:tests? #f      ; not all test files included
> +       #:cargo-inputs
> +         (("rust-adler32" ,rust-adler32-1)
> +          ("rust-byteorder" ,rust-byteorder-1)
> +          ("rust-gzip-header" ,rust-gzip-header-0.3))
> +       #:cargo-development-inputs
> +         (("rust-miniz-oxide" ,rust-miniz-oxide-0.3))))))
> +
>  (define-public rust-deflate-0.7
>    (package
> -    (inherit rust-deflate-0.8)
> +    (inherit rust-deflate-0.9)
>      (name "rust-deflate")
>      (version "0.7.20")
>      (source
> --
> 2.32.0

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

  reply	other threads:[~2021-09-04 19:22 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 ` [bug#50368] [PATCH 2/9] gnu: Add rust-multipart-0.18 phodina via Guix-patches via
2021-09-04 19:10   ` 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 [this message]
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=871r645eq5.fsf@yoctocell.xyz \
    --to=public@yoctocell.xyz \
    --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.