unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 68207@debbugs.gnu.org
Cc: Felix Gruber <felgru@posteo.net>,
	Sharlatan Hellseher <sharlatanus@gmail.com>,
	Lars-Dominik Braun <lars@6xq.net>, Marius Bakke <marius@gnu.org>,
	Munyoki Kilyungi <me@bonfacemunyoki.com>,
	Sharlatan Hellseher <sharlatanus@gmail.com>,
	jgart <jgart@dismail.de>
Subject: [bug#68207] [PATCH v4 1/8] gnu: python-markdown-it-py: Update to 3.0.0.
Date: Tue, 13 Feb 2024 14:15:38 +0000	[thread overview]
Message-ID: <9c3d89f5eb0359dc6493dfc0d24667d2a5c6b484.1707833700.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1704207105.git.felgru@posteo.net>

From: Felix Gruber <felgru@posteo.net>

* gnu/packages/python-xyz.scm (python-markdown-it-py): Update to 3.0.0.
[propagated-inputs]: Remove python-typing-extensions; add python-commonmark,
python-linkify-it-py, python-markdown, python-mistletoe,
python-mistune, python-panflute, python-psutil, and python-pyyaml.
[native-inputs]: Remove python-flit; add python-flit-core.

Change-Id: I5dc06b163ddbec0a32a9d7c3da2c834b2e74cd74
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
 gnu/packages/python-xyz.scm | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a645c45a4c..6a28836acf 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5881,19 +5881,26 @@ (define-public python-makefun
 (define-public python-markdown-it-py
   (package
     (name "python-markdown-it-py")
-    (version "2.1.0")
+    (version "3.0.0")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "markdown-it-py" version))
               (sha256
                (base32
-                "1nh75i72584r70alhqc479gys04s5m5g3vq601yf2njbs7z5jzng"))))
+                "1swgvyiavak0nmfb31lq5zck5chwhmyf6qb6qwpcav86zaa0mxp3"))))
     (build-system pyproject-build-system)
     (arguments (list #:tests? #f))      ;pypi source does not contains tests
-    (native-inputs (list python-flit))
+    (native-inputs (list python-flit-core))
     (propagated-inputs
-     (list python-mdurl
-           python-typing-extensions))
+     (list python-commonmark
+           python-linkify-it-py
+           python-markdown
+           python-mdurl
+           python-mistletoe
+           python-mistune
+           python-panflute
+           python-psutil
+           python-pyyaml))
     (home-page "https://github.com/executablebooks/markdown-it-py")
     (synopsis "Python port of markdown-it")
     (description

base-commit: e9a6c7094822bc859d0694eeaf8f434317219367
-- 
2.41.0





  parent reply	other threads:[~2024-02-13 14:18 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-02 15:03 [bug#68207] [PATCH 0/5] Update python-textual to 0.46.0 Felix Gruber
2024-01-02 15:05 ` [bug#68207] [PATCH 1/5] gnu: python-markdown-it-py: Update to 3.0.0 Felix Gruber
2024-01-02 15:05 ` [bug#68207] [PATCH 2/5] gnu: python-mdit-py-plugins: Update to 0.4.0 Felix Gruber
2024-01-02 15:05 ` [bug#68207] [PATCH 3/5] gnu: Add python-pygments-next Felix Gruber
2024-01-02 15:05 ` [bug#68207] [PATCH 4/5] gnu: python-rich: Update to 13.7.0 Felix Gruber
2024-01-02 15:05 ` [bug#68207] [PATCH 5/5] gnu: python-textual: Update to 0.46.0 Felix Gruber
2024-02-12 17:55 ` [bug#68207] [PATCH v2 0/5] Update python-textual to 0.50.1 Felix Gruber
2024-02-12 18:04   ` [bug#68207] [PATCH v3 " Felix Gruber
2024-02-12 18:04     ` [bug#68207] [PATCH v3 1/5] gnu: python-markdown-it-py: Update to 3.0.0 Felix Gruber
2024-02-12 18:04     ` [bug#68207] [PATCH v3 2/5] gnu: python-mdit-py-plugins: Update to 0.4.0 Felix Gruber
2024-02-12 18:04     ` [bug#68207] [PATCH v3 3/5] gnu: Add python-pygments-next Felix Gruber
2024-02-12 18:04     ` [bug#68207] [PATCH v3 4/5] gnu: python-rich: Update to 13.7.0 Felix Gruber
2024-02-12 18:04     ` [bug#68207] [PATCH v3 5/5] gnu: python-textual: Update to 0.50.1 Felix Gruber
2024-02-12 17:55 ` [bug#68207] [PATCH v2 1/5] gnu: python-markdown-it-py: Update to 3.0.0 Felix Gruber
2024-02-12 17:55 ` [bug#68207] [PATCH v2 2/5] gnu: python-mdit-py-plugins: Update to 0.4.0 Felix Gruber
2024-02-12 17:55 ` [bug#68207] [PATCH v2 3/5] gnu: Add python-pygments-next Felix Gruber
2024-02-12 17:55 ` [bug#68207] [PATCH v2 4/5] gnu: python-rich: Update to 13.7.0 Felix Gruber
2024-02-12 17:55 ` [bug#68207] [PATCH v2 5/5] gnu: python-textual: Update to 0.50.1 Felix Gruber
2024-02-13 14:13 ` [bug#68207] [PATCH 0/5] Update python-textual to 0.46.0 Sharlatan Hellseher
2024-02-13 14:15 ` Sharlatan Hellseher [this message]
2024-02-13 14:15   ` [bug#68207] [PATCH v4 2/8] gnu: python-mdit-py-plugins: Update to 0.4.0 Sharlatan Hellseher
2024-02-13 14:15   ` [bug#68207] [PATCH v4 3/8] gnu: Add python-pygments-next Sharlatan Hellseher
2024-02-13 14:15   ` [bug#68207] [PATCH v4 4/8] gnu: python-rich: Update to 13.7.0 Sharlatan Hellseher
2024-02-13 14:15   ` [bug#68207] [PATCH v4 5/8] gnu: python-textual: Update to 0.50.1 Sharlatan Hellseher
2024-02-13 14:15   ` [bug#68207] [PATCH v4 6/8] gnu: python-jupytext: Update to 1.15.0 Sharlatan Hellseher
2024-02-13 14:15   ` [bug#68207] [PATCH v4 7/8] gnu: python-lightning-cloud: Disable tests Sharlatan Hellseher
2024-02-13 14:15   ` [bug#68207] [PATCH v4 8/8] gnu: python-myst-parser: Relax some requirements Sharlatan Hellseher
2024-02-27  9:24 ` bug#68207: [PATCH 0/5] Update python-textual to 0.46.0 Ricardo Wurmus

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=9c3d89f5eb0359dc6493dfc0d24667d2a5c6b484.1707833700.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=68207@debbugs.gnu.org \
    --cc=felgru@posteo.net \
    --cc=jgart@dismail.de \
    --cc=lars@6xq.net \
    --cc=marius@gnu.org \
    --cc=me@bonfacemunyoki.com \
    /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).