1
0
python-myst-parser/python-myst-parser.spec
Dirk Mueller 82f6c956e9 - update to 3.0.1:
* Account for the final directive option having an empty value
  * Re-allow indented directive option blocks
  * Add support for Python 3.12
  * Update docutils requirement from >=0.16,<0.21 to
    >=0.18,<0.22
  * Allow for use of the `line-block` directive
  * Emits sphinx include-read event
  * Nested parse attribution in `attr_block`
  * Directive option parsing
  * Improve directive parsing warnings
  * Allow for opening external links in new tabs (#856)
  * Replace black, isort, pyupgrade with ruff formatter
  * remove redundant mypy config
  * Add additional Ruff lints (and fix issues)
  * mypy- disallow 'any generics'
  * Fix docutils deprecation in option parsing

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-myst-parser?expand=0&rev=10
2024-05-09 08:40:14 +00:00

131 lines
5.0 KiB
RPMSpec

#
# spec file for package python-myst-parser
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-myst-parser
Version: 3.0.1
Release: 0
Summary: An extended commonmark compliant parser, with bridges to docutils & sphinx
License: MIT
URL: https://myst-parser.readthedocs.io/
Source: https://github.com/executablebooks/MyST-Parser/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
# PyPI tarball does not contain tests
#Source: https://files.pythonhosted.org/packages/source/m/myst-parser/myst-parser-%%{version}.tar.gz
BuildRequires: %{python_module flit-core}
BuildRequires: %{python_module Jinja2}
BuildRequires: %{python_module PyYAML}
BuildRequires: %{python_module Sphinx}
BuildRequires: %{python_module docutils >= 0.18 with %python-docutils < 0.22}
BuildRequires: %{python_module markdown-it-py}
BuildRequires: %{python_module markdown-it-py}
BuildRequires: %{python_module mdit-py-plugins}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# SECTION tests
BuildRequires: %{python_module beautifulsoup4}
BuildRequires: %{python_module pygments}
BuildRequires: %{python_module pytest-regressions}
BuildRequires: %{python_module pytest}
# SECTION docs
#BuildRequires: python3-Sphinx
#BuildRequires: python3-Jinja2
#BuildRequires: python3-PyYAML
#BuildRequires: python3-Sphinx >= 3.1
#BuildRequires: python3-docutils >= 0.15
#BuildRequires: python3-markdown-it-py >= 1
#BuildRequires: python3-mdit-py-plugins < 0.4
# /SECTION
Requires: python-Jinja2
Requires: python-PyYAML
Requires: python-Sphinx
Requires: python-docutils >= 0.18
Requires: python-markdown-it-py
Requires: python-mdit-py-plugins
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
%python_subpackages
%description
MyST is a flavor of markdown that is designed for simplicity, flexibility, and extensibility.
This is the reference implementation of MyST Markdown, as well as a collection of tools to support working with MyST in Python and Sphinx.
It contains an extended CommonMark (https://commonmark.org)-compliant parser using markdown-it-py (https://markdown-it-py.readthedocs.io/), as well as a Sphinx (https://www.sphinx-doc.org) extension that allows to write MyST Markdown in Sphinx.
%prep
%setup -q -n MyST-Parser-%{version}
rm docs/.gitignore
%build
%pyproject_wheel
# docs require unavailable sphinxcontrib-bibtex
#pushd docs
#PYTHONPATH=.. make html
#rm _build/html/.buildinfo
#popd
%install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/myst-anchors
%python_clone -a %{buildroot}%{_bindir}/myst-docutils-html
%python_clone -a %{buildroot}%{_bindir}/myst-docutils-html5
%python_clone -a %{buildroot}%{_bindir}/myst-docutils-latex
%python_clone -a %{buildroot}%{_bindir}/myst-docutils-pseudoxml
%python_clone -a %{buildroot}%{_bindir}/myst-docutils-xml
%python_clone -a %{buildroot}%{_bindir}/myst-docutils-demo
%python_clone -a %{buildroot}%{_bindir}/myst-inv
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# no python-sphinx-pytest package
ignore="--ignore=tests/test_renderers/test_fixtures_sphinx.py"
ignore+=" --ignore=tests/test_renderers/test_myst_refs.py"
ignore+=" --ignore=tests/test_sphinx/test_sphinx_builds.py"
# no python-pytest-param-files package
ignore+=" --ignore=tests/test_renderers/test_myst_config.py"
# no python-pytest-param-files package
donttest="test_parsing or test_errors or test_render or test_html_to_nodes or test_html_ast or test_html_round_trip"
%pytest $ignore -k "not ($donttest)"
%post
%{python_install_alternative myst-anchors myst-docutils-html myst-docutils-html5 myst-docutils-latex myst-docutils-pseudoxml myst-docutils-xml myst-docutils-demo myst-inv}
%postun
%python_uninstall_alternative myst-anchors
%files %{python_files}
%{python_sitelib}/myst_parser/
%{python_sitelib}/myst_parser-%{version}*-info
%license LICENSE
%doc CHANGELOG.md README.md
%python_alternative %{_bindir}/myst-anchors
%python_alternative %{_bindir}/myst-docutils-html
%python_alternative %{_bindir}/myst-docutils-html5
%python_alternative %{_bindir}/myst-docutils-latex
%python_alternative %{_bindir}/myst-docutils-pseudoxml
%python_alternative %{_bindir}/myst-docutils-xml
%python_alternative %{_bindir}/myst-docutils-demo
%python_alternative %{_bindir}/myst-inv
%doc docs
%changelog