* [bug#75059] [PATCH rust-team 2/8] gnu: rust-botan-sys-0.10: Order alphabetically.
2024-12-24 9:52 [bug#75059] [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically Herman Rimm via Guix-patches via
@ 2024-12-24 10:00 ` Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 3/8] gnu: rust-crypto-secretbox-0.1: " Herman Rimm via Guix-patches via
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Herman Rimm via Guix-patches via @ 2024-12-24 10:00 UTC (permalink / raw)
To: 75059; +Cc: Efraim Flashner
* gnu/packages/crates-crypto.scm (rust-botan-sys-0.10): Order.
Change-Id: I4b20c3e961dfc51182467580aeca7e10bda843bc
---
gnu/packages/crates-crypto.scm | 40 +++++++++++++++++-----------------
1 file changed, 20 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 02607ed51a..09efb5df08 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -1020,26 +1020,6 @@ (define-public rust-botan-0.8
("rust-cstr-core" ,rust-cstr-core-0.2)
("rust-cty" ,rust-cty-0.2))))))
-(define-public rust-botan-sys-0.10
- (package
- (name "rust-botan-sys")
- (version "0.10.5")
- (source (origin
- (method url-fetch)
- (uri (crate-uri "botan-sys" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "1ji12rxvi4h7pap772cd2hw4xdgqdsgw6m8wqin9klpbp3hxsjcz"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs (("rust-botan-src" ,rust-botan-src-0.30101))))
- (inputs (list botan))
- (home-page "https://botan.randombit.net/")
- (synopsis "FFI wrapper for Botan cryptography library")
- (description "FFI wrapper for Botan cryptography library")
- (license license:expat)))
-
(define-public rust-botan-src-0.30101
(package
(name "rust-botan-src")
@@ -1077,6 +1057,26 @@ (define-public rust-botan-src-0.21703
(snippet
'(begin (delete-file-recursively "botan")))))))
+(define-public rust-botan-sys-0.10
+ (package
+ (name "rust-botan-sys")
+ (version "0.10.5")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "botan-sys" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1ji12rxvi4h7pap772cd2hw4xdgqdsgw6m8wqin9klpbp3hxsjcz"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-botan-src" ,rust-botan-src-0.30101))))
+ (inputs (list botan))
+ (home-page "https://botan.randombit.net/")
+ (synopsis "FFI wrapper for Botan cryptography library")
+ (description "FFI wrapper for Botan cryptography library")
+ (license license:expat)))
+
(define-public rust-botan-sys-0.8
(package
(inherit rust-botan-sys-0.10)
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#75059] [PATCH rust-team 3/8] gnu: rust-crypto-secretbox-0.1: Order alphabetically.
2024-12-24 9:52 [bug#75059] [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 2/8] gnu: rust-botan-sys-0.10: " Herman Rimm via Guix-patches via
@ 2024-12-24 10:00 ` Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 4/8] gnu: rust-crypto-hash-0.3: " Herman Rimm via Guix-patches via
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Herman Rimm via Guix-patches via @ 2024-12-24 10:00 UTC (permalink / raw)
To: 75059; +Cc: Efraim Flashner
* gnu/packages/crates-crypto.scm (rust-crypto-secretbox-0.1): Order.
Change-Id: I0db40723d730fbbec6402c63fde62bb2eec11571
---
gnu/packages/crates-crypto.scm | 63 +++++++++++++++++-----------------
1 file changed, 31 insertions(+), 32 deletions(-)
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 09efb5df08..ba172fb268 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -1462,38 +1462,6 @@ (define-public rust-cmac-0.7
Cipher-based Message Authentication Code.")
(license (list license:expat license:asl2.0))))
-(define-public rust-crypto-secretbox-0.1
- (package
- (name "rust-crypto-secretbox")
- (version "0.1.1")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "crypto_secretbox" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "1qa1w5s8dbyb88269zrmvbnillqahz394pl07bsds6gpmn3wzmmr"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs (("rust-aead" ,rust-aead-0.5)
- ("rust-chacha20" ,rust-chacha20-0.9)
- ("rust-cipher" ,rust-cipher-0.4)
- ("rust-generic-array" ,rust-generic-array-0.14)
- ("rust-poly1305" ,rust-poly1305-0.8)
- ("rust-salsa20" ,rust-salsa20-0.10)
- ("rust-subtle" ,rust-subtle-2)
- ("rust-zeroize" ,rust-zeroize-1))
- #:cargo-development-inputs (("rust-hex-literal" ,rust-hex-literal-0.4))))
- (home-page
- "https://github.com/RustCrypto/nacl-compat/tree/master/crypto_secretbox")
- (synopsis
- "Pure Rust implementation of the XSalsa20Poly1305")
- (description
- "Pure Rust implementation of the XSalsa20Poly1305 (a.k.a. @code{NaCl}
-crypto_secretbox) authenticated encryption cipher as well as the libsodium
-variant of X@code{ChaCha20Poly1305}.")
- (license (list license:asl2.0 license:expat))))
-
(define-public rust-crypto-bigint-0.5
(package
(name "rust-crypto-bigint")
@@ -1745,6 +1713,37 @@ (define-public rust-crypto-mac-0.4
;; There are no non-yanked versions of this semver.
(deprecated-package "rust-crypto-mac" rust-crypto-mac-0.4.0-yanked))
+(define-public rust-crypto-secretbox-0.1
+ (package
+ (name "rust-crypto-secretbox")
+ (version "0.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "crypto_secretbox" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1qa1w5s8dbyb88269zrmvbnillqahz394pl07bsds6gpmn3wzmmr"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-aead" ,rust-aead-0.5)
+ ("rust-chacha20" ,rust-chacha20-0.9)
+ ("rust-cipher" ,rust-cipher-0.4)
+ ("rust-generic-array" ,rust-generic-array-0.14)
+ ("rust-poly1305" ,rust-poly1305-0.8)
+ ("rust-salsa20" ,rust-salsa20-0.10)
+ ("rust-subtle" ,rust-subtle-2)
+ ("rust-zeroize" ,rust-zeroize-1))
+ #:cargo-development-inputs (("rust-hex-literal" ,rust-hex-literal-0.4))))
+ (home-page
+ "https://github.com/RustCrypto/nacl-compat/tree/master/crypto_secretbox")
+ (synopsis
+ "Pure Rust implementation of the XSalsa20Poly1305")
+ (description
+ "Pure Rust implementation of the XSalsa20Poly1305 (a.k.a. @code{NaCl}
+crypto_secretbox) authenticated encryption cipher as well as the libsodium
+variant of X@code{ChaCha20Poly1305}.")
+ (license (list license:asl2.0 license:expat))))
(define-public rust-crypto-tests-0.5
(package
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#75059] [PATCH rust-team 4/8] gnu: rust-crypto-hash-0.3: Order alphabetically.
2024-12-24 9:52 [bug#75059] [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 2/8] gnu: rust-botan-sys-0.10: " Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 3/8] gnu: rust-crypto-secretbox-0.1: " Herman Rimm via Guix-patches via
@ 2024-12-24 10:00 ` Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 5/8] gnu: rust-pem-rfc7468-0.7: " Herman Rimm via Guix-patches via
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Herman Rimm via Guix-patches via @ 2024-12-24 10:00 UTC (permalink / raw)
To: 75059; +Cc: Efraim Flashner
* gnu/packages/crates-crypto.scm (rust-crypto-hash-0.3): Order.
Change-Id: I3d897f8fa9462e4b9d4150349181a03d0952151a
---
gnu/packages/crates-crypto.scm | 56 +++++++++++++++++-----------------
1 file changed, 28 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index ba172fb268..960a8b40bb 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -1601,6 +1601,34 @@ (define-public rust-crypto-common-0.1
;; The user can choose either license.
(license (list license:expat license:asl2.0))))
+(define-public rust-crypto-hash-0.3
+ (package
+ (name "rust-crypto-hash")
+ (version "0.3.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "crypto-hash" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1jnxgpk0j29hzcv42viq5dckyfjnxdjsar55366j95zx80i1cxwa"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-commoncrypto" ,rust-commoncrypto-0.2)
+ ("rust-hex" ,rust-hex-0.3)
+ ("rust-openssl" ,rust-openssl-0.10)
+ ("rust-winapi" ,rust-winapi-0.3))))
+ (inputs
+ (list openssl))
+ (home-page "https://github.com/malept/crypto-hash")
+ (synopsis "Wrapper for OS-level cryptographic hash functions")
+ (description "This package provides a wrapper for OS-level cryptographic
+hash functions.")
+ (license license:expat)))
+
(define-public rust-crypto-mac-0.11
(package
(name "rust-crypto-mac")
@@ -1770,34 +1798,6 @@ (define-public rust-crypto-tests-0.5
algorithms.")
(license (list license:expat license:asl2.0))))
-(define-public rust-crypto-hash-0.3
- (package
- (name "rust-crypto-hash")
- (version "0.3.4")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "crypto-hash" version))
- (file-name
- (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "1jnxgpk0j29hzcv42viq5dckyfjnxdjsar55366j95zx80i1cxwa"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs
- (("rust-commoncrypto" ,rust-commoncrypto-0.2)
- ("rust-hex" ,rust-hex-0.3)
- ("rust-openssl" ,rust-openssl-0.10)
- ("rust-winapi" ,rust-winapi-0.3))))
- (inputs
- (list openssl))
- (home-page "https://github.com/malept/crypto-hash")
- (synopsis "Wrapper for OS-level cryptographic hash functions")
- (description "This package provides a wrapper for OS-level cryptographic
-hash functions.")
- (license license:expat)))
-
(define-public rust-csrf-0.4
(package
(name "rust-csrf")
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#75059] [PATCH rust-team 5/8] gnu: rust-pem-rfc7468-0.7: Order alphabetically.
2024-12-24 9:52 [bug#75059] [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically Herman Rimm via Guix-patches via
` (2 preceding siblings ...)
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 4/8] gnu: rust-crypto-hash-0.3: " Herman Rimm via Guix-patches via
@ 2024-12-24 10:00 ` Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 6/8] gnu: rust-pem-rfc7468-0.6: " Herman Rimm via Guix-patches via
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Herman Rimm via Guix-patches via @ 2024-12-24 10:00 UTC (permalink / raw)
To: 75059; +Cc: Efraim Flashner
* gnu/packages/crates-crypto.scm (rust-pem-rfc7468-0.7): Order.
Change-Id: I62fd0ed20333fff63fbd77be1e56a2e265720efd
---
gnu/packages/crates-crypto.scm | 50 +++++++++++++++++-----------------
1 file changed, 25 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 960a8b40bb..623a6d993c 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -3587,6 +3587,31 @@ (define-public rust-pbkdf2-0.8
("rust-sha-1" ,rust-sha-1-0.9)
("rust-sha2" ,rust-sha2-0.9))))))
+(define-public rust-pem-rfc7468-0.7
+ (package
+ (name "rust-pem-rfc7468")
+ (version "0.7.0")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "pem-rfc7468" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "04l4852scl4zdva31c1z6jafbak0ni5pi0j38ml108zwzjdrrcw8"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))
+ (home-page "https://github.com/RustCrypto/formats/tree/master/pem-rfc7468")
+ (synopsis
+ "PEM Encoding implementing a subset of Privacy-Enhanced Mail encoding")
+ (description
+ "This package provides PEM Encoding (RFC 7468) for PKIX, PKCS, and CMS
+Structures, implementing a strict subset of the original Privacy-Enhanced Mail
+encoding intended specifically for use with cryptographic keys, certificates,
+and other messages. It provides a no_std-friendly, constant-time
+implementation suitable for use with cryptographic private keys.")
+ (license (list license:asl2.0 license:expat))))
+
(define-public rust-pkcs1-0.7
(package
(name "rust-pkcs1")
@@ -3889,31 +3914,6 @@ (define-public rust-pkcs8-0.7
("rust-spki" ,rust-spki-0.4)
("rust-zeroize" ,rust-zeroize-1))))))
-(define-public rust-pem-rfc7468-0.7
- (package
- (name "rust-pem-rfc7468")
- (version "0.7.0")
- (source (origin
- (method url-fetch)
- (uri (crate-uri "pem-rfc7468" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "04l4852scl4zdva31c1z6jafbak0ni5pi0j38ml108zwzjdrrcw8"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))
- (home-page "https://github.com/RustCrypto/formats/tree/master/pem-rfc7468")
- (synopsis
- "PEM Encoding implementing a subset of Privacy-Enhanced Mail encoding")
- (description
- "This package provides PEM Encoding (RFC 7468) for PKIX, PKCS, and CMS
-Structures, implementing a strict subset of the original Privacy-Enhanced Mail
-encoding intended specifically for use with cryptographic keys, certificates,
-and other messages. It provides a no_std-friendly, constant-time
-implementation suitable for use with cryptographic private keys.")
- (license (list license:asl2.0 license:expat))))
-
(define-public rust-pem-rfc7468-0.6
(package
(inherit rust-pem-rfc7468-0.7)
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#75059] [PATCH rust-team 6/8] gnu: rust-pem-rfc7468-0.6: Order alphabetically.
2024-12-24 9:52 [bug#75059] [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically Herman Rimm via Guix-patches via
` (3 preceding siblings ...)
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 5/8] gnu: rust-pem-rfc7468-0.7: " Herman Rimm via Guix-patches via
@ 2024-12-24 10:00 ` Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 7/8] gnu: rust-pem-rfc7468-0.3: " Herman Rimm via Guix-patches via
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Herman Rimm via Guix-patches via @ 2024-12-24 10:00 UTC (permalink / raw)
To: 75059; +Cc: Efraim Flashner
* gnu/packages/crates-crypto.scm (rust-pem-rfc7468-0.6): Order.
Change-Id: I0707ae0912aa5a92b5943fcc1ef8dec2037592ec
---
gnu/packages/crates-crypto.scm | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 623a6d993c..ae76a3248e 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -3612,6 +3612,21 @@ (define-public rust-pem-rfc7468-0.7
implementation suitable for use with cryptographic private keys.")
(license (list license:asl2.0 license:expat))))
+(define-public rust-pem-rfc7468-0.6
+ (package
+ (inherit rust-pem-rfc7468-0.7)
+ (name "rust-pem-rfc7468")
+ (version "0.6.0")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "pem-rfc7468" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1b5d8rvc4lgwxhs72m99fnrg0wq7bqh4x4wq0c7501ci7a1mkl94"))))
+ (arguments
+ `(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))))
+
(define-public rust-pkcs1-0.7
(package
(name "rust-pkcs1")
@@ -3914,21 +3929,6 @@ (define-public rust-pkcs8-0.7
("rust-spki" ,rust-spki-0.4)
("rust-zeroize" ,rust-zeroize-1))))))
-(define-public rust-pem-rfc7468-0.6
- (package
- (inherit rust-pem-rfc7468-0.7)
- (name "rust-pem-rfc7468")
- (version "0.6.0")
- (source (origin
- (method url-fetch)
- (uri (crate-uri "pem-rfc7468" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "1b5d8rvc4lgwxhs72m99fnrg0wq7bqh4x4wq0c7501ci7a1mkl94"))))
- (arguments
- `(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))))
-
(define-public rust-pem-rfc7468-0.3
(package
(inherit rust-pem-rfc7468-0.7)
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#75059] [PATCH rust-team 7/8] gnu: rust-pem-rfc7468-0.3: Order alphabetically.
2024-12-24 9:52 [bug#75059] [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically Herman Rimm via Guix-patches via
` (4 preceding siblings ...)
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 6/8] gnu: rust-pem-rfc7468-0.6: " Herman Rimm via Guix-patches via
@ 2024-12-24 10:00 ` Herman Rimm via Guix-patches via
2024-12-24 10:01 ` [bug#75059] [PATCH rust-team 8/8] gnu: rust-pem-rfc7468-0.2: " Herman Rimm via Guix-patches via
2024-12-24 12:01 ` bug#75059: [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: " Efraim Flashner
7 siblings, 0 replies; 9+ messages in thread
From: Herman Rimm via Guix-patches via @ 2024-12-24 10:00 UTC (permalink / raw)
To: 75059; +Cc: Efraim Flashner
* gnu/packages/crates-crypto.scm (rust-pem-rfc7468-0.3): Order.
Change-Id: I22fce2d5304ff5eee1d1a0899b4f4e48eedb8d8a
---
gnu/packages/crates-crypto.scm | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index ae76a3248e..4e8509ea76 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -3627,6 +3627,21 @@ (define-public rust-pem-rfc7468-0.6
(arguments
`(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))))
+(define-public rust-pem-rfc7468-0.3
+ (package
+ (inherit rust-pem-rfc7468-0.7)
+ (name "rust-pem-rfc7468")
+ (version "0.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "pem-rfc7468" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0c7vrrksg8fqzxb7q4clzl14f0qnqky7jqspjqi4pailiybmvph1"))))
+ (arguments
+ `(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))))
+
(define-public rust-pkcs1-0.7
(package
(name "rust-pkcs1")
@@ -3929,21 +3944,6 @@ (define-public rust-pkcs8-0.7
("rust-spki" ,rust-spki-0.4)
("rust-zeroize" ,rust-zeroize-1))))))
-(define-public rust-pem-rfc7468-0.3
- (package
- (inherit rust-pem-rfc7468-0.7)
- (name "rust-pem-rfc7468")
- (version "0.3.1")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "pem-rfc7468" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "0c7vrrksg8fqzxb7q4clzl14f0qnqky7jqspjqi4pailiybmvph1"))))
- (arguments
- `(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))))
-
(define-public rust-pem-rfc7468-0.2
(package
(inherit rust-pem-rfc7468-0.7)
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#75059] [PATCH rust-team 8/8] gnu: rust-pem-rfc7468-0.2: Order alphabetically.
2024-12-24 9:52 [bug#75059] [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically Herman Rimm via Guix-patches via
` (5 preceding siblings ...)
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 7/8] gnu: rust-pem-rfc7468-0.3: " Herman Rimm via Guix-patches via
@ 2024-12-24 10:01 ` Herman Rimm via Guix-patches via
2024-12-24 12:01 ` bug#75059: [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: " Efraim Flashner
7 siblings, 0 replies; 9+ messages in thread
From: Herman Rimm via Guix-patches via @ 2024-12-24 10:01 UTC (permalink / raw)
To: 75059; +Cc: Efraim Flashner
* gnu/packages/crates-crypto.scm (rust-pem-rfc7468-0.2): Order.
Change-Id: Ic132f5d3c482c504c1570f4118855269811d6c4d
---
gnu/packages/crates-crypto.scm | 44 +++++++++++++++++-----------------
1 file changed, 22 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 4e8509ea76..ef9f295486 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -3642,6 +3642,28 @@ (define-public rust-pem-rfc7468-0.3
(arguments
`(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))))
+(define-public rust-pem-rfc7468-0.2
+ (package
+ (inherit rust-pem-rfc7468-0.7)
+ (name "rust-pem-rfc7468")
+ (version "0.2.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "pem-rfc7468" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1m1c9jypydzabg4yscplmvff7pdcc8gg4cqg081hnlf03hxkmsc4"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin (substitute* "Cargo.toml"
+ (((string-append ">=([[:digit:]]+(\\.[[:digit:]]+)*),"
+ " <([[:digit:]]+(\\.[[:digit:]]+)*)")
+ _ version _)
+ (string-append ">=" version)))))))
+ (arguments
+ `(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))))
+
(define-public rust-pkcs1-0.7
(package
(name "rust-pkcs1")
@@ -3944,28 +3966,6 @@ (define-public rust-pkcs8-0.7
("rust-spki" ,rust-spki-0.4)
("rust-zeroize" ,rust-zeroize-1))))))
-(define-public rust-pem-rfc7468-0.2
- (package
- (inherit rust-pem-rfc7468-0.7)
- (name "rust-pem-rfc7468")
- (version "0.2.4")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "pem-rfc7468" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "1m1c9jypydzabg4yscplmvff7pdcc8gg4cqg081hnlf03hxkmsc4"))
- (modules '((guix build utils)))
- (snippet
- '(begin (substitute* "Cargo.toml"
- (((string-append ">=([[:digit:]]+(\\.[[:digit:]]+)*),"
- " <([[:digit:]]+(\\.[[:digit:]]+)*)")
- _ version _)
- (string-append ">=" version)))))))
- (arguments
- `(#:cargo-inputs (("rust-base64ct" ,rust-base64ct-1))))))
-
(define-public rust-poly1305-0.8
(package
(name "rust-poly1305")
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* bug#75059: [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically.
2024-12-24 9:52 [bug#75059] [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically Herman Rimm via Guix-patches via
` (6 preceding siblings ...)
2024-12-24 10:01 ` [bug#75059] [PATCH rust-team 8/8] gnu: rust-pem-rfc7468-0.2: " Herman Rimm via Guix-patches via
@ 2024-12-24 12:01 ` Efraim Flashner
7 siblings, 0 replies; 9+ messages in thread
From: Efraim Flashner @ 2024-12-24 12:01 UTC (permalink / raw)
To: Herman Rimm; +Cc: 75059-done
[-- Attachment #1: Type: text/plain, Size: 262 bytes --]
Thanks. Patches pushed to the rust-team branch.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread