[python-redis] Enable Python3 support

Luke Macken lmacken at fedoraproject.org
Sat Jul 27 19:44:46 UTC 2013


commit 93944191769ce49e3fbe83d11a36a3ded0bf97b9
Author: Luke Macken <lmacken at redhat.com>
Date:   Sat Jul 27 15:39:35 2013 -0400

    Enable Python3 support

 python-redis.spec |   51 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 50 insertions(+), 1 deletions(-)
---
diff --git a/python-redis.spec b/python-redis.spec
index 32e6420..c24e38c 100644
--- a/python-redis.spec
+++ b/python-redis.spec
@@ -1,5 +1,6 @@
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
+%global with_python3 1
 %global upstream_name redis
 
 Name:           python-%{upstream_name}
@@ -17,35 +18,83 @@ BuildArch:      noarch
 BuildRequires:  python-devel
 BuildRequires:  python-py
 
+%if 0%{?with_python3}
+BuildRequires:  python3-devel
+BuildRequires:  python3-setuptools
+BuildRequires:  python3-py
+%endif
+
 %description
 This is a Python interface to the Redis key-value store.
 
+%if 0%{?with_python3}
+%package -n python3-redis
+Summary:        A Python3 client for redis
+Group:          Development/Languages
+
+%description -n python3-redis
+This is a Python interface to the Redis key-value store.
+%endif
+
 %prep
 %setup -q -n %{upstream_name}-%{version}
 
+%if 0%{?with_python3}
+rm -rf %{py3dir}
+cp -a . %{py3dir}
+%endif
+
 %build
+%if 0%{?with_python3}
+pushd %{py3dir}
+%{__python3} setup.py build
+popd
+%endif
+
 %{__python} setup.py build
 
 %install
 rm -rf %{buildroot}
+
+%if 0%{?with_python3}
+pushd %{py3dir}
+%{__python3} setup.py install --skip-build --root=%{buildroot}
+popd
+%endif
+
 %{__python} setup.py install -O1 --skip-build --root %{buildroot}
 
 %clean
 rm -rf %{buildroot}
 
 %check
+%if 0%{?with_python3}
+pushd %{py3dir}
+%{__python3} setup.py test
+popd
+%endif
+
 %{__python} setup.py test
 
 %files
 %defattr(-,root,root,-)
-%doc CHANGES LICENSE README.md
+%doc CHANGES LICENSE README.rst
 %{python_sitelib}/%{upstream_name}
 %{python_sitelib}/%{upstream_name}-%{version}-*.egg-info
 
+%if 0%{?with_python3}
+%files -n python3-redis
+%defattr(-,root,root,-)
+%doc CHANGES LICENSE README.rst
+%{python3_sitelib}/%{upstream_name}
+%{python3_sitelib}/%{upstream_name}-%{version}-*.egg-info
+%endif
+
 %changelog
 * Sat Jul 27 2013 Luke Macken <lmacken at redhat.com> - 2.7.6-1
 - Update to 2.7.6
 - Run the test suite
+- Add a python3 subpackage
 
 * Thu Feb 14 2013 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 2.7.2-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild


More information about the scm-commits mailing list