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

This commit is contained in:
Silvan Calarco 2024-01-05 16:57:26 +01:00
parent 6293132f13
commit 541071759c
2 changed files with 55 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-zope-i18nmessageid
Message Identifiers for internationalization.

View File

@ -0,0 +1,53 @@
%define pkgname zope.i18nmessageid
Name: python-zope-i18nmessageid
Version: 6.1.0
Release: 1mamba
Summary: Message Identifiers for internationalization
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/zopefoundation/zope.i18nmessageid
Source: https://pypi.debian.net/zope.i18nmessageid/zope.i18nmessageid-%{version}.tar.gz
License: ZPL-2.1
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libpython311-devel
BuildRequires: python3.11dist(setuptools)
## AUTOBUILDREQ-END
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n zope.i18nmessageid-%{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_sitearch}/%{pkgname}-%{version}.dist-info
%{python_sitearch}/%{pkgname}-%{version}.dist-info/*
%{python_sitearch}/zope.i18nmessageid-%{version}-py*-nspkg.pth
%dir %{python_sitearch}/zope/i18nmessageid
%{python_sitearch}/zope/i18nmessageid/*
%changelog
* Mon Dec 25 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 6.1.0-1mamba
- package created using the webbuild interface