commit c83fd435607b766f4b0e7d747e5eb5e38299f53b42b6ecf7880e3e530c041e78 Author: Matej Cepl Date: Tue May 20 14:43:03 2025 +0000 - 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 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/python-markdown-math-0.8.tar.gz b/python-markdown-math-0.8.tar.gz new file mode 100644 index 0000000..d9b00f6 --- /dev/null +++ b/python-markdown-math-0.8.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8564212af679fc18d53f38681f16080fcd3d186073f23825c7ce86fadd3e3635 +size 8509 diff --git a/python-python-markdown-math.changes b/python-python-markdown-math.changes new file mode 100644 index 0000000..cf06581 --- /dev/null +++ b/python-python-markdown-math.changes @@ -0,0 +1,43 @@ +------------------------------------------------------------------- +Tue May 20 11:15:40 UTC 2025 - John Paul Adrian Glaubitz + +- 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 + +- 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 + +- Trim foreign markup from description. + +------------------------------------------------------------------- +Wed Jan 2 12:36:45 UTC 2019 - badshah400@gmail.com + +- Initial package. diff --git a/python-python-markdown-math.spec b/python-python-markdown-math.spec new file mode 100644 index 0000000..3947c64 --- /dev/null +++ b/python-python-markdown-math.spec @@ -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 diff --git a/python_markdown_math-0.9.tar.gz b/python_markdown_math-0.9.tar.gz new file mode 100644 index 0000000..b428448 --- /dev/null +++ b/python_markdown_math-0.9.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567395553dc4941e79b3789a1096dcabb3fda9539d150d558ef3507948b264a3 +size 8680