Package: guix-patches;
Reported by: Herman Rimm <herman <at> rimm.ee>
Date: Sat, 27 Apr 2024 12:25:02 UTC
Severity: normal
Tags: patch
Done: Efraim Flashner <efraim <at> flashner.co.il>
Bug is archived. No further changes may be made.
Message #188 received at 70606 <at> debbugs.gnu.org (full text, mbox):
From: Herman Rimm <herman <at> rimm.ee> To: 70606 <at> debbugs.gnu.org Subject: [PATCH rust-team 073/101] gnu: Place rust-fakeit-1 in alphabetical order. Date: Sat, 27 Apr 2024 14:35:35 +0200
* gnu/packages/crates-io.scm (rust-fake-simd-0.1, rust-fakeit-1, rust-fallible-collections-0.4): Move variables. Change-Id: Ieed66efa1c0d8c7bf1acfeb0dc7e86e802315380 --- gnu/packages/crates-io.scm | 138 ++++++++++++++++++------------------- 1 file changed, 67 insertions(+), 71 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index fb1a0be53a..0142bf58bf 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -25269,77 +25269,6 @@ (define-public rust-faccess-0.2 (description "Simple file accessibility checks in rust.") (license license:expat))) -(define-public rust-fakeit-1 - (package - (name "rust-fakeit") - (version "1.2.0") - (source - (origin - (method url-fetch) - (uri (crate-uri "fakeit" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 "0zsz58zfawf3zk9ig3n7dbd382lgndjx0xxngwsymilcgipr0bfi")))) - (build-system cargo-build-system) - (arguments - `(#:cargo-inputs (("rust-libmath" ,rust-libmath-0.2) - ("rust-rand" ,rust-rand-0.6) - ("rust-simplerand" ,rust-simplerand-1) - ("rust-uuid" ,rust-uuid-0.8)))) - (home-page "https://github.com/PumpkinSeed/fakeit") - (synopsis "Fake data generator") - (description "Fake data generator library with 130+ functions.") - (license license:expat))) - -(define-public rust-fake-simd-0.1 - (package - (name "rust-fake-simd") - (version "0.1.2") - (source - (origin - (method url-fetch) - (uri (crate-uri "fake-simd" version)) - (file-name - (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "1vfylvk4va2ivqx85603lyqqp0zk52cgbs4n5nfbbbqx577qm2p8")))) - (build-system cargo-build-system) - (arguments `(#:skip-build? #t)) - (home-page "https://github.com/RustCrypto/utils") - (synopsis "Crate for mimicking simd crate on stable Rust") - (description - "Crate for mimicking simd crate on stable Rust.") - (license (list license:asl2.0 license:expat)))) - -(define-public rust-fallible-collections-0.4 - (package - (name "rust-fallible-collections") - (version "0.4.6") - (source - (origin - (method url-fetch) - (uri (crate-uri "fallible_collections" version)) - (file-name - (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "0ma7lga3zqbpzrhl76raljc6y69f38mb6j5yhkk6ldkh531wqmrz")))) - (build-system cargo-build-system) - (arguments - `(#:cargo-inputs - (("rust-hashbrown" ,rust-hashbrown-0.12)))) - (home-page "https://github.com/vcombey/fallible_collections") - (synopsis "Fallible collections implementation in Rust") - (description "This library extends the Rust standard collections to return -a result when an allocation error occurs, ala -@url{https://github.com/rust-lang/rfcs/blob/master/text/2116-alloc-me-maybe.md,RFC -2116}. The API currently proposes a fallible interface for @code{Vec}, -@code{Box}, @code{Arc}, @code{Btree} and @code{Rc}, as well as a -@code{TryClone} trait which is implemented for primitive Rust traits and a -fallible format macro.") - (license (list license:expat license:asl2.0)))) - (define-public rust-failure-0.1 (package (name "rust-failure") @@ -25393,6 +25322,73 @@ (define-public rust-failure-derive-0.1 (description "Derives for the failure crate.") (license (list license:asl2.0 license:expat)))) +(define-public rust-fake-simd-0.1 + (package + (name "rust-fake-simd") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "fake-simd" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1vfylvk4va2ivqx85603lyqqp0zk52cgbs4n5nfbbbqx577qm2p8")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t)) + (home-page "https://github.com/RustCrypto/utils") + (synopsis "Crate for mimicking simd crate on stable Rust") + (description "Crate for mimicking simd crate on stable Rust.") + (license (list license:asl2.0 license:expat)))) + +(define-public rust-fakeit-1 + (package + (name "rust-fakeit") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "fakeit" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0zsz58zfawf3zk9ig3n7dbd382lgndjx0xxngwsymilcgipr0bfi")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-libmath" ,rust-libmath-0.2) + ("rust-rand" ,rust-rand-0.6) + ("rust-simplerand" ,rust-simplerand-1) + ("rust-uuid" ,rust-uuid-0.8)))) + (home-page "https://github.com/PumpkinSeed/fakeit") + (synopsis "Fake data generator") + (description "Fake data generator library with 130+ functions.") + (license license:expat))) + +(define-public rust-fallible-collections-0.4 + (package + (name "rust-fallible-collections") + (version "0.4.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "fallible_collections" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0ma7lga3zqbpzrhl76raljc6y69f38mb6j5yhkk6ldkh531wqmrz")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-hashbrown" ,rust-hashbrown-0.12)))) + (home-page "https://github.com/vcombey/fallible_collections") + (synopsis "Fallible collections implementation in Rust") + (description + "This library extends the Rust standard collections to return +a result when an allocation error occurs, ala +@url{https://github.com/rust-lang/rfcs/blob/master/text/2116-alloc-me-maybe.md,RFC +2116}. The API currently proposes a fallible interface for @code{Vec}, +@code{Box}, @code{Arc}, @code{Btree} and @code{Rc}, as well as a +@code{TryClone} trait which is implemented for primitive Rust traits and a +fallible format macro.") + (license (list license:expat license:asl2.0)))) + (define-public rust-fallible-iterator-0.3 (package (name "rust-fallible-iterator") -- 2.41.0
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.