From: Vinicius Monego <monego@posteo.net>
To: 50662@debbugs.gnu.org
Cc: Vinicius Monego <monego@posteo.net>
Subject: [bug#50662] [PATCH 30/34] gnu: Add rust-aesni-0.10.
Date: Sat, 18 Sep 2021 16:13:32 +0000 [thread overview]
Message-ID: <20210918161336.208727-30-monego@posteo.net> (raw)
In-Reply-To: <20210918161336.208727-1-monego@posteo.net>
* gnu/packages/crates-io.scm (rust-aesni-0.10): New variable.
(rust-aesni-0.7): Inherit from above.
---
gnu/packages/crates-io.scm | 34 +++++++++++++++++++++++++++-------
1 file changed, 27 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 523e2d0675..df3247f228 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -1342,8 +1342,34 @@ This package is deprecated and was replaced by the @code{aes} crate.")
("rust-byteorder" ,rust-byteorder-1)
("rust-opaque-debug" ,rust-opaque-debug-0.2))))))
+(define-public rust-aesni-0.10
+ (package
+ (name "rust-aesni")
+ (version "0.10.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "aesni" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1kmh07fp9hbi1aa8dr2rybbgw8vqz6hjmk34c4w7sbscx7si2bpa"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs
+ (("rust-cipher" ,rust-cipher-0.2)
+ ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
+ (home-page "https://github.com/RustCrypto/block-ciphers")
+ (synopsis "AES (Rijndael) block ciphers implementation using AES-NI")
+ (description "This package provides an implementation of AES (Rijndael)
+block ciphers using AES-NI.
+
+This package is deprecated and was replaced by the @code{aes} crate.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-aesni-0.7
(package
+ (inherit rust-aesni-0.10)
(name "rust-aesni")
(version "0.7.0")
(source
@@ -1354,7 +1380,6 @@ This package is deprecated and was replaced by the @code{aes} crate.")
(sha256
(base32
"0r6j0mjkyqnwvgib01cvrwfw8rlx1biw75234niv723n1fdx6l6h"))))
- (build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-block-cipher" ,rust-block-cipher-0.7)
@@ -1362,12 +1387,7 @@ This package is deprecated and was replaced by the @code{aes} crate.")
("rust-stream-cipher" ,rust-stream-cipher-0.4))
#:cargo-development-inputs
(("rust-block-cipher" ,rust-block-cipher-0.7)
- ("rust-stream-cipher" ,rust-stream-cipher-0.4))))
- (home-page "https://github.com/RustCrypto/block-ciphers")
- (synopsis "AES (Rijndael) block ciphers implementation using AES-NI")
- (description "This package provides an implementation of AES (Rijndael)
-block ciphers using AES-NI.")
- (license (list license:expat license:asl2.0))))
+ ("rust-stream-cipher" ,rust-stream-cipher-0.4))))))
(define-public rust-aesni-0.6
(package
--
2.30.2
next prev parent reply other threads:[~2021-09-18 16:19 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-18 16:11 [bug#50662] [PATCH 00/34] Add NewsFlash base library Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 01/34] gnu: Add rust-barrel-0.6 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 02/34] gnu: Add rust-strong-xml-derive-0.6 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 03/34] gnu: Add rust-debug-helper-0.3 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 04/34] gnu: Add rust-obfstr-0.3 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 05/34] gnu: Add rust-des-0.6 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 06/34] gnu: Add rust-entities-1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 07/34] gnu: Add rust-escaper-0.1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 08/34] gnu: Add rust-crc-any-2 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 09/34] gnu: Add rust-tiger-0.1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 10/34] gnu: Add rust-libxml-0.3 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 11/34] gnu: Add rust-libxml-0.2 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 12/34] gnu: Add rust-article-scraper-1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 13/34] gnu: Add rust-feed-rs-0.6 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 14/34] gnu: Add rust-feedbin-api-0.1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 15/34] gnu: Add rust-feedly-api-0.4 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 16/34] gnu: Add rust-fever-api-0.2 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 17/34] gnu: Add rust-miniflux-api-0.3 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 18/34] gnu: Add rust-newsblur-api-0.1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 19/34] gnu: Add rust-migrations-internals-1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 20/34] gnu: Add rust-migrations-macros-1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 21/34] gnu: Add rust-diesel-migrations-1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 22/34] gnu: Add rust-rand-xorshift-0.3 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 23/34] gnu: Add rust-region-2 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 24/34] gnu: rust-x86-0.33: Fix version requirement Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 25/34] gnu: Add rust-proptest-1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 26/34] gnu: Add rust-jetscii-0.5 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 27/34] gnu: Add rust-strong-xml-0.6 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 28/34] gnu: Add rust-opml-1 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 29/34] gnu: Add rust-aes-soft-0.6 Vinicius Monego
2021-09-18 16:13 ` Vinicius Monego [this message]
2021-09-18 16:13 ` [bug#50662] [PATCH 31/34] gnu: Add rust-aes-0.6 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 32/34] gnu: Add rust-block-modes-0.7 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 33/34] gnu: Add rust-magic-crypt-3 Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 34/34] gnu: Add rust-news-flash-1 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 21/34] gnu: Add rust-diesel-migrations-1 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 22/34] gnu: Add rust-rand-xorshift-0.3 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 23/34] gnu: Add rust-region-2 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 24/34] gnu: rust-x86-0.33: Fix version requirement Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 25/34] gnu: Add rust-proptest-1 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 26/34] gnu: Add rust-jetscii-0.5 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 27/34] gnu: Add rust-strong-xml-0.6 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 28/34] gnu: Add rust-opml-1 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 29/34] gnu: Add rust-aes-soft-0.6 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 30/34] gnu: Add rust-aesni-0.10 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 31/34] gnu: Add rust-aes-0.6 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 32/34] gnu: Add rust-block-modes-0.7 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 33/34] gnu: Add rust-magic-crypt-3 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 34/34] gnu: Add rust-news-flash-1 Vinicius Monego
2021-11-03 12:31 ` bug#50662: [PATCH 00/34] Add NewsFlash base library 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
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=20210918161336.208727-30-monego@posteo.net \
--to=monego@posteo.net \
--cc=50662@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).