package created using the webbuild interface [release 3.0.0-1mamba;Tue Dec 12 2023]

This commit is contained in:
Silvan Calarco 2024-01-06 11:26:02 +01:00
parent ffd1c67376
commit 514e403876
2 changed files with 55 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-markdown-it-py
Python port of markdown-it. Markdown parsing, done right.

View File

@ -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 <silvan.calarco@mambasoft.it>
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 <silvan.calarco@mambasoft.it> 3.0.0-1mamba
- package created using the webbuild interface