General cleanup of the specfile
- python_sitelib was defined but never used - _with_python3 was True, so I removed the ifs - python3_pkgversion is defined on both Fedora and EPEL - %{py3dir} is deprecated and not needed here - use %pyX_build and %pyX_install macros, stop using %{__python} - run tests against the installed version - some cruft removal
This commit is contained in:
parent
cb02c8bebb
commit
7e81914aaa
@ -1,12 +1,3 @@
|
|||||||
%global _with_python3 1
|
|
||||||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())")}
|
|
||||||
|
|
||||||
%if 0%{?fedora}
|
|
||||||
%{!?python3_pkgversion: %global python3_pkgversion 3}
|
|
||||||
%else
|
|
||||||
%{!?python3_pkgversion: %global python3_pkgversion 34}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?_module_build}
|
%if 0%{?_module_build}
|
||||||
# Don't run tests on module-build for now
|
# Don't run tests on module-build for now
|
||||||
# See: https://bugzilla.redhat.com/show_bug.cgi?id=1450608
|
# See: https://bugzilla.redhat.com/show_bug.cgi?id=1450608
|
||||||
@ -90,7 +81,6 @@ cumbersome. Python’s built-in urllib2 module provides most of the HTTP
|
|||||||
capabilities you should need, but the API is thoroughly broken. This library is
|
capabilities you should need, but the API is thoroughly broken. This library is
|
||||||
designed to make HTTP requests easy for developers.
|
designed to make HTTP requests easy for developers.
|
||||||
|
|
||||||
%if 0%{?_with_python3}
|
|
||||||
%package -n python%{python3_pkgversion}-requests
|
%package -n python%{python3_pkgversion}-requests
|
||||||
Summary: HTTP library, written in Python, for human beings
|
Summary: HTTP library, written in Python, for human beings
|
||||||
|
|
||||||
@ -116,7 +106,6 @@ Most existing Python modules for sending HTTP requests are extremely verbose and
|
|||||||
cumbersome. Python’s built-in urllib2 module provides most of the HTTP
|
cumbersome. Python’s built-in urllib2 module provides most of the HTTP
|
||||||
capabilities you should need, but the API is thoroughly broken. This library is
|
capabilities you should need, but the API is thoroughly broken. This library is
|
||||||
designed to make HTTP requests easy for developers.
|
designed to make HTTP requests easy for developers.
|
||||||
%endif
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n requests-%{version}
|
%autosetup -p1 -n requests-%{version}
|
||||||
@ -124,61 +113,35 @@ designed to make HTTP requests easy for developers.
|
|||||||
# Unbundle the certificate bundle from mozilla.
|
# Unbundle the certificate bundle from mozilla.
|
||||||
rm -rf requests/cacert.pem
|
rm -rf requests/cacert.pem
|
||||||
|
|
||||||
%if 0%{?_with_python3}
|
|
||||||
rm -rf %{py3dir}
|
|
||||||
cp -a . %{py3dir}
|
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if 0%{?_with_python3}
|
%py2_build
|
||||||
pushd %{py3dir}
|
%py3_build
|
||||||
%{__python3} setup.py build
|
|
||||||
|
|
||||||
popd
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%{__python} setup.py build
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
%py2_install
|
||||||
%if 0%{?_with_python3}
|
%py3_install
|
||||||
pushd %{py3dir}
|
|
||||||
%{__python3} setup.py install --skip-build --root $RPM_BUILD_ROOT
|
|
||||||
popd
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
|
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
%check
|
%check
|
||||||
PYTHONPATH=./ py.test
|
PYTHONPATH=%{buildroot}%{python2_sitelib} %{__python2} -m pytest -v
|
||||||
%if 0%{?_with_python3}
|
PYTHONPATH=%{buildroot}%{python3_sitelib} %{__python3} -m pytest -v
|
||||||
pushd %{py3dir}
|
|
||||||
PYTHONPATH=./ py.test-%{python3_pkgversion}
|
|
||||||
popd
|
|
||||||
%endif
|
|
||||||
%endif # tests
|
%endif # tests
|
||||||
|
|
||||||
|
|
||||||
%files -n python2-requests
|
%files -n python2-requests
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{!?_licensedir:%global license %%doc}
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.rst HISTORY.rst
|
%doc README.rst HISTORY.rst
|
||||||
%{python2_sitelib}/*.egg-info
|
%{python2_sitelib}/*.egg-info
|
||||||
%dir %{python2_sitelib}/requests
|
%{python2_sitelib}/requests/
|
||||||
%{python2_sitelib}/requests/*
|
|
||||||
|
|
||||||
%if 0%{?_with_python3}
|
|
||||||
%files -n python%{python3_pkgversion}-requests
|
%files -n python%{python3_pkgversion}-requests
|
||||||
%{!?_licensedir:%global license %%doc}
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.rst HISTORY.rst
|
%doc README.rst HISTORY.rst
|
||||||
%{python3_sitelib}/*.egg-info
|
%{python3_sitelib}/*.egg-info
|
||||||
%{python3_sitelib}/requests/
|
%{python3_sitelib}/requests/
|
||||||
%endif
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Apr 16 2018 Jeremy Cline <jeremy@jcline.org> - 2.18.4-4
|
* Mon Apr 16 2018 Jeremy Cline <jeremy@jcline.org> - 2.18.4-4
|
||||||
|
Loading…
Reference in New Issue
Block a user