summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2018-07-04 03:43:12 +0000
committeradam <adam@pkgsrc.org>2018-07-04 03:43:12 +0000
commit3bfcdc024dab1931232bfd14f34720a45f587075 (patch)
tree8dd83c60bfbc6a292f5b3e040aa8a0c83632f590
parent990eee18ecb733334b0081b369d115992feb00e0 (diff)
downloadpkgsrc-3bfcdc024dab1931232bfd14f34720a45f587075.tar.gz
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.
-rw-r--r--www/py-gunicorn/Makefile4
-rw-r--r--www/py-gunicorn/PLIST8
-rw-r--r--www/py-gunicorn/distinfo12
-rw-r--r--www/py-gunicorn/patches/patch-requirements__test.txt12
4 files changed, 18 insertions, 18 deletions
diff --git a/www/py-gunicorn/Makefile b/www/py-gunicorn/Makefile
index bf99eff34e7..e544e43822a 100644
--- a/www/py-gunicorn/Makefile
+++ b/www/py-gunicorn/Makefile
@@ -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 --git a/www/py-gunicorn/PLIST b/www/py-gunicorn/PLIST
index eb0c93c833a..b1627cf0490 100644
--- a/www/py-gunicorn/PLIST
+++ b/www/py-gunicorn/PLIST
@@ -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/__init__.pyo
${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 --git a/www/py-gunicorn/distinfo b/www/py-gunicorn/distinfo
index 7346c132ba6..e1c9ae83b7c 100644
--- a/www/py-gunicorn/distinfo
+++ b/www/py-gunicorn/distinfo
@@ -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 --git a/www/py-gunicorn/patches/patch-requirements__test.txt b/www/py-gunicorn/patches/patch-requirements__test.txt
index e96d6357f99..99b5b902084 100644
--- a/www/py-gunicorn/patches/patch-requirements__test.txt
+++ b/www/py-gunicorn/patches/patch-requirements__test.txt
@@ -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