Remove the python2 subpackage (rhbz#1761787)

This commit is contained in:
Charalampos Stratakis 2019-10-22 17:43:37 +02:00
parent ed6a939199
commit 6f87fd36b0

View File

@ -10,7 +10,7 @@
Name: python-requests
Version: 2.22.0
Release: 6%{?dist}
Release: 7%{?dist}
Summary: HTTP library, written in Python, for human beings
License: ASL 2.0
@ -47,32 +47,6 @@ cumbersome. Pythons built-in urllib2 module provides most of the HTTP
capabilities you should need, but the API is thoroughly broken. This library is
designed to make HTTP requests easy for developers.
%package -n python2-requests
Summary: HTTP library, written in Python, for human beings
%{?python_provide:%python_provide python2-requests}
BuildRequires: python2-devel
BuildRequires: python2-chardet
BuildRequires: python2-urllib3
BuildRequires: python2-idna
Requires: ca-certificates
Requires: python2-chardet >= 3.0.2
Requires: python2-urllib3 >= 1.21.1
Requires: python2-idna
%if 0%{?rhel} && 0%{?rhel} <= 6
BuildRequires: python-ordereddict
Requires: python-ordereddict
%endif
%description -n python2-requests
Most existing Python modules for sending HTTP requests are extremely verbose and
cumbersome. Pythons built-in urllib2 module provides most of the HTTP
capabilities you should need, but the API is thoroughly broken. This library is
designed to make HTTP requests easy for developers.
%package -n python%{python3_pkgversion}-requests
Summary: HTTP library, written in Python, for human beings
@ -109,12 +83,10 @@ rm -rf requests/cacert.pem
sed -i '/#!\/usr\/.*python/d' requests/certs.py
%build
%py2_build
%py3_build
%install
%py2_install
%py3_install
@ -123,13 +95,6 @@ sed -i '/#!\/usr\/.*python/d' requests/certs.py
PYTHONPATH=%{buildroot}%{python3_sitelib} %{__python3} -m pytest -v
%endif # tests
%files -n python2-requests
%license LICENSE
%doc README.md HISTORY.md
%{python2_sitelib}/*.egg-info
%{python2_sitelib}/requests/
%files -n python%{python3_pkgversion}-requests
%license LICENSE
%doc README.md HISTORY.md
@ -138,6 +103,9 @@ PYTHONPATH=%{buildroot}%{python3_sitelib} %{__python3} -m pytest -v
%changelog
* Tue Oct 22 2019 Charalampos Stratakis <cstratak@redhat.com> - 2.22.0-7
- Remove the python2 subpackage (rhbz#1761787)
* Wed Sep 18 2019 Petr Viktorin <pviktori@redhat.com> - 2.22.0-6
- Python 2: Remove tests and test dependencies