You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-redis/python-redis.spec

118 lines
3.0 KiB

%global with_python3 1
14 years ago
%global upstream_name redis
Name: python-%{upstream_name}
11 years ago
Version: 2.9.1
12 years ago
Release: 1%{?dist}
11 years ago
Summary: Python 2 client for redis
14 years ago
License: MIT
URL: http://github.com/andymccurdy/redis-py
12 years ago
Source0: http://pypi.python.org/packages/source/r/redis/redis-%{version}.tar.gz
14 years ago
BuildArch: noarch
11 years ago
BuildRequires: python2-devel
BuildRequires: python-setuptools
BuildRequires: python-py
BuildRequires: pytest
BuildRequires: redis
14 years ago
11 years ago
%description
This is a Python 2 interface to the Redis key-value store.
%if 0%{?with_python3}
11 years ago
%package -n python3-redis
Summary: Python 3 client for redis
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-py
BuildRequires: python3-pytest
%description -n python3-redis
11 years ago
This is a Python 3 interface to the Redis key-value store.
%endif
14 years ago
%prep
11 years ago
%setup -qn %{upstream_name}-%{version}
rm -rf %{upstream_name}.egg-info
14 years ago
%if 0%{?with_python3}
rm -rf %{py3dir}
cp -a . %{py3dir}
%endif
14 years ago
%build
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py build
popd
%endif
11 years ago
%{__python2} setup.py build
14 years ago
%install
%if 0%{?with_python3}
pushd %{py3dir}
11 years ago
%{__python3} setup.py install -O1 --skip-build --root=%{buildroot}
popd
%endif
11 years ago
%{__python2} setup.py install -O1 --skip-build --root %{buildroot}
14 years ago
%check
redis-server &
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py test
popd
%endif
11 years ago
%{__python2} setup.py test
kill %1
14 years ago
%files
11 years ago
%doc CHANGES LICENSE PKG-INFO README.rst
%{python2_sitelib}/%{upstream_name}
%{python2_sitelib}/%{upstream_name}-%{version}-py%{python3_version}.egg-info
14 years ago
%if 0%{?with_python3}
%files -n python3-redis
11 years ago
%doc CHANGES LICENSE PKG-INFO README.rst
%{python3_sitelib}/%{upstream_name}
11 years ago
%{python3_sitelib}/%{upstream_name}-%{version}-py%{python2_version}.egg-info
%endif
14 years ago
%changelog
11 years ago
* Fri Feb 14 2014 Christopher Meng <rpm@cicku.me> - 2.9.1-1
- Update to 2.9.1
- Use generated egg instead of bundled egg
- Cleanup again
12 years ago
* Sat Jul 27 2013 Luke Macken <lmacken@redhat.com> - 2.7.6-1
- Update to 2.7.6
- Run the test suite
- Add a python3 subpackage
- Remove obsolete buildroot tag and cleanup
12 years ago
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
12 years ago
* Thu Dec 27 2012 Silas Sewell <silas@sewell.org> - 2.7.2-1
- Update to 2.7.2
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.9-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.9-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
14 years ago
* Sun Jul 24 2011 Silas Sewell <silas@sewell.org> - 2.4.9-1
- Update to 2.4.9
14 years ago
* Sun Mar 27 2011 Silas Sewell <silas@sewell.ch> - 2.2.4-1
- Update to 2.2.4
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
14 years ago
* Sat Sep 04 2010 Silas Sewell <silas@sewell.ch> - 2.0.0-1
- Initial build