From: Murilo via Guix-patches via <guix-patches@gnu.org>
To: 74519@debbugs.gnu.org
Cc: Murilo <murilo@disroot.org>, Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#74519] [PATCH rust-team 07/30] gnu: Add rust-pulldown-cmark-0.11.
Date: Sun, 24 Nov 2024 23:48:18 -0300 [thread overview]
Message-ID: <bae3fbd9f4d25a147e64e693cbb9db339e7d3327.1732501656.git.murilo@disroot.org> (raw)
In-Reply-To: <cover.1732501656.git.murilo@disroot.org>
* gnu/packages/crates-io.scm (rust-pulldown-cmark-0.11): New variable.
(rust-pulldown-cmark-0.9): Inherit from rust-pulldown-cmark-0.11.
(rust-pulldown-cmark-0.8): Inherit from rust-pulldown-cmark-0.11.
(rust-pulldown-cmark-0.4): Inherit from rust-pulldown-cmark-0.11.
Change-Id: Ief81ecbd8d793a0d7d4d20047c8237ef63563942
---
gnu/packages/crates-io.scm | 41 +++++++++++++++++++++++++++++---------
1 file changed, 32 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 86fc3c7b12..f2258cff82 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -60920,8 +60920,37 @@ (define-public rust-pulldown-cmark-to-cmark-10
in codeblocks, while assuring quality with a powerful test suite.")
(license license:asl2.0)))
+(define-public rust-pulldown-cmark-0.11
+ (package
+ (name "rust-pulldown-cmark")
+ (version "0.11.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "pulldown-cmark" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "09a6q582pblnj8xflbx6zb29zgnwg0r6rg9wi54wdikq5k9434v7"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
+ ("rust-getopts" ,rust-getopts-0.2)
+ ("rust-memchr" ,rust-memchr-2)
+ ("rust-pulldown-cmark-escape" ,rust-pulldown-cmark-escape-0.11)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-unicase" ,rust-unicase-2))
+ #:cargo-development-inputs (("rust-bincode" ,rust-bincode-1)
+ ("rust-lazy-static" ,rust-lazy-static-1)
+ ("rust-regex" ,rust-regex-1)
+ ("rust-serde-json" ,rust-serde-json-1))))
+ (home-page "https://github.com/pulldown-cmark/pulldown-cmark")
+ (synopsis "Pull parser for CommonMark")
+ (description "This package provides a pull parser for CommonMark.")
+ (license license:expat)))
+
(define-public rust-pulldown-cmark-0.9
(package
+ (inherit rust-pulldown-cmark-0.11)
(name "rust-pulldown-cmark")
(version "0.9.3")
(source (origin
@@ -60931,7 +60960,6 @@ (define-public rust-pulldown-cmark-0.9
(sha256
(base32
"166rhmwk42ffirrzhv7lmsh9f3my6xv1ggmb66fgzv57y3qs58bp"))))
- (build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-bitflags" ,rust-bitflags-1)
@@ -60947,16 +60975,11 @@ (define-public rust-pulldown-cmark-0.9
("rust-markup5ever-rcdom" ,rust-markup5ever-rcdom-0.2)
("rust-regex" ,rust-regex-1)
("rust-serde-json" ,rust-serde-json-1)
- ("rust-tendril" ,rust-tendril-0.4))))
- (home-page "https://github.com/raphlinus/pulldown-cmark")
- (synopsis "Pull parser for CommonMark")
- (description
- "This package provides a pull parser for CommonMark.")
- (license license:expat)))
+ ("rust-tendril" ,rust-tendril-0.4))))))
(define-public rust-pulldown-cmark-0.8
(package
- (inherit rust-pulldown-cmark-0.9)
+ (inherit rust-pulldown-cmark-0.11)
(name "rust-pulldown-cmark")
(version "0.8.0")
(source
@@ -61008,7 +61031,7 @@ (define-public rust-pulldown-cmark-to-cmark-7
(define-public rust-pulldown-cmark-0.4
(package
- (inherit rust-pulldown-cmark-0.8)
+ (inherit rust-pulldown-cmark-0.11)
(name "rust-pulldown-cmark")
(version "0.4.1")
(source
--
2.46.0
next prev parent reply other threads:[~2024-11-25 7:20 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-25 2:28 [bug#74519] [PATCH rust-team 00/30] Add helix Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 01/30] gnu: " Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 02/30] gnu: Add rust-nucleo-0.2 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 03/30] gnu: Add rust-cov-mark-1 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 04/30] gnu: Add rust-nucleo-matcher-0.2 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 05/30] gnu: Add rust-tree-sitter-0.22 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 06/30] gnu: Add rust-termini-1 Murilo via Guix-patches via
2024-11-25 2:48 ` Murilo via Guix-patches via [this message]
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 08/30] gnu: Add rust-pulldown-cmark-escape-0.11 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 09/30] gnu: Add rust-regex-cursor-0.1 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 10/30] gnu: Add rust-unicode-general-category-0.6 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 11/30] gnu: rust-hashbrown-0.14: Update to 0.14.5 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 12/30] gnu: rust-slotmap-1: Update to 1.0.7 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 13/30] gnu: rust-textwrap-0.16: Update to 0.16.1 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 14/30] gnu: rust-clipboard-win-5: Update to 5.4.0 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 15/30] gnu: rust-tokio-stream-0.1: Update to 0.1.16 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 16/30] gnu: Add rust-gix-submodule-0.11 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 17/30] gnu: Add rust-gix-status-0.10 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 18/30] gnu: Add rust-gix-ref-0.44 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 19/30] gnu: Add rust-gix-discover-0.32 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 20/30] gnu: Add rust-gix-dir-0.5 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 21/30] gnu: Add rust-gix-config-0.37 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 22/30] gnu: Add rust-gix-0.63 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 23/30] gnu: rust-open-5: Update to 5.3.1 Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 24/30] gnu: rust-gix-0.66: Update home-page Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 25/30] gnu: rust-gix-config-0.40: " Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 26/30] gnu: rust-gix-dir-0.8: " Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 27/30] gnu: rust-gix-discover-0.35: " Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 28/30] gnu: rust-gix-ref-0.47: " Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 29/30] gnu: rust-gix-status-0.13: " Murilo via Guix-patches via
2024-11-25 2:48 ` [bug#74519] [PATCH rust-team 30/30] gnu: rust-gix-submodule-0.14: " Murilo via Guix-patches via
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=bae3fbd9f4d25a147e64e693cbb9db339e7d3327.1732501656.git.murilo@disroot.org \
--to=guix-patches@gnu.org \
--cc=74519@debbugs.gnu.org \
--cc=efraim@flashner.co.il \
--cc=murilo@disroot.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).