update to 0.23.2 [release 0.23.2-1mamba;Mon Jan 02 2023]

This commit is contained in:
Silvan Calarco 2024-01-06 11:14:47 +01:00
parent 2464b1c1b2
commit dd21b322fe
2 changed files with 67 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-httpx
The next generation HTTP client.

65
python-httpx.spec Normal file
View File

@ -0,0 +1,65 @@
%define pkgname %(echo %name | cut -d- -f2- | tr - _)
Name: python-httpx
Version: 0.23.2
Release: 1mamba
Summary: The next generation HTTP client
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/encode/httpx
Source: https://pypi.debian.net/httpx/httpx-%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython3-devel
BuildRequires: python3.7dist(certifi)
BuildRequires: python3.7dist(httpcore)
BuildRequires: python3.7dist(rfc3986)
BuildRequires: python3.7dist(sniffio)
## AUTOBUILDREQ-END
BuildRequires: python-hatch_fancy_pypi_readme-py3
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n httpx-%{version}
# Remove requirement for rtc3986 < 2
sed -i "s|\(rfc3986.*\),<2|\1|" pyproject.toml
sed -i "s|\(rfc3986.*\)<2,|\1|" PKG-INFO
%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}/httpx; do
mv %{buildroot}${f}{,-%{?pyappend}}
done
%endif
%files %{?pyappend}
%defattr(-,root,root)
%{_bindir}/httpx*
%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info
%{python_sitelib}/%{pkgname}-%{version}.dist-info/*
%dir %{python_sitelib}/%{pkgname}
%{python_sitelib}/%{pkgname}/*
%changelog
* Mon Jan 02 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.23.2-1mamba
- update to 0.23.2
* Tue Dec 06 2022 Automatic Build System <autodist@mambasoft.it> 0.23.1-1mamba
- automatic version update by autodist
* Sun Oct 02 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.23.0-1mamba
- package created using the webbuild interface