package created using the webbuild interface [release 4.0-1mamba;Mon Dec 25 2023]

This commit is contained in:
Silvan Calarco 2024-01-06 11:10:07 +01:00
parent 1f467089bd
commit cd3262d27a
2 changed files with 56 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-flufl-bounce
Email bounce detectors.

54
python-flufl-bounce.spec Normal file
View File

@ -0,0 +1,54 @@
%define pkgname flufl.bounce
Name: python-flufl-bounce
Version: 4.0
Release: 1mamba
Summary: Email bounce detectors
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://fluflbounce.readthedocs.io/en/latest/
Source: https://pypi.debian.net/flufl.bounce/flufl.bounce-%{version}.tar.gz
License: Apache License 2.0
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython311-devel
BuildRequires: python3.11dist(atpublic)
BuildRequires: python3.11dist(zope.interface)
## AUTOBUILDREQ-END
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n flufl.bounce-%{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/*
%{python_sitelib}/%{pkgname}-%{version}-py*-nspkg.pth
%dir %{python_sitelib}/flufl/bounce
%{python_sitelib}/flufl/bounce/*
%doc LICENSE
%changelog
* Mon Dec 25 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 4.0-1mamba
- package created using the webbuild interface