Received: by mail.netbsd.org (Postfix, from userid 605) id 4A6CA84CD2; Wed, 11 Apr 2018 13:18:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 527D784CD1 for ; Wed, 11 Apr 2018 13:18:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Pzl0rIjVs4X8 for ; Wed, 11 Apr 2018 13:18:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B36CD84CCF for ; Wed, 11 Apr 2018 13:18:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1BFB8FBEC; Wed, 11 Apr 2018 13:18:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152345269220240" MIME-Version: 1.0 Date: Wed, 11 Apr 2018 13:18:12 +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: <20180411131812.1BFB8FBEC@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. --_----------=_152345269220240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Apr 11 13:18:12 UTC 2018 Modified Files: pkgsrc/www/py-cheroot: Makefile PLIST distinfo Log Message: py-cheroot: updated to 6.2.1 v6.2.1: :pr:83: Fix regression, caused by inverted check for Windows OS. Add more URLs to distribution metadata v6.2.0: :pr:37: Implement PEERCRED lookup over UNIX-socket HTTP connection. Discover connected process' PID/UID/GID Respect server switches: peercreds_enabled and peercreds_resolve_enabled get_peer_creds and resolve_peer_creds methods on connection peer_pid, peer_uid, peer_gid, peer_user and peer_group properties on connection X_REMOTE_PID, X_REMOTE_UID, X_REMOTE_GID, X_REMOTE_USER (REMOTE_USER) and X_REMOTE_GROUP WSGI environment variables when enabled and supported Per-connection caching to reduce lookup cost To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/www/py-cheroot/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/py-cheroot/PLIST cvs rdiff -u -r1.9 -r1.10 pkgsrc/www/py-cheroot/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152345269220240 Content-Disposition: inline Content-Length: 2980 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.11 pkgsrc/www/py-cheroot/Makefile:1.12 --- pkgsrc/www/py-cheroot/Makefile:1.11 Mon Apr 9 12:10:15 2018 +++ pkgsrc/www/py-cheroot/Makefile Wed Apr 11 13:18:11 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2018/04/09 12:10:15 adam Exp $ +# $NetBSD: Makefile,v 1.12 2018/04/11 13:18:11 adam Exp $ -DISTNAME= cheroot-6.1.2 +DISTNAME= cheroot-6.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=C/Cheroot/} @@ -19,6 +19,11 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test>=2.8: TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov TEST_DEPENDS+= ${PYPKGPREFIX}-test-sugar-[0-9]*:../../devel/py-test-sugar +.include "../../lang/python/pyversion.mk" +.if "${PYPKGPREFIX}" == "py27" +DEPENDS+= ${PYPKGPREFIX}-backports.functools_lru_cache-[0-9]*:../../devel/py-backports.functools_lru_cache +.endif + USE_LANGUAGES= # none do-test: Index: pkgsrc/www/py-cheroot/PLIST diff -u pkgsrc/www/py-cheroot/PLIST:1.6 pkgsrc/www/py-cheroot/PLIST:1.7 --- pkgsrc/www/py-cheroot/PLIST:1.6 Mon Apr 9 12:10:15 2018 +++ pkgsrc/www/py-cheroot/PLIST Wed Apr 11 13:18:11 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2018/04/09 12:10:15 adam Exp $ +@comment $NetBSD: PLIST,v 1.7 2018/04/11 13:18:11 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -39,6 +39,9 @@ ${PYSITELIB}/cheroot/test/helper.py ${PYSITELIB}/cheroot/test/helper.pyc ${PYSITELIB}/cheroot/test/helper.pyo ${PYSITELIB}/cheroot/test/test.pem +${PYSITELIB}/cheroot/test/test__compat.py +${PYSITELIB}/cheroot/test/test__compat.pyc +${PYSITELIB}/cheroot/test/test__compat.pyo ${PYSITELIB}/cheroot/test/test_conn.py ${PYSITELIB}/cheroot/test/test_conn.pyc ${PYSITELIB}/cheroot/test/test_conn.pyo Index: pkgsrc/www/py-cheroot/distinfo diff -u pkgsrc/www/py-cheroot/distinfo:1.9 pkgsrc/www/py-cheroot/distinfo:1.10 --- pkgsrc/www/py-cheroot/distinfo:1.9 Mon Apr 9 12:10:15 2018 +++ pkgsrc/www/py-cheroot/distinfo Wed Apr 11 13:18:11 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2018/04/09 12:10:15 adam Exp $ +$NetBSD: distinfo,v 1.10 2018/04/11 13:18:11 adam Exp $ -SHA1 (cheroot-6.1.2.tar.gz) = 7f8489715b2394e10afac652052274c223356790 -RMD160 (cheroot-6.1.2.tar.gz) = 76391ffdaf4b89e4fe2442df95d47b0a44bcabde -SHA512 (cheroot-6.1.2.tar.gz) = d3ee6ead1ac7fb4f9fc8b87e31c332add02ce9c594c51acf0c8c2a2805b5adfd459f952ed2b23f2f879cde9022d1b460b74907b5712a08e27494f08c518bcc6d -Size (cheroot-6.1.2.tar.gz) = 65390 bytes +SHA1 (cheroot-6.2.1.tar.gz) = efa6f83b72d7b88b40f7ba090a3353ef7af8f92e +RMD160 (cheroot-6.2.1.tar.gz) = b3fb62fbbfc16b06df8a74be9a043675dc22f92b +SHA512 (cheroot-6.2.1.tar.gz) = 4f8e97b835b4c12d72b51ce90bba52b0c5e2cac3382b34a34997fe6c58e660200ff1e163f7811810bdd5162c01e1b29e4a24d9d9e332cd636dfc38b9f9ce585d +Size (cheroot-6.2.1.tar.gz) = 68067 bytes --_----------=_152345269220240--