forked from pool/python-waitress
Accepting request 180848 from home:dirkmueller:branches:devel:languages:python
- update to 0.8.5: - Fix runner multisegment imports in some Python 2 revisions (see https://github.com/Pylons/waitress/pull/34). - For compatibility, WSGIServer is now an alias of TcpWSGIServer. The signature of BaseWSGIServer is now compatible with WSGIServer pre-0.8.4. - Add a command-line runner called ``waitress-serve`` to allow Waitress to run WSGI applications without any addional machinery. This is essentially a thin wrapper around the ``waitress.serve()`` function. - Allow parallel testing (e.g., under ``detox`` or ``nosetests --processes``) using PID-dependent port / socket for functest servers. - Fix integer overflow errors on large buffers. Thanks to Marcin Kuzminski for the patch. See: https://github.com/Pylons/waitress/issues/22 - Add support for listening on Unix domain sockets. OBS-URL: https://build.opensuse.org/request/show/180848 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-waitress?expand=0&rev=6
This commit is contained in:
parent
3570f2efdf
commit
c11a7084a4
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 25 11:28:09 UTC 2013 - dmueller@suse.com
|
||||||
|
|
||||||
|
- update to 0.8.5:
|
||||||
|
- Fix runner multisegment imports in some Python 2 revisions (see
|
||||||
|
https://github.com/Pylons/waitress/pull/34).
|
||||||
|
- For compatibility, WSGIServer is now an alias of TcpWSGIServer. The
|
||||||
|
signature of BaseWSGIServer is now compatible with WSGIServer pre-0.8.4.
|
||||||
|
- Add a command-line runner called ``waitress-serve`` to allow Waitress
|
||||||
|
to run WSGI applications without any addional machinery. This is
|
||||||
|
essentially a thin wrapper around the ``waitress.serve()`` function.
|
||||||
|
- Allow parallel testing (e.g., under ``detox`` or ``nosetests --processes``)
|
||||||
|
using PID-dependent port / socket for functest servers.
|
||||||
|
- Fix integer overflow errors on large buffers. Thanks to Marcin Kuzminski
|
||||||
|
for the patch. See: https://github.com/Pylons/waitress/issues/22
|
||||||
|
- Add support for listening on Unix domain sockets.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 2 12:47:10 UTC 2013 - speilicke@suse.com
|
Thu May 2 12:47:10 UTC 2013 - speilicke@suse.com
|
||||||
|
|
||||||
|
@ -13,15 +13,16 @@
|
|||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: python-waitress
|
Name: python-waitress
|
||||||
Version: 0.8.3
|
Version: 0.8.5
|
||||||
Release: 0
|
Release: 0
|
||||||
License: ZPL-2.1
|
|
||||||
Summary: Waitress WSGI server
|
Summary: Waitress WSGI server
|
||||||
Url: https://github.com/Pylons/waitress
|
License: ZPL-2.1
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
|
Url: https://github.com/Pylons/waitress
|
||||||
Source: http://pypi.python.org/packages/source/w/waitress/waitress-%{version}.tar.gz
|
Source: http://pypi.python.org/packages/source/w/waitress/waitress-%{version}.tar.gz
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: python-distribute
|
BuildRequires: python-distribute
|
||||||
@ -63,6 +64,7 @@ python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc COPYRIGHT.txt LICENSE.txt README.rst
|
%doc COPYRIGHT.txt LICENSE.txt README.rst
|
||||||
|
%{_bindir}/waitress-serve
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b650c2753555fbc77e2ef2c22310c6e9c3e5584f7dd97ed82a39c30e9244b114
|
|
||||||
size 101245
|
|
3
waitress-0.8.5.tar.gz
Normal file
3
waitress-0.8.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:302efc3e8b0f7e43da58fdbb67f13c088d09dc378e55ad19078cfbf02ef44228
|
||||||
|
size 112208
|
Loading…
Reference in New Issue
Block a user