From c3480e15d9fcc815b56acae4a25d4cd3ec1a77ec7683ace90e41e3fd9a9a20f4 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Tue, 12 Nov 2024 14:49:50 +0000 Subject: [PATCH] ok OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-markdown-math?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++ .gitignore | 1 + python-markdown-math-0.8.tar.gz | 3 ++ python-markdown-math.changes | 26 ++++++++++++++ python-markdown-math.spec | 60 +++++++++++++++++++++++++++++++++ 5 files changed, 113 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 python-markdown-math-0.8.tar.gz create mode 100644 python-markdown-math.changes create mode 100644 python-markdown-math.spec 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-markdown-math.changes b/python-markdown-math.changes new file mode 100644 index 0000000..4b0204c --- /dev/null +++ b/python-markdown-math.changes @@ -0,0 +1,26 @@ +------------------------------------------------------------------- +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-markdown-math.spec b/python-markdown-math.spec new file mode 100644 index 0000000..f703235 --- /dev/null +++ b/python-markdown-math.spec @@ -0,0 +1,60 @@ +# +# spec file for package python-markdown-math +# +# Copyright (c) 2021 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/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +%define skip_python2 1 +Name: python-markdown-math +Version: 0.8 +Release: 0 +Summary: Math extension for Python-Markdown +License: BSD-3-Clause +Group: Development/Languages/Python +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 setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-Markdown +BuildArch: noarch +# SECTION Required for tests in %%check +BuildRequires: %{python_module Markdown} +# /SECTION +%python_subpackages + +%description +This extension adds math formulas support to Python-Markdown. + +%prep +%setup -q + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pyunittest discover -v + +%files %{python_files} +%license LICENSE +%doc README.md changelog +%{python_sitelib}/* + +%changelog