package created using the webbuild interface [release 8.0.2-1mamba;Thu Jan 04 2024]

This commit is contained in:
Silvan Calarco 2024-01-06 11:10:19 +01:00
parent ed13435bde
commit 598dc5a8a3
2 changed files with 56 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-flufl_lock
NFS-safe file locking with timeouts for POSIX and Windows.

54
python-flufl_lock.spec Normal file
View File

@ -0,0 +1,54 @@
%define pkgname %(echo %name | cut -d- -f2- | tr - _)
Name: python-flufl_lock
Version: 8.0.2
Release: 1mamba
Summary: NFS-safe file locking with timeouts for POSIX and Windows
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://flufllock.readthedocs.io/
Source: https://pypi.debian.net/flufl.lock/flufl_lock-%{version}.tar.gz
License: Apache License 2.0
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython311-devel
BuildRequires: python3.11dist(atpublic)
BuildRequires: python3.11dist(psutil)
## AUTOBUILDREQ-END
BuildRequires: python-pdm_backend-py3
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n flufl_lock-%{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
%files %{?pyappend}
%defattr(-,root,root)
%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info
%{python_sitelib}/%{pkgname}-%{version}.dist-info/*
%dir %{python_sitelib}/flufl/lock
%{python_sitelib}/flufl/lock/*
%doc LICENSE
%changelog
* Thu Jan 04 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 8.0.2-1mamba
- package created using the webbuild interface