pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/py-gunicorn py-gunicorn: updated to 19.9.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0ff835a06dc3
branches:  trunk
changeset: 310027:0ff835a06dc3
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Jul 04 03:43:12 2018 +0000

description:
py-gunicorn: updated to 19.9.0

19.9.0:
* fix: address a regression that prevented syslog support from working
* fix: correctly set REMOTE_ADDR on versions of Python 3 affected by
  Python Issue 30205 <https://bugs.python.org/issue30205>_
* fix: show zero response length correctly in access log
* fix: prevent raising :exc:AttributeError when --reload is not passed
  in case of a :exc:SyntaxError raised from the WSGI application.
* The internal module gunicorn.workers.async was renamed to gunicorn.workers.base_async
  since async is now a reserved word in Python 3.7.

diffstat:

 www/py-gunicorn/Makefile                             |   4 ++--
 www/py-gunicorn/PLIST                                |   8 ++++----
 www/py-gunicorn/distinfo                             |  12 ++++++------
 www/py-gunicorn/patches/patch-requirements__test.txt |  12 ++++++------
 4 files changed, 18 insertions(+), 18 deletions(-)

diffs (77 lines):

diff -r b7c5ca106dea -r 0ff835a06dc3 www/py-gunicorn/Makefile
--- a/www/py-gunicorn/Makefile  Wed Jul 04 03:38:34 2018 +0000
+++ b/www/py-gunicorn/Makefile  Wed Jul 04 03:43:12 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2018/05/06 09:10:48 adam Exp $
+# $NetBSD: Makefile,v 1.14 2018/07/04 03:43:12 adam Exp $
 
-DISTNAME=      gunicorn-19.8.1
+DISTNAME=      gunicorn-19.9.0
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=g/gunicorn/}
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
diff -r b7c5ca106dea -r 0ff835a06dc3 www/py-gunicorn/PLIST
--- a/www/py-gunicorn/PLIST     Wed Jul 04 03:38:34 2018 +0000
+++ b/www/py-gunicorn/PLIST     Wed Jul 04 03:43:12 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2018/04/30 08:48:07 adam Exp $
+@comment $NetBSD: PLIST,v 1.10 2018/07/04 03:43:12 adam Exp $
 bin/gunicorn-${PYVERSSUFFIX}
 bin/gunicorn_paster-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
@@ -101,12 +101,12 @@
 ${PYSITELIB}/gunicorn/workers/_gaiohttp.py
 ${PLIST.py3x}${PYSITELIB}/gunicorn/workers/_gaiohttp.pyc
 ${PLIST.py3x}${PYSITELIB}/gunicorn/workers/_gaiohttp.pyo
-${PYSITELIB}/gunicorn/workers/async.py
-${PYSITELIB}/gunicorn/workers/async.pyc
-${PYSITELIB}/gunicorn/workers/async.pyo
 ${PYSITELIB}/gunicorn/workers/base.py
 ${PYSITELIB}/gunicorn/workers/base.pyc
 ${PYSITELIB}/gunicorn/workers/base.pyo
+${PYSITELIB}/gunicorn/workers/base_async.py
+${PYSITELIB}/gunicorn/workers/base_async.pyc
+${PYSITELIB}/gunicorn/workers/base_async.pyo
 ${PYSITELIB}/gunicorn/workers/gaiohttp.py
 ${PYSITELIB}/gunicorn/workers/gaiohttp.pyc
 ${PYSITELIB}/gunicorn/workers/gaiohttp.pyo
diff -r b7c5ca106dea -r 0ff835a06dc3 www/py-gunicorn/distinfo
--- a/www/py-gunicorn/distinfo  Wed Jul 04 03:38:34 2018 +0000
+++ b/www/py-gunicorn/distinfo  Wed Jul 04 03:43:12 2018 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.8 2018/05/06 09:10:48 adam Exp $
+$NetBSD: distinfo,v 1.9 2018/07/04 03:43:12 adam Exp $
 
-SHA1 (gunicorn-19.8.1.tar.gz) = a563f7e06cf26a9811c2558d528ad346bb9bd4c3
-RMD160 (gunicorn-19.8.1.tar.gz) = 3a06c9cfb12df0c699d9d09759efdab4705cce30
-SHA512 (gunicorn-19.8.1.tar.gz) = 7f7fcbcde20b70d3a2faad595e08a028530348895f784eddcb35f24b3d5a7955edfc5b68aac4630243798fa37d41b7e869ec0d454dc80700c2630ba2cc39afc0
-Size (gunicorn-19.8.1.tar.gz) = 415541 bytes
-SHA1 (patch-requirements__test.txt) = 1c8ca2e7c0d63ffab0be9b4371fd42be6e207613
+SHA1 (gunicorn-19.9.0.tar.gz) = 4fa8b5a57c8be192b761ed2d76bcafe29b379aed
+RMD160 (gunicorn-19.9.0.tar.gz) = 89a61547e6540306e81371986bb941adf47248c2
+SHA512 (gunicorn-19.9.0.tar.gz) = 4a89f963daa7afe7741a4fb9aa4f14192429ac0e9ba5672547d683475dd2f2733efeed903ec99db9d831e2b05b9ed9e583e3cfec483a1b481d897aa77373e8a3
+Size (gunicorn-19.9.0.tar.gz) = 415774 bytes
+SHA1 (patch-requirements__test.txt) = 11a315b675db6af30bcf3e116b5da48ecf51755b
diff -r b7c5ca106dea -r 0ff835a06dc3 www/py-gunicorn/patches/patch-requirements__test.txt
--- a/www/py-gunicorn/patches/patch-requirements__test.txt      Wed Jul 04 03:38:34 2018 +0000
+++ b/www/py-gunicorn/patches/patch-requirements__test.txt      Wed Jul 04 03:43:12 2018 +0000
@@ -1,13 +1,13 @@
-$NetBSD: patch-requirements__test.txt,v 1.3 2018/04/30 08:48:07 adam Exp $
+$NetBSD: patch-requirements__test.txt,v 1.4 2018/07/04 03:43:12 adam Exp $
 
 'coverage' is not (yet) needed for testing.
 Relax pytest requirements.
 
---- requirements_test.txt.orig 2017-10-27 02:50:06.000000000 +0000
+--- requirements_test.txt.orig 2018-06-17 20:17:58.000000000 +0000
 +++ requirements_test.txt
 @@ -1,3 +1,2 @@
 -coverage>=4.0,<4.4  # TODO: https://github.com/benoitc/gunicorn/issues/1548
--pytest==3.0.5
--pytest-cov==2.4.0
-+pytest>=3.0.5
-+pytest-cov>=2.4.0
+-pytest==3.2.5  # TODO: upgrade to latest version requires drop support to Python 2.6
+-pytest-cov==2.5.1
++pytest>=3.2.5  # TODO: upgrade to latest version requires drop support to Python 2.6
++pytest-cov>=2.5.1



Home | Main Index | Thread Index | Old Index