From dd8f1deaa6d757c93d195921f598401d48a78a8c Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:36:04 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.14.1-1mamba;Fri Dec 29 2023] --- README.md | 2 ++ python-rpm-spec.spec | 52 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 python-rpm-spec.spec diff --git a/README.md b/README.md index d7e0660..bfae274 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-rpm-spec +Python module for parsing RPM spec files. + diff --git a/python-rpm-spec.spec b/python-rpm-spec.spec new file mode 100644 index 0000000..0b97bd5 --- /dev/null +++ b/python-rpm-spec.spec @@ -0,0 +1,52 @@ +%define pkgname %(echo %name | tr - _) +Name: python-rpm-spec +Version: 0.14.1 +Release: 1mamba +Summary: Python module for parsing RPM spec files +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/bkircher/python-rpm-spec +Source: https://github.com/bkircher/python-rpm-spec.git/v%{version}/python-rpm-spec-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +## AUTOBUILDREQ-END +BuildRequires: python-flit-py3 + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q + +%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}/pdm; do +# mv %{buildroot}${f}{,-%{?pyappend}} +#done +#%endif + +%files %{?pyappend} +%defattr(-,root,root) +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/pyrpm +%{python_sitelib}/pyrpm/* +%doc AUTHORS LICENSE + +%changelog +* Fri Dec 29 2023 Silvan Calarco 0.14.1-1mamba +- package created using the webbuild interface