From b3838cadb1e377cb2193483cfdac20d05ef0f4c7 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sun, 28 Jan 2024 09:14:14 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.5.0-1mamba;Sat May 06 2023] --- README.md | 2 ++ python-requirements-parser.spec | 54 +++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 python-requirements-parser.spec diff --git a/README.md b/README.md index 851674d..11bcb66 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-requirements-parser +A small Python module for parsing Pip requirement files. + diff --git a/python-requirements-parser.spec b/python-requirements-parser.spec new file mode 100644 index 0000000..cada762 --- /dev/null +++ b/python-requirements-parser.spec @@ -0,0 +1,54 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-requirements-parser +Version: 0.5.0 +Release: 1mamba +Summary: A small Python module for parsing Pip requirement files +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/madpah/requirements-parser +Source: https://pypi.debian.net/requirements-parser/requirements-parser-%{version}.tar.gz +License: Apache License 2.0 +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +BuildRequires: python3.11dist(types-setuptools) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n requirements-parser-%{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}/pdm; do +# mv %{buildroot}${f}{,-%{?pyappend}} +#done +#%endif + +rm -f %{buildroot}%{python_sitelib}/{AUTHORS.rst,LICENSE,README.md} + +%files %{?pyappend} +%defattr(-,root,root) +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/requirements +%{python_sitelib}/requirements/* +%doc LICENSE + +%changelog +* Sat May 06 2023 Silvan Calarco 0.5.0-1mamba +- package created using the webbuild interface