[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70606] [PATCH rust-team 044/101] gnu: Place rust-nanorand-0.7 in al
From: |
Herman Rimm |
Subject: |
[bug#70606] [PATCH rust-team 044/101] gnu: Place rust-nanorand-0.7 in alphabetical order. |
Date: |
Sat, 27 Apr 2024 14:35:06 +0200 |
* gnu/packages/crates-io.scm (rust-nanorand-0.7, rust-nanorand-0.5,
rust-nanorand-0.4, rust-nasm-rs-0.2): Move variables.
Change-Id: I1f41e034a77a19eb16736f09f05b444715a4902b
---
gnu/packages/crates-io.scm | 182 ++++++++++++++++++-------------------
1 file changed, 87 insertions(+), 95 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 9c34aebd9a..d166c81b35 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -43364,101 +43364,6 @@ (define-public rust-mysqlclient-sys-0.2
libmysqlclient.")
(license (list license:expat license:asl2.0))))
-(define-public rust-nanorand-0.7
- (package
- (name "rust-nanorand")
- (version "0.7.0")
- (source (origin
- (method url-fetch)
- (uri (crate-uri "nanorand" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
"1hr60b8zlfy7mxjcwx2wfmhpkx7vfr3v9x12shmv1c10b0y32lba"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs
- (("rust-getrandom" ,rust-getrandom-0.2)
- ("rust-zeroize" ,rust-zeroize-1))
- #:cargo-development-inputs
- (("rust-hex" ,rust-hex-0.4))))
- (home-page "https://github.com/Absolucy/nanorand-rs")
- (synopsis "Tiny, fast, zero-dep library for random number generation")
- (description
- "This library is meant for fast, random number generation with
-quick compile time, and minimal dependencies.")
- (license license:zlib)))
-
-(define-public rust-nanorand-0.5
- (package
- (inherit rust-nanorand-0.7)
- (name "rust-nanorand")
- (version "0.5.1")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "nanorand" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "1ryi6jdfsfij4di33f269099g7m32rlr7sv7j4pklnjcj2xxfwri"))))
- (arguments
- `(#:skip-build? #true ;error with pre-release randomize
- #:cargo-inputs
- (("rust-getrandom" ,rust-getrandom-0.2)
- ("rust-zeroize" ,rust-zeroize-1))
- #:cargo-development-inputs
- (("rust-criterion" ,rust-criterion-0.3)
- ("rust-fastrand" ,rust-fastrand-1)
- ("rust-hex" ,rust-hex-0.4)
- ("rust-random-fast-rng" ,rust-random-fast-rng-0.1)
- ("rust-randomize" ,rust-randomize-4))))))
-
-(define-public rust-nanorand-0.4
- (package
- (inherit rust-nanorand-0.5)
- (name "rust-nanorand")
- (version "0.4.4")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "nanorand" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "1ifpjgir1a6lw64jkb6la5hb8j5jvqq70nmxgzjj0cjf13jd3kys"))))
- (arguments
- `(#:skip-build? #true ;error with pre-release randomize
- #:cargo-inputs
- (("rust-getrandom" ,rust-getrandom-0.2)
- ("rust-zeroize" ,rust-zeroize-1))
- #:cargo-development-inputs
- (("rust-criterion" ,rust-criterion-0.3)
- ("rust-fastrand" ,rust-fastrand-1)
- ("rust-hex" ,rust-hex-0.4)
- ("rust-random-fast-rng" ,rust-random-fast-rng-0.1)
- ("rust-randomize" ,rust-randomize-4))))))
-
-(define-public rust-nasm-rs-0.2
- (package
- (name "rust-nasm-rs")
- (version "0.2.0")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "nasm-rs" version))
- (file-name
- (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "1lgc3gg32hj4pcbfp07vzwy013smdm27469fyy4rqgyil3x46vx7"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs
- (("rust-arrayvec" ,rust-arrayvec-0.5)
- ("rust-rayon" ,rust-rayon-1))))
- (home-page "https://github.com/medek/nasm-rs")
- (synopsis "Run NASM during your Cargo build")
- (description "Run NASM during your Cargo build.")
- (license (list license:expat license:asl2.0))))
-
(define-public rust-nalgebra-0.32
(package
(name "rust-nalgebra")
@@ -43863,6 +43768,73 @@ (define-public rust-nalgebra-macros-0.1
(("rust-nalgebra" ,rust-nalgebra-0.26)
("rust-trybuild" ,rust-trybuild-1))))))
+(define-public rust-nanorand-0.7
+ (package
+ (name "rust-nanorand")
+ (version "0.7.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "nanorand" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1hr60b8zlfy7mxjcwx2wfmhpkx7vfr3v9x12shmv1c10b0y32lba"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-getrandom" ,rust-getrandom-0.2)
+ ("rust-zeroize" ,rust-zeroize-1))
+ #:cargo-development-inputs (("rust-hex" ,rust-hex-0.4))))
+ (home-page "https://github.com/Absolucy/nanorand-rs")
+ (synopsis "Tiny, fast, zero-dep library for random number generation")
+ (description
+ "This library is meant for fast, random number generation with
+quick compile time, and minimal dependencies.")
+ (license license:zlib)))
+
+(define-public rust-nanorand-0.5
+ (package
+ (inherit rust-nanorand-0.7)
+ (name "rust-nanorand")
+ (version "0.5.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "nanorand" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1ryi6jdfsfij4di33f269099g7m32rlr7sv7j4pklnjcj2xxfwri"))))
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs (("rust-getrandom" ,rust-getrandom-0.2)
+ ("rust-zeroize" ,rust-zeroize-1))
+ #:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
+ ("rust-fastrand" ,rust-fastrand-1)
+ ("rust-hex" ,rust-hex-0.4)
+ ("rust-random-fast-rng"
,rust-random-fast-rng-0.1)
+ ("rust-randomize" ,rust-randomize-4))))))
+
+(define-public rust-nanorand-0.4
+ (package
+ (inherit rust-nanorand-0.5)
+ (name "rust-nanorand")
+ (version "0.4.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "nanorand" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1ifpjgir1a6lw64jkb6la5hb8j5jvqq70nmxgzjj0cjf13jd3kys"))))
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs (("rust-getrandom" ,rust-getrandom-0.2)
+ ("rust-zeroize" ,rust-zeroize-1))
+ #:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
+ ("rust-fastrand" ,rust-fastrand-1)
+ ("rust-hex" ,rust-hex-0.4)
+ ("rust-random-fast-rng"
,rust-random-fast-rng-0.1)
+ ("rust-randomize" ,rust-randomize-4))))))
+
(define-public rust-napi-2
(package
(name "rust-napi")
@@ -43992,6 +43964,26 @@ (define-public rust-napi-sys-2
(description "This package provides a NodeJS N-API raw binding.")
(license license:expat)))
+(define-public rust-nasm-rs-0.2
+ (package
+ (name "rust-nasm-rs")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "nasm-rs" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1lgc3gg32hj4pcbfp07vzwy013smdm27469fyy4rqgyil3x46vx7"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-arrayvec" ,rust-arrayvec-0.5)
+ ("rust-rayon" ,rust-rayon-1))))
+ (home-page "https://github.com/medek/nasm-rs")
+ (synopsis "Run NASM during your Cargo build")
+ (description "Run NASM during your Cargo build.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-natord-1
(package
(name "rust-natord")
--
2.41.0
- [bug#70606] [PATCH rust-team 035/101] gnu: Place rust-owo-colors-4 in alphabetical order., (continued)
- [bug#70606] [PATCH rust-team 035/101] gnu: Place rust-owo-colors-4 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 034/101] gnu: Place rust-parasail-sys-0.2 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 037/101] gnu: Place rust-openssl-macros-0.1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 036/101] gnu: Place rust-ouroborus-macro-0.17 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 038/101] gnu: Place rust-once-cell-1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 039/101] gnu: Place rust-ntest-proc-macro-helper-0.8 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 041/101] gnu: Place rust-normalize-path-0.2 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 045/101] gnu: Place rust-muldiv-1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 046/101] gnu: Place rust-metrics-macro-0.2 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 047/101] gnu: Place rust-merge-derive-0.1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 044/101] gnu: Place rust-nanorand-0.7 in alphabetical order.,
Herman Rimm <=
- [bug#70606] [PATCH rust-team 060/101] gnu: Place rust-juniper-codegen-0.14 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 074/101] gnu: Place rust-env-filter-0.1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 077/101] gnu: Place rust-downcast-rs-1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 075/101] gnu: Place rust-enum-map-derive-0.4 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 083/101] gnu: Place rust-const-panic-proc-macros-0.2 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 059/101] gnu: Place rust-kqueue-sys-1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 066/101] gnu: Place rust-humantime-serde-1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 064/101] gnu: Place rust-iana-time-zone-haiku-0.1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 054/101] gnu: Place rust-libz-sys-1 in alphabetical order., Herman Rimm, 2024/04/27
- [bug#70606] [PATCH rust-team 052/101] gnu: Place rust-local-ip-address-0.4 in alphabetical order., Herman Rimm, 2024/04/27