Skip to content

Commit

Permalink
textproc/py-myst-parser: Update to 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sunpoet committed Jun 9, 2022
1 parent 39a4689 commit b713541
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 19 deletions.
6 changes: 3 additions & 3 deletions textproc/py-myst-parser/Makefile
@@ -1,7 +1,7 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>

PORTNAME= myst-parser
PORTVERSION= 0.17.2
PORTVERSION= 0.18.0
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Expand All @@ -12,12 +12,12 @@ COMMENT= Extended commonmark compliant parser with bridges to docutils & sphinx
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE

RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>=0.15,1<0.18,1:textproc/py-docutils@${PY_FLAVOR} \
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>=0.15,1<0.19,1:textproc/py-docutils@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}markdown-it-py>=1.0.0<3.0.0:textproc/py-markdown-it-py@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}mdit-py-plugins>=0.3.0<0.4:textproc/py-mdit-py-plugins@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sphinx>=3.1,1<5,1:textproc/py-sphinx@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sphinx>=4,1<6,1:textproc/py-sphinx@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}typing-extensions>=0:devel/py-typing-extensions@${PY_FLAVOR}

USES= python:3.7+
Expand Down
6 changes: 3 additions & 3 deletions textproc/py-myst-parser/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1650970161
SHA256 (myst-parser-0.17.2.tar.gz) = 4c076d649e066f9f5c7c661bae2658be1ca06e76b002bb97f02a09398707686c
SIZE (myst-parser-0.17.2.tar.gz) = 61658
TIMESTAMP = 1654708398
SHA256 (myst-parser-0.18.0.tar.gz) = 739a4d96773a8e55a2cacd3941ce46a446ee23dcd6b37e06f73f551ad7821d86
SIZE (myst-parser-0.18.0.tar.gz) = 63698
33 changes: 20 additions & 13 deletions textproc/py-myst-parser/files/setup.py
Expand Up @@ -4,46 +4,53 @@
from distutils.core import setup

packages = \
['myst_parser']
['myst_parser',
'myst_parser.config',
'myst_parser.mdit_to_docutils',
'myst_parser.parsers',
'myst_parser.sphinx_ext']

package_data = \
{'': ['*']}

install_requires = \
['docutils>=0.15,<0.18',
['docutils>=0.15,<0.19',
'jinja2',
'markdown-it-py>=1.0.0,<3.0.0',
'mdit-py-plugins~=0.3.0',
'pyyaml',
'sphinx>=3.1,<5',
'sphinx>=4,<6',
'typing-extensions']

extras_require = \
{'code_style': ['pre-commit~=2.12'],
'linkify': ['linkify-it-py~=1.0'],
'rtd': ['ipython',
'sphinx-book-theme',
'sphinx-panels',
'sphinxcontrib-bibtex~=2.4',
'sphinx-design',
'sphinxext-rediraffe~=0.2.7',
'sphinxcontrib.mermaid~=0.7.1',
'sphinxext-opengraph~=0.6.3'],
'testing': ['beautifulsoup4',
'coverage',
'docutils~=0.17.0',
'coverage[toml]',
'pytest>=6,<7',
'pytest-cov',
'pytest-regressions',
'pytest-param-files~=0.3.4']}
'pytest-param-files~=0.3.4',
'sphinx-pytest']}

entry_points = \
{'console_scripts': ['myst-anchors = myst_parser.cli:print_anchors',
'myst-docutils-html = myst_parser.docutils_:cli_html',
'myst-docutils-html5 = myst_parser.docutils_:cli_html5',
'myst-docutils-latex = myst_parser.docutils_:cli_latex',
'myst-docutils-html = '
'myst_parser.parsers.docutils_:cli_html',
'myst-docutils-html5 = '
'myst_parser.parsers.docutils_:cli_html5',
'myst-docutils-latex = '
'myst_parser.parsers.docutils_:cli_latex',
'myst-docutils-pseudoxml = '
'myst_parser.docutils_:cli_pseudoxml',
'myst-docutils-xml = myst_parser.docutils_:cli_xml']}
'myst_parser.parsers.docutils_:cli_pseudoxml',
'myst-docutils-xml = '
'myst_parser.parsers.docutils_:cli_xml']}

setup(name='myst-parser',
version='%%PORTVERSION%%',
Expand Down

0 comments on commit b713541

Please sign in to comment.