git: 3bf88f001d59 - main - textproc/py-markdown: Update to 3.4.4
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 21 Feb 2024 15:25:21 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=3bf88f001d59c500844d1a96e66a0c3410247463
commit 3bf88f001d59c500844d1a96e66a0c3410247463
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2024-02-21 14:45:45 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2024-02-21 15:08:02 +0000
textproc/py-markdown: Update to 3.4.4
Changes: https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md
https://python-markdown.github.io/changelog/
---
textproc/py-markdown/Makefile | 8 ++++----
textproc/py-markdown/distinfo | 6 +++---
textproc/py-markdown/files/patch-pyproject.toml | 11 +++++++++++
textproc/py-markdown/files/patch-setup.py | 11 -----------
4 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/textproc/py-markdown/Makefile b/textproc/py-markdown/Makefile
index a7124152b6a7..b8687e4fee50 100644
--- a/textproc/py-markdown/Makefile
+++ b/textproc/py-markdown/Makefile
@@ -1,6 +1,5 @@
PORTNAME= markdown
-PORTVERSION= 3.3.7
-PORTREVISION= 1
+PORTVERSION= 3.4.4
CATEGORIES= textproc python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -8,12 +7,13 @@ DISTNAME= Markdown-${PORTVERSION}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Python implementation of Markdown
-WWW= https://github.com/Python-Markdown/markdown
+WWW= https://python-markdown.github.io/ \
+ https://github.com/Python-Markdown/markdown
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.md
-BUILD_DEPENDS= ${PY_SETUPTOOLS} \
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=61.2:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR}
diff --git a/textproc/py-markdown/distinfo b/textproc/py-markdown/distinfo
index 8b4bc402b24c..b0cb1950ffaa 100644
--- a/textproc/py-markdown/distinfo
+++ b/textproc/py-markdown/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1652122699
-SHA256 (Markdown-3.3.7.tar.gz) = cbb516f16218e643d8e0a95b309f77eb118cb138d39a4f27851e6a63581db874
-SIZE (Markdown-3.3.7.tar.gz) = 324130
+TIMESTAMP = 1708449464
+SHA256 (Markdown-3.4.4.tar.gz) = 225c6123522495d4119a90b3a3ba31a1e87a70369e03f14799ea9c0d7183a3d6
+SIZE (Markdown-3.4.4.tar.gz) = 324459
diff --git a/textproc/py-markdown/files/patch-pyproject.toml b/textproc/py-markdown/files/patch-pyproject.toml
new file mode 100644
index 000000000000..2f9653e94718
--- /dev/null
+++ b/textproc/py-markdown/files/patch-pyproject.toml
@@ -0,0 +1,11 @@
+--- pyproject.toml.orig 2023-07-25 15:13:14 UTC
++++ pyproject.toml
+@@ -4,7 +4,7 @@ requires = ["setuptools>=61.2", "wheel"]
+ build-backend = "setuptools.build_meta"
+
+ [project]
+-name = 'Markdown'
++name = 'markdown'
+ dynamic = ['version']
+ description = "Python implementation of John Gruber's Markdown."
+ readme = {file = 'README.md', content-type='text/markdown'}
diff --git a/textproc/py-markdown/files/patch-setup.py b/textproc/py-markdown/files/patch-setup.py
deleted file mode 100644
index 671ba7436192..000000000000
--- a/textproc/py-markdown/files/patch-setup.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py.orig 2022-05-05 19:08:30 UTC
-+++ setup.py
-@@ -56,7 +56,7 @@ with open('README.md') as f:
- long_description = f.read()
-
- setup(
-- name='Markdown',
-+ name='markdown',
- version=__version__,
- url='https://Python-Markdown.github.io/',
- project_urls={