11c03c
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
11c03c
11c03c
%global _use_internal_dependency_generator 0
11c03c
%global __find_provides    %{_rpmconfigdir}/find-provides | grep -v core.so
11c03c
%global __find_requires    %{_rpmconfigdir}/find-requires | grep -v core.so
11c03c
11c03c
%global upstream_name gevent
11c03c
11c03c
Name:           python-%{upstream_name}
11c03c
Version:        1.0
11c03c
Release:        3%{?dist}
11c03c
Summary:        A coroutine-based Python networking library
11c03c
11c03c
Group:          Development/Languages
11c03c
License:        MIT
11c03c
URL:            http://www.gevent.org/
11c03c
Source0:        http://pypi.python.org/packages/source/g/gevent/gevent-%{version}.tar.gz
11c03c
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
11c03c
11c03c
BuildRequires:  python2-devel
11c03c
BuildRequires:  c-ares-devel
11c03c
BuildRequires:  libev-devel
11c03c
Requires:       python-greenlet
11c03c
11c03c
%description
11c03c
gevent is a coroutine-based Python networking library that uses greenlet to
11c03c
provide a high-level synchronous API on top of libevent event loop.
11c03c
11c03c
Features include:
11c03c
11c03c
  * convenient API around greenlets
11c03c
  * familiar synchronization primitives (gevent.event, gevent.queue)
11c03c
  * socket module that cooperates
11c03c
  * WSGI server on top of libevent-http
11c03c
  * DNS requests done through libevent-dns
11c03c
  * monkey patching utility to get pure Python modules to cooperate
11c03c
11c03c
%prep
11c03c
%setup -q -n %{upstream_name}-%{version}
11c03c
# Remove bundled libraries
11c03c
rm -r c-ares libev
11c03c
11c03c
%build
11c03c
CFLAGS="%{optflags} -I%{_includedir}/libev" %{__python} setup.py build
11c03c
11c03c
%install
11c03c
rm -rf %{buildroot}
11c03c
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
11c03c
# Fix non-standard-executable-perm error
11c03c
%{__chmod} 0755 %{buildroot}%{python_sitearch}/%{upstream_name}/core.so
11c03c
11c03c
%clean
11c03c
rm -rf %{buildroot}
11c03c
11c03c
%files
11c03c
%defattr(-,root,root,-)
11c03c
%doc LICENSE README.rst
11c03c
%{python_sitearch}/%{upstream_name}
11c03c
%{python_sitearch}/%{upstream_name}-%{version}-*.egg-info
11c03c
11c03c
%changelog
11c03c
* Tue Apr 18 2017 Josh Boyer <jwboyer@redhat.com> - 1.0-3
11c03c
- Bump and rebuild for all architectures
11c03c
11c03c
* Thu Apr 17 2014 Lokesh Mandvekar <lsm5@redhat.com> - 1.0-2
11c03c
- Rebuilt for RHEL-7
11c03c
11c03c
* Wed Jan 22 2014 Orion Poplawski <orion@cora.nwra.com> - 1.0-1
11c03c
- Update to 1.0
11c03c
11c03c
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.8-3
11c03c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
11c03c
11c03c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.8-2
11c03c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
11c03c
11c03c
* Thu Dec 27 2012 Silas Sewell <silas@sewell.org> - 0.13.8-1
11c03c
- Update to 0.13.8
11c03c
11c03c
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.6-3
11c03c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
11c03c
11c03c
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.6-2
11c03c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
11c03c
11c03c
* Sun Jul 24 2011 Silas Sewell <silas@sewell.org> - 0.13.6-1
11c03c
- Update to 0.13.6
11c03c
11c03c
* Wed Feb 16 2011 Silas Sewell <silas@sewell.ch> - 0.13.3-1
11c03c
- Update to 0.13.3
11c03c
11c03c
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.1-2
11c03c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
11c03c
11c03c
* Sat Oct 09 2010 Silas Sewell <silas@sewell.ch> - 0.13.1-1
11c03c
- Update to 0.13.1
11c03c
11c03c
* Tue Jul 27 2010 David Malcolm <dmalcolm@redhat.com> - 0.13.0-2
11c03c
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
11c03c
11c03c
* Wed Jul 14 2010 Silas Sewell <silas@sewell.ch> - 0.13.0-1
11c03c
- Update to 0.13.0
11c03c
11c03c
* Fri Apr 23 2010 Silas Sewell <silas@sewell.ch> - 0.12.2-2
11c03c
- Remove setuptools requirement
11c03c
11c03c
* Wed Mar 17 2010 Silas Sewell <silas@sewell.ch> - 0.12.2-1
11c03c
- Initial build