From e1ca44c170aa7bd3cbf5fa03ddf0499962fb6ecd Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 10 Aug 2024 11:22:17 +0200 Subject: [PATCH] package created using the webbuild interface [release 0.20.0-1mamba;Fri Aug 09 2024] --- README.md | 2 ++ python-prometheus_client.spec | 51 +++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 python-prometheus_client.spec diff --git a/README.md b/README.md index 60e2855..541ebef 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-prometheus_client +Python client for the Prometheus monitoring system. + diff --git a/python-prometheus_client.spec b/python-prometheus_client.spec new file mode 100644 index 0000000..49a2f74 --- /dev/null +++ b/python-prometheus_client.spec @@ -0,0 +1,51 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-prometheus_client +Version: 0.20.0 +Release: 1mamba +Summary: Python client for the Prometheus monitoring system +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/prometheus/client_python +Source: https://pypi.debian.net/prometheus-client/prometheus_client-%{version}.tar.gz +License: Apache License 2.0 +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n prometheus_client-%{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}/%{pkgname} +%{python_sitelib}/%{pkgname}/* +%doc LICENSE + +%changelog +* Fri Aug 09 2024 Silvan Calarco 0.20.0-1mamba +- package created using the webbuild interface