unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Xinglu Chen <public@yoctocell.xyz>
To: southerntofu <southerntofu@thunix.net>, 49451@debbugs.gnu.org
Subject: [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9
Date: Sun, 01 Aug 2021 12:08:32 +0200	[thread overview]
Message-ID: <87czqxbhpb.fsf@yoctocell.xyz> (raw)
In-Reply-To: <YOtiBSriYMVZ5WYS@thunix.net>

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

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---

Please write commit messages in the GNU ChangeLog format; you can look
at the commit log for examples, or see the manual.

  <https://www.gnu.org/prep/standards/html_node/Change-Logs.html>

If you use emacs, you can use the Yasnippet snippets found in the
etc/snippets/text-mode directory when writing commit messages.

>  gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index d53f8fb525..5ed2ff470e 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -5207,6 +5207,33 @@ streams in big-endian and little-endian formats.")
>       "This package provides a crate for manipulating memory, bit by bit.")
>      (license license:expat)))
>  
> +(define-public rust-blake2-0.9
> +  (package
> +    (name "rust-blake2")
> +    (version "0.9.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "blake2" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1x3qz692hfrxgw6cd94iiid6iqal2dwj6zv5137swpgg4l17598h"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-crypto-mac" ,rust-crypto-mac-0.8)
> +         ("rust-digest" ,rust-digest-0.9)
> +         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
> +    (home-page
> +      "https://github.com/RustCrypto/hashes")
> +    (synopsis "BLAKE2 hash functions")
> +    (description "BLAKE2 hash functions")

The description should consist of one ore more full sentences, see
“16.4.4 Synopses and Descriptions” in the manual.

Make sure to run ‘guix lint’ to avoid common mistakes like these.

Also, I noticed that a ‘rust-blake2-0.8’ package already exists, maybe
it would be possible to update that to 0.9, or make it inherit from
‘rust-blake2-0.9’ to avoid some code duplication.

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

  reply	other threads:[~2021-08-01 10:09 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-06 20:16 [bug#49451] Adding package aparte (rust XMPP TUI client) southerntofu--- via Guix-patches via
2021-07-11 21:26 ` [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9 southerntofu via Guix-patches via
2021-08-01 10:08   ` Xinglu Chen [this message]
2021-07-11 21:28 ` [bug#49451] [PATCH 02/20] gnu: Add rust-case southerntofu via Guix-patches via
2021-07-11 21:28 ` [bug#49451] [PATCH 03/20] gnu: Add rust-derive-error southerntofu via Guix-patches via
2021-08-01 10:10   ` Xinglu Chen
2021-07-11 21:28 ` [bug#49451] [PATCH 04/20] gnu: Add rust-downcast southerntofu via Guix-patches via
2021-08-01 10:10   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 05/20] gnu: Add rust-flexi-logger southerntofu via Guix-patches via
2021-08-01 10:12   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 06/20] gnu: rust-fragile: Update to 1.0 southerntofu via Guix-patches via
2021-08-01 10:13   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 07/20] gnu: rust-hmac: Update to 0.10 southerntofu via Guix-patches via
2021-08-01 10:14   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 08/20] gnu: Add rust-hsluv southerntofu via Guix-patches via
2021-08-01 10:15   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 09/20] gnu: Add rust-minidom southerntofu via Guix-patches via
2021-08-01 10:16   ` Xinglu Chen
2021-07-11 21:29 ` [bug#49451] [PATCH 10/20] gnu: Add rust-linked-hash-set southerntofu via Guix-patches via
2021-08-01 10:16   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6 southerntofu via Guix-patches via
2021-08-01 10:17   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 12/20] gnu: Add rust-sha3 southerntofu via Guix-patches via
2021-08-01 10:18   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 13/20] gnu: Add rust-mockall-derive southerntofu via Guix-patches via
2021-08-01 10:19   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 14/20] gnu: Add rust-mockall southerntofu via Guix-patches via
2021-08-01 10:20   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 15/20] gnu: Add rust-sasl southerntofu via Guix-patches via
2021-08-01 10:22   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 16/20] gnu: Add rust-jid southerntofu via Guix-patches via
2021-08-01 10:23   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 17/20] gnu: Add rust-xmpp-parsers southerntofu via Guix-patches via
2021-08-01 10:24   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 18/20] gnu: Add rust-tokio-xmpp southerntofu via Guix-patches via
2021-08-01 10:24   ` Xinglu Chen
2021-07-11 21:30 ` [bug#49451] [PATCH 20/20] Run indent-code.el on the packages i added southerntofu via Guix-patches via
2021-08-01 10:28   ` Xinglu Chen
2021-07-11 21:31 ` [bug#49451] [PATCH 19/20] gnu: Add aparte southerntofu via Guix-patches via
2021-08-01 10:29   ` Xinglu Chen
2021-08-01 10:42 ` [bug#49451] Adding package aparte (rust XMPP TUI client) Xinglu Chen
2021-08-31 15:31 ` [bug#49451] aparte on GuixRUS jgart 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

  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=87czqxbhpb.fsf@yoctocell.xyz \
    --to=public@yoctocell.xyz \
    --cc=49451@debbugs.gnu.org \
    --cc=southerntofu@thunix.net \
    /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).