pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/py-urllib3 Changes 1.20:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/70d9e1610e17
branches:  trunk
changeset: 360819:70d9e1610e17
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Apr 08 20:10:31 2017 +0000

description:
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)

diffstat:

 www/py-urllib3/Makefile |  20 ++++++++++++--------
 www/py-urllib3/PLIST    |  15 +++++++++++++--
 www/py-urllib3/distinfo |  10 +++++-----
 3 files changed, 30 insertions(+), 15 deletions(-)

diffs (104 lines):

diff -r 6b58ee393733 -r 70d9e1610e17 www/py-urllib3/Makefile
--- a/www/py-urllib3/Makefile   Sat Apr 08 19:18:47 2017 +0000
+++ b/www/py-urllib3/Makefile   Sat Apr 08 20:10:31 2017 +0000
@@ -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@localhost
-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}-Socks-[0-9]*:../../net/py-Socks
 DEPENDS+=      ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi
-DEPENDS+=      ${PYPKGPREFIX}-Socks-[0-9]*:../../net/py-Socks
+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
diff -r 6b58ee393733 -r 70d9e1610e17 www/py-urllib3/PLIST
--- a/www/py-urllib3/PLIST      Sat Apr 08 19:18:47 2017 +0000
+++ b/www/py-urllib3/PLIST      Sat Apr 08 20:10:31 2017 +0000
@@ -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/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/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/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
diff -r 6b58ee393733 -r 70d9e1610e17 www/py-urllib3/distinfo
--- a/www/py-urllib3/distinfo   Sat Apr 08 19:18:47 2017 +0000
+++ b/www/py-urllib3/distinfo   Sat Apr 08 20:10:31 2017 +0000
@@ -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



Home | Main Index | Thread Index | Old Index