14
0
Files
python-eventlet/python-eventlet.spec
Sascha Peilicke 14e6a99309 - Update to version 0.9.17:
+ ZeroMQ support calling send and recv from multiple greenthreads
  + SSL: unwrap() sends data, and so it needs trampolining
  + hubs.epolls: Fix imports for exception handler
  + db_pool: Fix .clear() when min_size > 0
  + db_pool: Add MySQL's insert_id() method
  + db_pool: Close connections after timeout, fix get-after-close race
    condition with using TpooledConnectionPool
  + threading monkey patch fixes
  + pools: Better accounting of current_size in pools.Pool
  + wsgi: environ['RAW_PATH_INFO'] with request path as received from client
  + wsgi: log_output flag
  + wsgi: Limit HTTP header size
  + wsgi: Configurable maximum URL length
  + SO_REUSEADDR now correctly set.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-eventlet?expand=0&rev=6
2012-11-23 11:00:07 +00:00

79 lines
2.6 KiB
RPMSpec

#
# spec file for package python-eventlet
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-eventlet
Version: 0.9.17
Release: 0
Url: http://eventlet.net
Summary: Highly concurrent networking library
License: MIT
Group: Development/Languages/Python
Source: http://pypi.python.org/packages/source/e/eventlet/eventlet-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-Sphinx
BuildRequires: python-devel
BuildRequires: python-distribute
BuildRequires: python-greenlet
Requires: python-greenlet
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
%description
Eventlet is a concurrent networking library for Python that allows you to
change how you run your code, not how you write it.
It uses epoll or libevent for highly scalable non-blocking I/O. Coroutines
ensure that the developer uses a blocking style of programming that is similar
to threading, but provide the benefits of non-blocking I/O. The event dispatch
is implicit, which means you can easily use Eventlet from the Python
interpreter, or as a small part of a larger application.
%package doc
Summary: Highly concurrent networking library - Documentation
Group: Development/Libraries/Python
Requires: %{name} = %{version}
%description doc
Documentation for the python-eventlet package.
%prep
%setup -q -n eventlet-%{version}
sed -i "s|^#!.*||" eventlet/support/greendns.py # Fix non-executable script
%build
python setup.py build
python setup.py build_sphinx && rm build/sphinx/html/.buildinfo
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS LICENSE NEWS README README.twisted
%{python_sitelib}/*
%files doc
%defattr(-,root,root,-)
%doc build/sphinx/html examples
%changelog