From 514e403876d050900c55c98baa8cb89ead7dbd43 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:26:02 +0100 Subject: [PATCH] package created using the webbuild interface [release 3.0.0-1mamba;Tue Dec 12 2023] --- README.md | 2 ++ python-markdown-it-py.spec | 53 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 python-markdown-it-py.spec diff --git a/README.md b/README.md index e6a6f27..7d55c26 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-markdown-it-py +Python port of markdown-it. Markdown parsing, done right. + diff --git a/python-markdown-it-py.spec b/python-markdown-it-py.spec new file mode 100644 index 0000000..cd5db84 --- /dev/null +++ b/python-markdown-it-py.spec @@ -0,0 +1,53 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-markdown-it-py +Version: 3.0.0 +Release: 1mamba +Summary: Python port of markdown-it. Markdown parsing, done right +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/executablebooks/markdown-it-py +Source: https://pypi.debian.net/markdown-it-py/markdown-it-py-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: (python3.11dist(mdurl) >= 0.1 with python3.11dist(mdurl) < 1) +BuildRequires: libpython311-devel +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n markdown-it-py-%{version} + +%build +CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} -m installer --destdir=%{buildroot} dist/*.whl + +%if "%{?with_pyver}" != "3" +# Rename any conflicting file outside of python site packages tree +for f in %{_bindir}/markdown-it; do + mv %{buildroot}${f}{,-%{?pyappend}} +done +%endif + +%files %{?pyappend} +%defattr(-,root,root) +%{_bindir}/markdown-it* +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/markdown_it +%{python_sitelib}/markdown_it/* +%doc LICENSE + +%changelog +* Tue Dec 12 2023 Silvan Calarco 3.0.0-1mamba +- package created using the webbuild interface