Received: by mail.netbsd.org (Postfix, from userid 605) id 61C9284DA0; Sun, 24 Nov 2019 11:29:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DC6ED84D9C for ; Sun, 24 Nov 2019 11:29:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id eu8AJhpYu5Px for ; Sun, 24 Nov 2019 11:29:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 59AB984D93 for ; Sun, 24 Nov 2019 11:29:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 57A0EFA97; Sun, 24 Nov 2019 11:29:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15745949948220" MIME-Version: 1.0 Date: Sun, 24 Nov 2019 11:29:54 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-gunicorn To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191124112954.57A0EFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15745949948220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Nov 24 11:29:54 UTC 2019 Modified Files: pkgsrc/www/py-gunicorn: Makefile distinfo Log Message: py-gunicorn: updated to 20.0.2 20.0.2: fix changelog 20.0.1: fixed the way the config module is loaded. __file__ is now available fixed wsgi.input_terminated. It is always true. use the highest protocol version of openssl by default only support Python >= 3.5 added __repr__ method to Config instance fixed support of AIX platform and musl libc in socketfromfd.fromfd function fixed support of applications loaded from a factory function fixed chunked encoding support to prevent any request smuggling Capture os.sendfile before patching in gevent and eventlet workers. fix RecursionError. removed locking in reloader when adding new files load the WSGI application before the loader to pick up all files To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/www/py-gunicorn/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/www/py-gunicorn/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15745949948220 Content-Disposition: inline Content-Length: 1666 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-gunicorn/Makefile diff -u pkgsrc/www/py-gunicorn/Makefile:1.16 pkgsrc/www/py-gunicorn/Makefile:1.17 --- pkgsrc/www/py-gunicorn/Makefile:1.16 Wed Nov 20 11:32:32 2019 +++ pkgsrc/www/py-gunicorn/Makefile Sun Nov 24 11:29:54 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2019/11/20 11:32:32 adam Exp $ +# $NetBSD: Makefile,v 1.17 2019/11/24 11:29:54 adam Exp $ -DISTNAME= gunicorn-20.0.0 +DISTNAME= gunicorn-20.0.2 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=g/gunicorn/} PKGNAME= ${PYPKGPREFIX}-${DISTNAME} Index: pkgsrc/www/py-gunicorn/distinfo diff -u pkgsrc/www/py-gunicorn/distinfo:1.10 pkgsrc/www/py-gunicorn/distinfo:1.11 --- pkgsrc/www/py-gunicorn/distinfo:1.10 Wed Nov 20 11:32:32 2019 +++ pkgsrc/www/py-gunicorn/distinfo Sun Nov 24 11:29:54 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.10 2019/11/20 11:32:32 adam Exp $ +$NetBSD: distinfo,v 1.11 2019/11/24 11:29:54 adam Exp $ -SHA1 (gunicorn-20.0.0.tar.gz) = 8839f7fa7572307c7bdede42ecc545bea9d162b6 -RMD160 (gunicorn-20.0.0.tar.gz) = ac2c011b6aaec6f598514f18f18065552d1974c3 -SHA512 (gunicorn-20.0.0.tar.gz) = 2b68af60d09f1770a0aa503ba459f9be83ca9495da50c95008ab07ccffafeca9189d48cf0150eed500ba2c5f773a7a8d9de0960ebab421558336585f9b7df3ed -Size (gunicorn-20.0.0.tar.gz) = 363029 bytes +SHA1 (gunicorn-20.0.2.tar.gz) = 23a31f6e71de9e27714b1bcd6c4f9fc5fef3498e +RMD160 (gunicorn-20.0.2.tar.gz) = 03984934c373761e58175ac9503beb41b26536a4 +SHA512 (gunicorn-20.0.2.tar.gz) = 77d4249495a833b34b0f7bc9515a3c771e101247fb7d73640ba7a6edef1df6c5193118efcb546094846eeb55b7ae4ede30fba6709e70c4e15aeac0cc36a1a32d +Size (gunicorn-20.0.2.tar.gz) = 374781 bytes --_----------=_15745949948220--