Disable Python 2 build on RHEL 9+
This commit is contained in:
parent
9d1014eb0d
commit
6c87427e07
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Name: python-%{srcname}
|
Name: python-%{srcname}
|
||||||
Version: 0.18.1
|
Version: 0.18.1
|
||||||
Release: 7%{?dist}
|
Release: 8%{?dist}
|
||||||
Summary: Comprehensive HTTP client library
|
Summary: Comprehensive HTTP client library
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://pypi.python.org/pypi/httplib2
|
URL: https://pypi.python.org/pypi/httplib2
|
||||||
@ -14,12 +14,21 @@ Patch1: python-%{srcname}.certfile.patch
|
|||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
|
# There is an exception to ship python2-httplib2 on Fedora, for trac-spamfilter-plugin:
|
||||||
|
# https://pagure.io/fesco/issue/2266
|
||||||
|
%if 0%{?fedora}
|
||||||
|
%bcond_without python2
|
||||||
|
%else
|
||||||
|
%bcond_with python2
|
||||||
|
%endif
|
||||||
|
|
||||||
%global _description\
|
%global _description\
|
||||||
A comprehensive HTTP client library that supports many features left out of\
|
A comprehensive HTTP client library that supports many features left out of\
|
||||||
other HTTP libraries.
|
other HTTP libraries.
|
||||||
|
|
||||||
%description %{_description}
|
%description %{_description}
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
%package -n python2-%{srcname}
|
%package -n python2-%{srcname}
|
||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
%{?python_provide:%python_provide python2-%{srcname}}
|
%{?python_provide:%python_provide python2-%{srcname}}
|
||||||
@ -27,6 +36,7 @@ BuildRequires: python2-setuptools
|
|||||||
BuildRequires: python2-devel
|
BuildRequires: python2-devel
|
||||||
|
|
||||||
%description -n python2-%{srcname} %{_description}
|
%description -n python2-%{srcname} %{_description}
|
||||||
|
%endif
|
||||||
|
|
||||||
%package -n python3-%{srcname}
|
%package -n python3-%{srcname}
|
||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
@ -62,9 +72,11 @@ rm -r python3/python2
|
|||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%if %{with python2}
|
||||||
pushd python2
|
pushd python2
|
||||||
%py2_build
|
%py2_build
|
||||||
popd
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
pushd python3
|
pushd python3
|
||||||
%py3_build
|
%py3_build
|
||||||
@ -72,9 +84,11 @@ popd
|
|||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
%if %{with python2}
|
||||||
pushd python2
|
pushd python2
|
||||||
%py2_install
|
%py2_install
|
||||||
popd
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
pushd python3
|
pushd python3
|
||||||
%py3_install
|
%py3_install
|
||||||
@ -95,10 +109,12 @@ PYTHONPATH=%{buildroot}%{python3_sitelib} pytest -k "not test_unknown_server \
|
|||||||
popd
|
popd
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
%files -n python2-%{srcname}
|
%files -n python2-%{srcname}
|
||||||
%doc python2/README.md
|
%doc python2/README.md
|
||||||
%{python2_sitelib}/%{srcname}-*.egg-info/
|
%{python2_sitelib}/%{srcname}-*.egg-info/
|
||||||
%{python2_sitelib}/%{srcname}/
|
%{python2_sitelib}/%{srcname}/
|
||||||
|
%endif
|
||||||
|
|
||||||
%files -n python3-%{srcname}
|
%files -n python3-%{srcname}
|
||||||
%doc python3/README.md
|
%doc python3/README.md
|
||||||
@ -106,6 +122,9 @@ popd
|
|||||||
%{python3_sitelib}/%{srcname}/
|
%{python3_sitelib}/%{srcname}/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 24 2020 Miro Hrončok <mhroncok@redhat.com> - 0.18.1-8
|
||||||
|
- Disable Python 2 build on RHEL 9+
|
||||||
|
|
||||||
* Fri Sep 04 2020 Joel Capitao <jcapitao@redhat.com> - 0.18.1-7
|
* Fri Sep 04 2020 Joel Capitao <jcapitao@redhat.com> - 0.18.1-7
|
||||||
- Remove unused BR
|
- Remove unused BR
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user