diff --git a/textproc/py-marko/Makefile b/textproc/py-marko/Makefile index 9c9a4d7a8bc2..dcd02f92ff32 100644 --- a/textproc/py-marko/Makefile +++ b/textproc/py-marko/Makefile @@ -1,22 +1,22 @@ PORTNAME= marko -PORTVERSION= 1.2.2 +PORTVERSION= 1.3.0 CATEGORIES= textproc python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Markdown parser with high extensibility WWW= https://github.com/frostming/marko LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= python:3.6+ +USES= python:3.7+ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes post-patch: @${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py .include diff --git a/textproc/py-marko/distinfo b/textproc/py-marko/distinfo index 338d6fd13fdc..3b94341eb8d2 100644 --- a/textproc/py-marko/distinfo +++ b/textproc/py-marko/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664767988 -SHA256 (marko-1.2.2.tar.gz) = d467c3ad450be693505cb8eb7054718efe3f14fccc2310588f9bc9c1d992ef94 -SIZE (marko-1.2.2.tar.gz) = 140763 +TIMESTAMP = 1675191093 +SHA256 (marko-1.3.0.tar.gz) = 8e52155860ebfb0394f92bc1ca7e5a30e4fca5392d71bf2af2b11971e8972667 +SIZE (marko-1.3.0.tar.gz) = 141071 diff --git a/textproc/py-marko/files/setup.py b/textproc/py-marko/files/setup.py index b3ff443756e7..d8040d085f37 100644 --- a/textproc/py-marko/files/setup.py +++ b/textproc/py-marko/files/setup.py @@ -1,56 +1,56 @@ # -*- coding: utf-8 -*- from setuptools import setup import codecs with codecs.open('README.md', encoding="utf-8") as fp: long_description = fp.read() EXTRAS_REQUIRE = { 'toc': [ 'python-slugify', ], 'codehilite': [ 'pygments', ], } ENTRY_POINTS = { 'console_scripts': [ 'marko = marko.cli:main', ], } setup_kwargs = { 'name': 'marko', 'version': '%%PORTVERSION%%', 'description': 'A markdown parser with high extensibility.', 'long_description': long_description, 'license': 'MIT', 'author': '', 'author_email': 'Frost Ming ', 'maintainer': None, 'maintainer_email': None, 'url': 'https://github.com/frostming/marko', 'packages': [ 'marko', 'marko.ext', 'marko.ext.gfm', ], 'package_data': {'': ['*']}, 'long_description_content_type': 'text/markdown', 'classifiers': [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ], 'extras_require': EXTRAS_REQUIRE, - 'python_requires': '>=3.6', + 'python_requires': '>=3.7', 'entry_points': ENTRY_POINTS, } setup(**setup_kwargs)