package created using the webbuild interface [release 0.5.0-1mamba;Sat May 06 2023]
This commit is contained in:
parent
258ae702ec
commit
b3838cadb1
@ -1,2 +1,4 @@
|
||||
# python-requirements-parser
|
||||
|
||||
A small Python module for parsing Pip requirement files.
|
||||
|
||||
|
54
python-requirements-parser.spec
Normal file
54
python-requirements-parser.spec
Normal file
@ -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 <silvan.calarco@mambasoft.it>
|
||||
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 <silvan.calarco@mambasoft.it> 0.5.0-1mamba
|
||||
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user