From: Herman Rimm via Guix-patches via <guix-patches@gnu.org>
To: 75068@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#75068] [PATCH rust-team v2 61/93] gnu: rust-once-cell-1: Order alphabetically.
Date: Tue, 24 Dec 2024 21:10:52 +0100 [thread overview]
Message-ID: <c29fc75104429bda728d8f8abb1746b90239562a.1735070698.git.herman@rimm.ee> (raw)
In-Reply-To: <cover.1735070694.git.herman@rimm.ee>
* gnu/packages/crates-io.scm (rust-once-cell-1): Order.
Change-Id: If0ba5cb32db642bde26f28e1c977b23e23e4e05c
---
gnu/packages/crates-io.scm | 58 +++++++++++++++++++-------------------
1 file changed, 29 insertions(+), 29 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index e6af237874..077a65a563 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -53605,6 +53605,35 @@ (define-public rust-omnipath-0.1
(description "This package provides a path utility library.")
(license (list license:expat license:asl2.0))))
+(define-public rust-once-cell-1
+ (package
+ (name "rust-once-cell")
+ (version "1.20.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "once_cell" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0xb7rw1aqr7pa4z3b00y7786gyf8awx2gca3md73afy76dzgwq8j"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-critical-section" ,rust-critical-section-1)
+ ("rust-parking-lot-core" ,rust-parking-lot-core-0.9)
+ ("rust-portable-atomic" ,rust-portable-atomic-1))
+ #:cargo-development-inputs
+ (("rust-critical-section" ,rust-critical-section-1)
+ ("rust-regex" ,rust-regex-1))))
+ (home-page "https://github.com/matklad/once_cell")
+ (synopsis "Single assignment cells and lazy values")
+ (description
+ "This package provides two new cell-like types, @code{unsync::OnceCell}
+and @code{sync::OnceCell}. OnceCell might store arbitrary non-copy types, can
+be assigned to at most once and provide direct access to the stored
+contents.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-onig-6
(package
(name "rust-onig")
@@ -53658,35 +53687,6 @@ (define-public rust-onig-sys-69.6
other crates to create safe wrappers around Oniguruma.")
(license license:expat)))
-(define-public rust-once-cell-1
- (package
- (name "rust-once-cell")
- (version "1.20.2")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "once_cell" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "0xb7rw1aqr7pa4z3b00y7786gyf8awx2gca3md73afy76dzgwq8j"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs
- (("rust-critical-section" ,rust-critical-section-1)
- ("rust-parking-lot-core" ,rust-parking-lot-core-0.9)
- ("rust-portable-atomic" ,rust-portable-atomic-1))
- #:cargo-development-inputs
- (("rust-critical-section" ,rust-critical-section-1)
- ("rust-regex" ,rust-regex-1))))
- (home-page "https://github.com/matklad/once_cell")
- (synopsis "Single assignment cells and lazy values")
- (description
- "This package provides two new cell-like types, @code{unsync::OnceCell}
-and @code{sync::OnceCell}. OnceCell might store arbitrary non-copy types, can
-be assigned to at most once and provide direct access to the stored
-contents.")
- (license (list license:expat license:asl2.0))))
-
(define-public rust-oorandom-11
(package
(name "rust-oorandom")
--
2.45.2
next prev parent reply other threads:[~2024-12-24 20:35 UTC|newest]
Thread overview: 96+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-24 20:01 [bug#75068] [PATCH rust-team 01/94] gnu: rust-hifitime-3: Order alphabetically Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 00/93] Order (gnu packages crates-io) up to Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 01/93] gnu: rust-html-escape-0.2: Order alphabetically Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 02/93] gnu: rust-kuchiki-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 03/93] gnu: rust-konst-proc-macros-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 04/93] gnu: rust-konst-macro-rules-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 05/93] gnu: rust-konst-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 06/93] gnu: rust-koibumi-base32-0.0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 07/93] gnu: rust-katex-doc-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:09 ` [bug#75068] [PATCH rust-team v2 08/93] gnu: rust-jwalk-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 09/93] gnu: rust-hyphenation-commons-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 10/93] gnu: rust-iana-time-zone-haiku-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 11/93] gnu: rust-inout-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 12/93] gnu: rust-is-macro-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 13/93] gnu: rust-is-ci-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 14/93] gnu: rust-iri-string-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 15/93] gnu: rust-jsonrpc-core-14: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 16/93] gnu: rust-jsonpath-lib-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 17/93] gnu: rust-juniper-codegen-0.14: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 18/93] gnu: rust-juniper-codegen-0.15: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 19/93] gnu: rust-kqueue-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 20/93] gnu: rust-k9-0.12: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 21/93] gnu: rust-k9-0.11: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 22/93] gnu: rust-language-tags-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 23/93] gnu: rust-language-tags-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 24/93] gnu: rust-lapack-0.19: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 25/93] gnu: rust-lexical-6: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 26/93] gnu: rust-lexical-5: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 27/93] gnu: rust-libmimalloc-sys-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 28/93] gnu: rust-libspa-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 29/93] gnu: rust-libz-sys-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 30/93] gnu: rust-libssh2-sys-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 31/93] gnu: rust-libssh2-sys-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 32/93] gnu: rust-libtest-mimic-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 33/93] gnu: rust-libtest-mimic-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 34/93] gnu: rust-libtest-mimic-0.6: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 35/93] gnu: rust-libtest-mimic-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 36/93] gnu: rust-libtest-mimic-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 37/93] gnu: rust-libtest-mimic-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 38/93] gnu: rust-libudev-sys-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 39/93] gnu: rust-libusb1-sys-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 40/93] gnu: rust-lv2-units-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 41/93] gnu: rust-rust-lzma-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 42/93] gnu: rust-magma-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 43/93] gnu: rust-markup-0.13: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 44/93] gnu: rust-matchit-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 45/93] gnu: rust-matches-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 46/93] gnu: rust-matrixcompare-core-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 47/93] gnu: rust-merge-derive-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 48/93] gnu: rust-metrics-macros-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 49/93] gnu: rust-muldiv-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 50/93] gnu: rust-nasm-rs-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 51/93] gnu: rust-nasm-rs-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 52/93] gnu: rust-nanorand-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 53/93] gnu: rust-nanorand-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 54/93] gnu: rust-nanorand-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 55/93] gnu: rust-nispor-1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 56/93] gnu: rust-nom8-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 57/93] gnu: rust-normalize-path-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 58/93] gnu: rust-notify-debouncer-mini-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 59/93] gnu: rust-ntest-proc-macro-helper-0.8: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 60/93] gnu: rust-ntest-proc-macro-helper-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` Herman Rimm via Guix-patches via [this message]
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 62/93] gnu: rust-openssl-macros-0.1: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 63/93] gnu: rust-ouroboros-0.17: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 64/93] gnu: rust-ouroboros-0.15: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 65/93] gnu: rust-ouroboros-0.14: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 66/93] gnu: rust-owo-colors-3: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 67/93] gnu: rust-owo-colors-4: " Herman Rimm via Guix-patches via
2024-12-24 20:10 ` [bug#75068] [PATCH rust-team v2 68/93] gnu: rust-parasail-sys-0.2: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 69/93] gnu: rust-pathfinder-geometry-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 70/93] gnu: rust-pathfinder-simd-0.5: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 71/93] gnu: rust-paw-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 72/93] gnu: rust-paw-attributes-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 73/93] gnu: rust-paw-raw-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 74/93] gnu: rust-paw-structopt-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 75/93] gnu: rust-perf-event-open-sys-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 76/93] gnu: rust-ping-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 77/93] gnu: rust-pipewire-0.7: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 78/93] gnu: rust-pretty-hex-0.4: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 79/93] gnu: rust-pretty-hex-0.3: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 80/93] gnu: rust-publicsuffix-1: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 81/93] gnu: rust-publicsuffix-2: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 82/93] gnu: rust-pulldown-cmark-to-cmark-7: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 83/93] gnu: rust-pulldown-cmark-to-cmark-10: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 84/93] gnu: rust-pulldown-cmark-escape-0.11: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 85/93] gnu: rust-pyo3-0.23: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 86/93] gnu: rust-pyo3-0.22: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 87/93] gnu: rust-pyo3-0.21: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 88/93] gnu: rust-pyo3-0.20: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 89/93] gnu: rust-pyo3-0.19: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 90/93] gnu: rust-pyo3-0.18: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 91/93] gnu: rust-pyo3-0.16: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 92/93] gnu: rust-pyo3-0.15: " Herman Rimm via Guix-patches via
2024-12-24 20:11 ` [bug#75068] [PATCH rust-team v2 93/93] gnu: rust-pyo3-0.13: " Herman Rimm via Guix-patches via
2024-12-25 8:17 ` bug#75068: [PATCH rust-team v2 00/93] Order (gnu packages crates-io) up to Efraim Flashner
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=c29fc75104429bda728d8f8abb1746b90239562a.1735070698.git.herman@rimm.ee \
--to=guix-patches@gnu.org \
--cc=75068@debbugs.gnu.org \
--cc=efraim@flashner.co.il \
--cc=herman@rimm.ee \
/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).