15
0
forked from pool/python-gevent

Accepting request 445609 from devel:languages:python

- update to 1.1.2:
  * Python 2: ``sendall`` on a non-blocking socket could spuriously fail
    with a timeout.
  * If ``sys.stderr`` has been monkey-patched (not recommended),
    exceptions that the hub reports aren't lost and can still be caught.
    Reported in :issue:`825` by Jelle Smet.
  * :class:`selectors.SelectSelector` is properly monkey-patched
    regardless of the order of imports. Reported in :issue:`835` by
    Przemysław Węgrzyn.
  * Python 2: ``reload(site)`` no longer fails with a ``TypeError`` if
    gevent has been imported. Reported in :issue:`805` by Jake Hilton.
  * Nested callbacks that set and clear an Event no longer cause
    ``wait`` to return prematurely. Reported in :issue:`771` by Sergey
    Vasilyev.
  * Fix build on Solaris 10. Reported in :issue:`777` by wiggin15.
  * The ``ref`` parameter to :func:`gevent.os.fork_and_watch` was being ignored.
  * Python 3: :class:`gevent.queue.Channel` is now correctly iterable, instead of
    raising a :exc:`TypeError`.
  * Python 3: Add support for :meth:`socket.socket.sendmsg`,
    :meth:`socket.socket.recvmsg` and :meth:`socket.socket.recvmsg_into`
    on platforms where they are defined. Initial :pr:`773` by Jakub
    Klama.

OBS-URL: https://build.opensuse.org/request/show/445609
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-gevent?expand=0&rev=16
This commit is contained in:
2017-01-25 22:23:24 +00:00
committed by Git OBS Bridge
4 changed files with 31 additions and 5 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:34f7a5eca1326affe149eaa5467220d89002facd338028d2340868015407ae75
size 1968902

3
gevent-1.1.2.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cb15cf73d69a2eeefed330858f09634e2c50bf46da9f9e7635730fcfb872c02c
size 2007938

View File

@@ -1,3 +1,29 @@
-------------------------------------------------------------------
Tue Dec 13 14:46:50 UTC 2016 - dmueller@suse.com
- update to 1.1.2:
* Python 2: ``sendall`` on a non-blocking socket could spuriously fail
with a timeout.
* If ``sys.stderr`` has been monkey-patched (not recommended),
exceptions that the hub reports aren't lost and can still be caught.
Reported in :issue:`825` by Jelle Smet.
* :class:`selectors.SelectSelector` is properly monkey-patched
regardless of the order of imports. Reported in :issue:`835` by
Przemysław Węgrzyn.
* Python 2: ``reload(site)`` no longer fails with a ``TypeError`` if
gevent has been imported. Reported in :issue:`805` by Jake Hilton.
* Nested callbacks that set and clear an Event no longer cause
``wait`` to return prematurely. Reported in :issue:`771` by Sergey
Vasilyev.
* Fix build on Solaris 10. Reported in :issue:`777` by wiggin15.
* The ``ref`` parameter to :func:`gevent.os.fork_and_watch` was being ignored.
* Python 3: :class:`gevent.queue.Channel` is now correctly iterable, instead of
raising a :exc:`TypeError`.
* Python 3: Add support for :meth:`socket.socket.sendmsg`,
:meth:`socket.socket.recvmsg` and :meth:`socket.socket.recvmsg_into`
on platforms where they are defined. Initial :pr:`773` by Jakub
Klama.
-------------------------------------------------------------------
Thu Mar 10 20:20:38 UTC 2016 - toddrme2178@gmail.com

View File

@@ -20,13 +20,13 @@
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%endif
Name: python-gevent
Version: 1.1.0
Version: 1.1.2
Release: 0
Summary: Python network library that uses greenlet and libevent
License: MIT
Group: Development/Languages/Python
Url: http://www.gevent.org/
Source: http://pypi.python.org/packages/source/g/gevent/gevent-%{version}.tar.gz
Source: https://pypi.io/packages/source/g/gevent/gevent-%{version}.tar.gz
BuildRequires: libcares-devel
BuildRequires: libev-devel
#BuildRequires: python-Sphinx