Received: by mail.netbsd.org (Postfix, from userid 605) id 6E21884D69; Tue, 22 Aug 2017 08:22:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0233F84D66 for ; Tue, 22 Aug 2017 08:22:19 +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 B3bV7itIzxsd for ; Tue, 22 Aug 2017 08:22:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 81A4A84CE3 for ; Tue, 22 Aug 2017 08:22:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7FDC0FA77; Tue, 22 Aug 2017 08:22:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150339013857420" MIME-Version: 1.0 Date: Tue, 22 Aug 2017 08:22:18 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-cheroot To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170822082218.7FDC0FA77@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. --_----------=_150339013857420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Aug 22 08:22:18 UTC 2017 Modified Files: pkgsrc/www/py-cheroot: Makefile distinfo Log Message: v5.8.3 - Improve HTTP request line validation: * Improve HTTP version parsing - Fix HTTP CONNECT method processing: * Respond with ``405 Method Not Allowed`` if ``proxy_mode is False`` * Validate that request-target is in authority-form - Improve tests in ``test.test_core`` - Fix EPROTOTYPE @ Mac OS v5.8.2 - Fix 39 regression. Add HTTP request line check: absolute URI path must start with a forward slash ("/"). To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/py-cheroot/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-cheroot/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150339013857420 Content-Disposition: inline Content-Length: 1930 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-cheroot/Makefile diff -u pkgsrc/www/py-cheroot/Makefile:1.6 pkgsrc/www/py-cheroot/Makefile:1.7 --- pkgsrc/www/py-cheroot/Makefile:1.6 Sun Aug 6 19:28:14 2017 +++ pkgsrc/www/py-cheroot/Makefile Tue Aug 22 08:22:18 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2017/08/06 19:28:14 adam Exp $ +# $NetBSD: Makefile,v 1.7 2017/08/22 08:22:18 adam Exp $ -DISTNAME= cheroot-5.8.1 +DISTNAME= cheroot-5.8.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=C/Cheroot/} @@ -13,6 +13,7 @@ LICENSE= modified-bsd USE_LANGUAGES= # none DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six +BUILD_DEPENDS+= ${PYPKGPREFIX}-test>=2.8::../../devel/py-test BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm .include "../../lang/python/egg.mk" Index: pkgsrc/www/py-cheroot/distinfo diff -u pkgsrc/www/py-cheroot/distinfo:1.5 pkgsrc/www/py-cheroot/distinfo:1.6 --- pkgsrc/www/py-cheroot/distinfo:1.5 Sun Aug 6 19:28:14 2017 +++ pkgsrc/www/py-cheroot/distinfo Tue Aug 22 08:22:18 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2017/08/06 19:28:14 adam Exp $ +$NetBSD: distinfo,v 1.6 2017/08/22 08:22:18 adam Exp $ -SHA1 (cheroot-5.8.1.tar.gz) = d932d98c5f5cdaa97b6c9a90527aa8872ca1d403 -RMD160 (cheroot-5.8.1.tar.gz) = 42bab75a4ece8ce21729dab95995f1abc7bf6f09 -SHA512 (cheroot-5.8.1.tar.gz) = 7b4c49a565af1a90401b22e6b27798b7b51f70f3667c0c2ab3985dca32320bc6ff5bd590483e8288558a5c7ef40d367c339118f4d495b379757d305c1df8076f -Size (cheroot-5.8.1.tar.gz) = 62923 bytes +SHA1 (cheroot-5.8.3.tar.gz) = 6573a2bed0c4562807cb59d9b8fc655c3623728e +RMD160 (cheroot-5.8.3.tar.gz) = 0f5cc2998d3d68162fe2e1b84e16f527d663f064 +SHA512 (cheroot-5.8.3.tar.gz) = 8aaffd0a5a941bcfb1d24b4d7f95e10d595a4ae6f0a9957cc19dc3620a1318473956743faa50b2df58bc4db6969659d4a7c8228672bb39792417976d1312c4b6 +Size (cheroot-5.8.3.tar.gz) = 64083 bytes --_----------=_150339013857420--