14
0

Accepting request 1059949 from home:eroca:python

Initial commit of pymdown-extensions at version 9.9.1

OBS-URL: https://build.opensuse.org/request/show/1059949
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymdown-extensions?expand=0&rev=1
This commit is contained in:
2023-01-21 07:41:07 +00:00
committed by Git OBS Bridge
commit d09333804d
5 changed files with 99 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:e996d65c7dccfc114fc6a905fb506ff28b376729544cf34ffc2d833c4fe5818b
size 1031320

View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Thu Jan 19 08:49:26 UTC 2023 - Elisei Roca <eroca@mailbox.org>
- Initial commit of pymdown-extensions at version 9.9.1

View File

@@ -0,0 +1,67 @@
#
# spec file for package python-pymdown-extensions
#
# Copyright (c) 2023 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/
#
Name: python-pymdown-extensions
Version: 9.9.1
Release: 0
Summary: Extension pack for Python Markdown
License: MIT
URL: https://github.com/facelessuser/pymdown-extensions
Source: https://github.com/facelessuser/pymdown-extensions/archive/refs/tags/%{version}.tar.gz#/pymdown-extensions-%{version}.tar.gz
BuildRequires: %{python_module Markdown >= 3.2}
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
# test requirements
BuildRequires: %{python_module PyYAML >= 3.10}
BuildRequires: %{python_module Pygments}
BuildRequires: %{python_module pytest}
#
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Markdown >= 3.2
BuildArch: noarch
%python_subpackages
%description
PyMdown Extensions is a collection of extensions for Python Markdown.
They were originally written to make writing documentation more enjoyable.
Covering a wide range of solutions, and while not every extension is needed
by all people, there is usually at least one useful extension for anybody.
%prep
%setup -q -n pymdown-extensions-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
find %{buildroot} -type f -name "*.py" -exec chmod a-x {} +
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc README.md
%license LICENSE.md
%{python_sitelib}/pymdownx
%{python_sitelib}/pymdown_extensions-%{version}.dist-info
%changelog