14
0
2024-11-12 14:49:50 +00:00
committed by Git OBS Bridge
commit c3480e15d9
5 changed files with 113 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,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 <jengelh@inai.de>
- Trim foreign markup from description.
-------------------------------------------------------------------
Wed Jan 2 12:36:45 UTC 2019 - badshah400@gmail.com
- Initial package.

60
python-markdown-math.spec Normal file
View File

@@ -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