From 92fad7adef470af2e8d3f16837c9f384bed3354c Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 25 Oct 2024 20:23:37 +0200 Subject: [PATCH] package created using the webbuild interface [release 0.2.0-1mamba;Thu Oct 24 2024] --- README.md | 2 ++ python-propcache.spec | 52 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 python-propcache.spec diff --git a/README.md b/README.md index bdd4f21..4132574 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-propcache +Accelerated property cache. + diff --git a/python-propcache.spec b/python-propcache.spec new file mode 100644 index 0000000..5b15802 --- /dev/null +++ b/python-propcache.spec @@ -0,0 +1,52 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-propcache +Version: 0.2.0 +Release: 1mamba +Summary: Accelerated property cache +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/aio-libs/propcache +Source: https://pypi.debian.net/propcache/propcache-%{version}.tar.gz +License: Apache License 2.0 +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libpython311-devel +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n propcache-%{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/* +%dir %{python_sitearch}/%{pkgname} +%{python_sitearch}/%{pkgname}/* +%doc LICENSE + +%changelog +* Thu Oct 24 2024 Silvan Calarco 0.2.0-1mamba +- package created using the webbuild interface