Cleanup spec file conditionals
This commit is contained in:
parent
ba6138005d
commit
5e62c3cead
@ -2,13 +2,13 @@
|
|||||||
%{!?__python2: %global __python2 /usr/bin/python2}
|
%{!?__python2: %global __python2 /usr/bin/python2}
|
||||||
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
%{!?python2_version: %global python2_version %(%{__python2} -c "import sys; sys.stdout.write(sys.version[:3])")}
|
%{!?python2_version: %global python2_version %(%{__python2} -c "import sys; sys.stdout.write(sys.version[:3])")}
|
||||||
%if 0%{?fedora}
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
||||||
%global with_python3 1
|
%global with_python3 1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: python-virtualenv
|
Name: python-virtualenv
|
||||||
Version: 15.1.0
|
Version: 15.1.0
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: Tool to create isolated Python environments
|
Summary: Tool to create isolated Python environments
|
||||||
|
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
@ -24,17 +24,10 @@ Patch0: check-exec_dir.patch
|
|||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: python2-devel
|
BuildRequires: python2-devel
|
||||||
|
|
||||||
%if 0%{?fedora}
|
|
||||||
BuildRequires: python-sphinx
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
|
BuildRequires: python-sphinx
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
|
|
||||||
%if 0%{?fedora}
|
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python3-sphinx
|
||||||
%endif
|
|
||||||
|
|
||||||
%endif # with_python3
|
%endif # with_python3
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -58,15 +51,13 @@ written by Ian Bicking, and sponsored by the Open Planning Project. It is
|
|||||||
licensed under an MIT-style permissive license
|
licensed under an MIT-style permissive license
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?fedora}
|
%if 0%{?with_python3}
|
||||||
%package -n python-virtualenv-doc
|
%package -n python-virtualenv-doc
|
||||||
Summary: Documentation for python virtualenv
|
Summary: Documentation for python virtualenv
|
||||||
|
|
||||||
%description -n python-virtualenv-doc
|
%description -n python-virtualenv-doc
|
||||||
Documentation for python virtualenv.
|
Documentation for python virtualenv.
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%package -n python3-virtualenv
|
%package -n python3-virtualenv
|
||||||
Summary: Tool to create isolated Python environments
|
Summary: Tool to create isolated Python environments
|
||||||
|
|
||||||
@ -93,19 +84,15 @@ licensed under an MIT-style permissive license
|
|||||||
%{py2_build}
|
%{py2_build}
|
||||||
|
|
||||||
# Build docs on Fedora
|
# Build docs on Fedora
|
||||||
%if 0%{?fedora}
|
%if 0%{?with_python3}
|
||||||
%{__python2} setup.py build_sphinx
|
%{__python2} setup.py build_sphinx
|
||||||
rm -f build/sphinx/html/.buildinfo
|
rm -f build/sphinx/html/.buildinfo
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%{py3_build}
|
%{py3_build}
|
||||||
|
|
||||||
# Build docs on Fedora
|
# Build docs on Fedora
|
||||||
%if 0%{?fedora}
|
|
||||||
%{__python3} setup.py build_sphinx
|
%{__python3} setup.py build_sphinx
|
||||||
rm -f build/sphinx/html/.buildinfo
|
rm -f build/sphinx/html/.buildinfo
|
||||||
%endif
|
|
||||||
%endif # with_python3
|
%endif # with_python3
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -132,13 +119,11 @@ cp %{buildroot}/%{_bindir}/virtualenv %{buildroot}/%{_bindir}/virtualenv-2
|
|||||||
%{_bindir}/virtualenv-2
|
%{_bindir}/virtualenv-2
|
||||||
%{_bindir}/virtualenv-%{python2_version}
|
%{_bindir}/virtualenv-%{python2_version}
|
||||||
|
|
||||||
%if 0%{?fedora}
|
%if 0%{?with_python3}
|
||||||
# Include sphinx docs on Fedora
|
# Include sphinx docs on Fedora
|
||||||
%files -n python-virtualenv-doc
|
%files -n python-virtualenv-doc
|
||||||
%doc build/sphinx/*
|
%doc build/sphinx/*
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%files -n python3-virtualenv
|
%files -n python3-virtualenv
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%doc docs/*rst PKG-INFO AUTHORS.txt
|
%doc docs/*rst PKG-INFO AUTHORS.txt
|
||||||
@ -154,6 +139,9 @@ cp %{buildroot}/%{_bindir}/virtualenv %{buildroot}/%{_bindir}/virtualenv-2
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 15.1.0-3
|
||||||
|
- Cleanup spec file conditionals
|
||||||
|
|
||||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 15.1.0-2
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 15.1.0-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user