17
0
Files
python-python-markdown-math/python-python-markdown-math.spec
Matej Cepl c83fd43560 - Update to 0.9
* Fixed handling of begin/end inside inline math.
    - Thanks to Tianxiang Xia for the bug report.
  * Modernized packaging.
  * Python ≥ 3.9 and setuptools ≥ 77.0 are now required.
- Adjust upstream source name in spec file
- Update BuildRequires from pyproject.toml

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-markdown-math?expand=0&rev=7
2025-05-20 14:43:03 +00:00

67 lines
2.1 KiB
RPMSpec

#
# spec file for package python-python-markdown-math
#
# Copyright (c) 2025 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-python-markdown-math
Version: 0.9
Release: 0
Summary: Math extension for Python-Markdown
License: BSD-3-Clause
Provides: python-markdown-math = %version-%release
Obsoletes: python-markdown-math < %version-%release
URL: https://github.com/mitya57/python-markdown-math
Source: https://files.pythonhosted.org/packages/source/p/python_markdown_math/python_markdown_math-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 77.0}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Markdown
BuildArch: noarch
# SECTION Required for tests in %%check
BuildRequires: %{python_module Markdown}
# /SECTION
Provides: python-markdown-math = %version
Obsoletes: python-markdown-math < %version
%python_subpackages
%description
This extension adds math formulas support to Python-Markdown.
%prep
%autosetup -p1 -n python_markdown_math-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pyunittest discover -v
%files %{python_files}
%license LICENSE
%doc README.md changelog
%{python_sitelib}/mdx_math.py
%pycache_only %{python_sitelib}/__pycache__/mdx_math*.pyc
%{python_sitelib}/python_markdown_math-%{version}*-info
%changelog