From aa8efbcfe31ed6bb1368bb9ba19a967100dccb3b63efd5ff386cb21592df4b11 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Tue, 21 Mar 2023 08:10:59 +0000 Subject: [PATCH] Accepting request 1072831 from home:ojkastl_buildservice:Branch_devel_languages_python new package python-mkdocs-material-extensions OBS-URL: https://build.opensuse.org/request/show/1072831 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mkdocs-material-extensions?expand=0&rev=1 --- .gitattributes | 23 +++++++++ .gitignore | 1 + _service | 3 ++ mkdocs_material_extensions-1.1.1.tar.gz | 3 ++ python-mkdocs-material-extensions.changes | 4 ++ python-mkdocs-material-extensions.spec | 63 +++++++++++++++++++++++ 6 files changed, 97 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 _service create mode 100644 mkdocs_material_extensions-1.1.1.tar.gz create mode 100644 python-mkdocs-material-extensions.changes create mode 100644 python-mkdocs-material-extensions.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/_service b/_service new file mode 100644 index 0000000..fbbd978 --- /dev/null +++ b/_service @@ -0,0 +1,3 @@ + + + diff --git a/mkdocs_material_extensions-1.1.1.tar.gz b/mkdocs_material_extensions-1.1.1.tar.gz new file mode 100644 index 0000000..6eea44d --- /dev/null +++ b/mkdocs_material_extensions-1.1.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c003da71e2cc2493d910237448c672e00cefc800d3d6ae93d2fc69979e3bd93 +size 11131 diff --git a/python-mkdocs-material-extensions.changes b/python-mkdocs-material-extensions.changes new file mode 100644 index 0000000..dbd7739 --- /dev/null +++ b/python-mkdocs-material-extensions.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Sat Mar 18 10:16:45 UTC 2023 - Johannes Kastl + +- new package python-mkdocs-material-extensions diff --git a/python-mkdocs-material-extensions.spec b/python-mkdocs-material-extensions.spec new file mode 100644 index 0000000..8dcbd38 --- /dev/null +++ b/python-mkdocs-material-extensions.spec @@ -0,0 +1,63 @@ +# +# spec file for package python-mkdocs-material-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-mkdocs-material-extensions +Version: 1.1.1 +Release: 0 +Summary: Extension pack for Python Markdown +License: MIT +URL: https://github.com/facelessuser/mkdocs-material-extensions +Source: https://files.pythonhosted.org/packages/source/m/mkdocs_material_extensions/mkdocs_material_extensions-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module hatch} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools} +# SECTION test requirements +BuildRequires: %{python_module beautifulsoup4} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module Markdown} +BuildRequires: %{python_module mkdocs-material} +# /SECTION +BuildRequires: fdupes +BuildArch: noarch +%python_subpackages + +%description +Extension pack for Python Markdown + +%prep +%setup -q -n mkdocs_material_extensions-%{version} + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +# skip TestEmoji.test_twemoji that needs internet access +%pytest -k 'not test_twemoji' + +%files %{python_files} +%doc README.md changelog.md +%license LICENSE.md +%{python_sitelib}/materialx +%{python_sitelib}/mkdocs_material_extensions-%{version}.dist-info + +%changelog