Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id CAA337A104 for ; Sat, 8 Apr 2017 20:10:33 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 160C684DCB; Sat, 8 Apr 2017 20:10:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9A90584D85 for ; Sat, 8 Apr 2017 20:10:32 +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 Kn6H1XAyibso for ; Sat, 8 Apr 2017 20:10:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EB66384D75 for ; Sat, 8 Apr 2017 20:10:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E66C0FBE4; Sat, 8 Apr 2017 20:10:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_14916822316310" MIME-Version: 1.0 Date: Sat, 8 Apr 2017 20:10:31 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-urllib3 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170408201031.E66C0FBE4@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. --_----------=_14916822316310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Sat Apr 8 20:10:31 UTC 2017 Modified Files: pkgsrc/www/py-urllib3: Makefile PLIST distinfo Log Message: Changes 1.20: Added support for waiting for I/O using selectors other than select, improving urllib3’s behaviour with large numbers of concurrent connections. (Pull 1001) Updated the date for the system clock check. (Issue 1005) ConnectionPools now correctly consider hostnames to be case-insensitive. (Issue 1032) Outdated versions of PyOpenSSL now cause the PyOpenSSL contrib module to fail when it is injected, rather than at first use. (Pull 1063) Outdated versions of cryptography now cause the PyOpenSSL contrib module to fail when it is injected, rather than at first use. (Issue 1044) Automatically attempt to rewind a file-like body object when a request is retried or redirected. (Pull 1039) Fix some bugs that occur when modules incautiously patch the queue module. (Pull 1061) Prevent retries from occuring on read timeouts for which the request method was not in the method whitelist. (Issue 1059) Changed the PyOpenSSL contrib module to lazily load idna to avoid unnecessarily bloating the memory of programs that don’t need it. (Pull 1076) Add support for IPv6 literals with zone identifiers. (Pull 1013) Added support for socks5h:// and socks4a:// schemes when working with SOCKS proxies, and controlled remote DNS appropriately. (Issue 1035) To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/py-urllib3/Makefile \ pkgsrc/www/py-urllib3/distinfo cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/py-urllib3/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_14916822316310 Content-Disposition: inline Content-Length: 5173 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-urllib3/Makefile diff -u pkgsrc/www/py-urllib3/Makefile:1.4 pkgsrc/www/py-urllib3/Makefile:1.5 --- pkgsrc/www/py-urllib3/Makefile:1.4 Sat Jan 2 11:03:30 2016 +++ pkgsrc/www/py-urllib3/Makefile Sat Apr 8 20:10:31 2017 @@ -1,30 +1,34 @@ -# $NetBSD: Makefile,v 1.4 2016/01/02 11:03:30 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2017/04/08 20:10:31 adam Exp $ -DISTNAME= urllib3-1.14 +DISTNAME= urllib3-1.20 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www MASTER_SITES= ${MASTER_SITE_PYPI:=u/urllib3/} MAINTAINER= imil@NetBSD.org -HOMEPAGE= http://urllib3.readthedocs.org/ +HOMEPAGE= http://urllib3.readthedocs.io/ COMMENT= HTTP library with thread-safe connection pooling LICENSE= mit USE_LANGUAGES= # none DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=0.13:../../security/py-OpenSSL -DEPENDS+= ${PYPKGPREFIX}-ndg_httpsclient-[0-9]*:../../security/py-ndg_httpsclient -DEPENDS+= ${PYPKGPREFIX}-asn1-[0-9]*:../../security/py-asn1 -DEPENDS+= ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi DEPENDS+= ${PYPKGPREFIX}-Socks-[0-9]*:../../net/py-Socks +DEPENDS+= ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi +DEPENDS+= ${PYPKGPREFIX}-cryptography-[0-9]*:../../security/py-cryptography +DEPENDS+= ${PYPKGPREFIX}-idna-[0-9]*:../../www/py-idna +.if "${PYPKGPREFIX}" == "py27" +DEPENDS+= ${PYPKGPREFIX}-ipaddress-[0-9]*:../../net/py-ipaddress +.endif # actually TEST_DEPENDS -BUILD_DEPENDS+= ${PYPKGPREFIX}-tornado-[0-9]*:../../www/py-tornado +BUILD_DEPENDS+= ${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage BUILD_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock BUILD_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose BUILD_DEPENDS+= ${PYPKGPREFIX}-nose-exclude-[0-9]*:../../devel/py-nose-exclude -BUILD_DEPENDS+= ${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage +BUILD_DEPENDS+= ${PYPKGPREFIX}-psutil-[0-9]*:../../sysutils/py-psutil BUILD_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +BUILD_DEPENDS+= ${PYPKGPREFIX}-tornado-[0-9]*:../../www/py-tornado # four test failures as of 1.14, reported as # https://github.com/shazow/urllib3/issues/774 Index: pkgsrc/www/py-urllib3/distinfo diff -u pkgsrc/www/py-urllib3/distinfo:1.4 pkgsrc/www/py-urllib3/distinfo:1.5 --- pkgsrc/www/py-urllib3/distinfo:1.4 Sat Jan 2 10:17:45 2016 +++ pkgsrc/www/py-urllib3/distinfo Sat Apr 8 20:10:31 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2016/01/02 10:17:45 wiz Exp $ +$NetBSD: distinfo,v 1.5 2017/04/08 20:10:31 adam Exp $ -SHA1 (urllib3-1.14.tar.gz) = a6df7af9bf4e834756ca390e1dd278adfd4d52ff -RMD160 (urllib3-1.14.tar.gz) = 601c965838e20a80e1245d977f7aa66114a2a84e -SHA512 (urllib3-1.14.tar.gz) = 8c315b442bc7454e421f2c801cc2bbfc011fb2eb5dcbd2ff7d6078dab0bb5254e3e1489496758cec190ebd0c249962fa1fe24fe6535e844a681350e9d7353562 -Size (urllib3-1.14.tar.gz) = 161497 bytes +SHA1 (urllib3-1.20.tar.gz) = 045afc4c052c134f7424a7591acdaff085493dd9 +RMD160 (urllib3-1.20.tar.gz) = ff2dec71b17a323ba304b61cae2ae5f0cb7e72d1 +SHA512 (urllib3-1.20.tar.gz) = 5e2c960ad8641b7e7faf3df966ceb5a2fbb898d9fb4d4459ba607448bab096e3d5df6bc42fdf5fbc2ea58fb6199ba3eb16613b63fd109401d6a2b6e46aade6c3 +Size (urllib3-1.20.tar.gz) = 201873 bytes Index: pkgsrc/www/py-urllib3/PLIST diff -u pkgsrc/www/py-urllib3/PLIST:1.3 pkgsrc/www/py-urllib3/PLIST:1.4 --- pkgsrc/www/py-urllib3/PLIST:1.3 Sat Jan 2 10:17:45 2016 +++ pkgsrc/www/py-urllib3/PLIST Sat Apr 8 20:10:31 2017 @@ -1,8 +1,7 @@ -@comment $NetBSD: PLIST,v 1.3 2016/01/02 10:17:45 wiz Exp $ +@comment $NetBSD: PLIST,v 1.4 2017/04/08 20:10:31 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/pbr.json ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/urllib3/__init__.py @@ -44,6 +43,12 @@ ${PYSITELIB}/urllib3/filepost.pyo ${PYSITELIB}/urllib3/packages/__init__.py ${PYSITELIB}/urllib3/packages/__init__.pyc ${PYSITELIB}/urllib3/packages/__init__.pyo +${PYSITELIB}/urllib3/packages/backports/__init__.py +${PYSITELIB}/urllib3/packages/backports/__init__.pyc +${PYSITELIB}/urllib3/packages/backports/__init__.pyo +${PYSITELIB}/urllib3/packages/backports/makefile.py +${PYSITELIB}/urllib3/packages/backports/makefile.pyc +${PYSITELIB}/urllib3/packages/backports/makefile.pyo ${PYSITELIB}/urllib3/packages/ordered_dict.py ${PYSITELIB}/urllib3/packages/ordered_dict.pyc ${PYSITELIB}/urllib3/packages/ordered_dict.pyo @@ -80,6 +85,9 @@ ${PYSITELIB}/urllib3/util/response.pyo ${PYSITELIB}/urllib3/util/retry.py ${PYSITELIB}/urllib3/util/retry.pyc ${PYSITELIB}/urllib3/util/retry.pyo +${PYSITELIB}/urllib3/util/selectors.py +${PYSITELIB}/urllib3/util/selectors.pyc +${PYSITELIB}/urllib3/util/selectors.pyo ${PYSITELIB}/urllib3/util/ssl_.py ${PYSITELIB}/urllib3/util/ssl_.pyc ${PYSITELIB}/urllib3/util/ssl_.pyo @@ -89,3 +97,6 @@ ${PYSITELIB}/urllib3/util/timeout.pyo ${PYSITELIB}/urllib3/util/url.py ${PYSITELIB}/urllib3/util/url.pyc ${PYSITELIB}/urllib3/util/url.pyo +${PYSITELIB}/urllib3/util/wait.py +${PYSITELIB}/urllib3/util/wait.pyc +${PYSITELIB}/urllib3/util/wait.pyo --_----------=_14916822316310--