aboutsummaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-02-21 14:45:45 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-02-21 15:08:02 +0000
commit3bf88f001d59c500844d1a96e66a0c3410247463 (patch)
treead30441b4eb3650e7ada8f1e62ef6bc680d80659 /textproc
parent4be0cca18366489be74ad948a6005e99cff65257 (diff)
downloadports-3bf88f001d59c500844d1a96e66a0c3410247463.tar.gz
ports-3bf88f001d59c500844d1a96e66a0c3410247463.zip
textproc/py-markdown: Update to 3.4.4
Diffstat (limited to 'textproc')
-rw-r--r--textproc/py-markdown/Makefile8
-rw-r--r--textproc/py-markdown/distinfo6
-rw-r--r--textproc/py-markdown/files/patch-pyproject.toml11
-rw-r--r--textproc/py-markdown/files/patch-setup.py11
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={