14
0

- 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
This commit is contained in:
2025-05-20 14:43:03 +00:00
committed by Git OBS Bridge
commit c83fd43560
6 changed files with 139 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8564212af679fc18d53f38681f16080fcd3d186073f23825c7ce86fadd3e3635
size 8509

View File

@@ -0,0 +1,43 @@
-------------------------------------------------------------------
Tue May 20 11:15:40 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- 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
-------------------------------------------------------------------
Tue Nov 12 15:08:49 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
- Fix the name of the package, it should be python-python-markdown-math
- Add proper Provides/Obsoletes
-------------------------------------------------------------------
Mon May 31 10:40:07 UTC 2021 - pgajdos@suse.com
- version update to 0.8
* GitLab-style math blocks are now supported in nested environments such
as lists.
- Thanks to Ran Shaham for the contribution.
* Tests now pass with Python-Markdown 3.3.
* This extension now requires Python ≥ 3.4 and Python-Markdown ≥ 3.0.
* Fixed deprecation warnings with Python-Markdown 3.x.
* Added support for GitLab-style delimiters.
-------------------------------------------------------------------
Mon May 31 10:28:42 UTC 2021 - pgajdos@suse.com
- %check: use %pyunittest rpm macro
-------------------------------------------------------------------
Thu Jan 3 01:57:01 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Trim foreign markup from description.
-------------------------------------------------------------------
Wed Jan 2 12:36:45 UTC 2019 - badshah400@gmail.com
- Initial package.

View File

@@ -0,0 +1,66 @@
#
# 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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:567395553dc4941e79b3789a1096dcabb3fda9539d150d558ef3507948b264a3
size 8680