mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-03 09:05:09 +02:00
python-urllib3: update to 1.10
This commit is contained in:
parent
5eae810495
commit
7285dbc0bc
2 changed files with 107 additions and 84 deletions
|
@ -1,7 +1,8 @@
|
||||||
diff -Nur dummyserver/handlers.py dummyserver/handlers.py
|
diff --git dummyserver/handlers.py dummyserver/handlers.py
|
||||||
--- dummyserver/handlers.py 2014-08-06 20:02:49.000000000 +0200
|
index 72faa1a..ea15a1e 100644
|
||||||
+++ dummyserver/handlers.py 2014-09-26 00:31:08.077758800 +0200
|
--- dummyserver/handlers.py
|
||||||
@@ -211,7 +211,7 @@
|
+++ dummyserver/handlers.py
|
||||||
|
@@ -211,7 +211,7 @@ def _parse_header(line):
|
||||||
"""
|
"""
|
||||||
import tornado.httputil
|
import tornado.httputil
|
||||||
import email.utils
|
import email.utils
|
||||||
|
@ -10,10 +11,11 @@ diff -Nur dummyserver/handlers.py dummyserver/handlers.py
|
||||||
if not six.PY3:
|
if not six.PY3:
|
||||||
line = line.encode('utf-8')
|
line = line.encode('utf-8')
|
||||||
parts = tornado.httputil._parseparam(';' + line)
|
parts = tornado.httputil._parseparam(';' + line)
|
||||||
diff -Nur setup.py setup.py
|
diff --git setup.py setup.py
|
||||||
--- setup.py 2014-08-06 20:38:12.000000000 +0200
|
index f638377..5e6fff1 100644
|
||||||
+++ setup.py 2014-09-26 00:35:06.139782615 +0200
|
--- setup.py
|
||||||
@@ -42,7 +42,6 @@
|
+++ setup.py
|
||||||
|
@@ -42,7 +42,6 @@ setup(name='urllib3',
|
||||||
url='http://urllib3.readthedocs.org/',
|
url='http://urllib3.readthedocs.org/',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
packages=['urllib3',
|
packages=['urllib3',
|
||||||
|
@ -21,10 +23,11 @@ diff -Nur setup.py setup.py
|
||||||
'urllib3.contrib', 'urllib3.util',
|
'urllib3.contrib', 'urllib3.util',
|
||||||
],
|
],
|
||||||
requires=[],
|
requires=[],
|
||||||
diff -Nur test/__init__.py test/__init__.py
|
diff --git test/__init__.py test/__init__.py
|
||||||
--- test/__init__.py 2014-08-06 20:02:49.000000000 +0200
|
index d56a4d3..85db6c4 100644
|
||||||
+++ test/__init__.py 2014-09-26 00:33:32.762949986 +0200
|
--- test/__init__.py
|
||||||
@@ -7,7 +7,7 @@
|
+++ test/__init__.py
|
||||||
|
@@ -7,7 +7,7 @@ import socket
|
||||||
from nose.plugins.skip import SkipTest
|
from nose.plugins.skip import SkipTest
|
||||||
|
|
||||||
from urllib3.exceptions import MaxRetryError, HTTPWarning
|
from urllib3.exceptions import MaxRetryError, HTTPWarning
|
||||||
|
@ -33,9 +36,10 @@ diff -Nur test/__init__.py test/__init__.py
|
||||||
|
|
||||||
# We need a host that will not immediately close the connection with a TCP
|
# We need a host that will not immediately close the connection with a TCP
|
||||||
# Reset. SO suggests this hostname
|
# Reset. SO suggests this hostname
|
||||||
diff -Nur test/contrib/test_pyopenssl.py test/contrib/test_pyopenssl.py
|
diff --git test/contrib/test_pyopenssl.py test/contrib/test_pyopenssl.py
|
||||||
--- test/contrib/test_pyopenssl.py 2014-09-13 20:18:29.000000000 +0200
|
index 5d57527..f23ff19 100644
|
||||||
+++ test/contrib/test_pyopenssl.py 2014-09-26 00:33:50.301730721 +0200
|
--- test/contrib/test_pyopenssl.py
|
||||||
|
+++ test/contrib/test_pyopenssl.py
|
||||||
@@ -1,5 +1,5 @@
|
@@ -1,5 +1,5 @@
|
||||||
from nose.plugins.skip import SkipTest
|
from nose.plugins.skip import SkipTest
|
||||||
-from urllib3.packages import six
|
-from urllib3.packages import six
|
||||||
|
@ -43,10 +47,11 @@ diff -Nur test/contrib/test_pyopenssl.py test/contrib/test_pyopenssl.py
|
||||||
|
|
||||||
if six.PY3:
|
if six.PY3:
|
||||||
raise SkipTest('Testing of PyOpenSSL disabled on PY3')
|
raise SkipTest('Testing of PyOpenSSL disabled on PY3')
|
||||||
diff -Nur test/test_collections.py test/test_collections.py
|
diff --git test/test_collections.py test/test_collections.py
|
||||||
--- test/test_collections.py 2014-08-06 20:38:12.000000000 +0200
|
index 4d173ac..c5420f7 100644
|
||||||
+++ test/test_collections.py 2014-09-26 00:28:36.830649649 +0200
|
--- test/test_collections.py
|
||||||
@@ -4,7 +4,7 @@
|
+++ test/test_collections.py
|
||||||
|
@@ -4,7 +4,7 @@ from urllib3._collections import (
|
||||||
HTTPHeaderDict,
|
HTTPHeaderDict,
|
||||||
RecentlyUsedContainer as Container
|
RecentlyUsedContainer as Container
|
||||||
)
|
)
|
||||||
|
@ -55,24 +60,23 @@ diff -Nur test/test_collections.py test/test_collections.py
|
||||||
xrange = six.moves.xrange
|
xrange = six.moves.xrange
|
||||||
|
|
||||||
|
|
||||||
diff -Nur test/test_connectionpool.py test/test_connectionpool.py
|
diff --git test/test_connectionpool.py test/test_connectionpool.py
|
||||||
--- test/test_connectionpool.py 2014-08-06 20:38:12.000000000 +0200
|
index a6dbcf4..43f9cbd 100644
|
||||||
+++ test/test_connectionpool.py 2014-09-26 00:36:12.962947210 +0200
|
--- test/test_connectionpool.py
|
||||||
@@ -6,7 +6,10 @@
|
+++ test/test_connectionpool.py
|
||||||
|
@@ -6,7 +6,7 @@ from urllib3.connectionpool import (
|
||||||
HTTPConnectionPool,
|
HTTPConnectionPool,
|
||||||
)
|
)
|
||||||
from urllib3.util.timeout import Timeout
|
from urllib3.util.timeout import Timeout
|
||||||
-from urllib3.packages.ssl_match_hostname import CertificateError
|
-from urllib3.packages.ssl_match_hostname import CertificateError
|
||||||
+try:
|
+from ssl import CertificateError
|
||||||
+ from ssl import CertificateError
|
|
||||||
+except ImportError:
|
|
||||||
+ from backports.ssl_match_hostname import CertificateError
|
|
||||||
from urllib3.exceptions import (
|
from urllib3.exceptions import (
|
||||||
ClosedPoolError,
|
ClosedPoolError,
|
||||||
EmptyPoolError,
|
EmptyPoolError,
|
||||||
diff -Nur test/test_fields.py test/test_fields.py
|
diff --git test/test_fields.py test/test_fields.py
|
||||||
--- test/test_fields.py 2014-08-06 20:38:12.000000000 +0200
|
index cdec68b..66da148 100644
|
||||||
+++ test/test_fields.py 2014-09-26 00:31:39.324368163 +0200
|
--- test/test_fields.py
|
||||||
|
+++ test/test_fields.py
|
||||||
@@ -1,7 +1,7 @@
|
@@ -1,7 +1,7 @@
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
@ -82,10 +86,11 @@ diff -Nur test/test_fields.py test/test_fields.py
|
||||||
|
|
||||||
|
|
||||||
class TestRequestField(unittest.TestCase):
|
class TestRequestField(unittest.TestCase):
|
||||||
diff -Nur test/test_filepost.py test/test_filepost.py
|
diff --git test/test_filepost.py test/test_filepost.py
|
||||||
--- test/test_filepost.py 2014-08-06 20:38:12.000000000 +0200
|
index 390dbb3..ecc6710 100644
|
||||||
+++ test/test_filepost.py 2014-09-26 00:30:35.582165050 +0200
|
--- test/test_filepost.py
|
||||||
@@ -2,7 +2,7 @@
|
+++ test/test_filepost.py
|
||||||
|
@@ -2,7 +2,7 @@ import unittest
|
||||||
|
|
||||||
from urllib3.filepost import encode_multipart_formdata, iter_fields
|
from urllib3.filepost import encode_multipart_formdata, iter_fields
|
||||||
from urllib3.fields import RequestField
|
from urllib3.fields import RequestField
|
||||||
|
@ -94,21 +99,37 @@ diff -Nur test/test_filepost.py test/test_filepost.py
|
||||||
|
|
||||||
|
|
||||||
BOUNDARY = '!! test boundary !!'
|
BOUNDARY = '!! test boundary !!'
|
||||||
diff -Nur test/test_retry.py test/test_retry.py
|
diff --git test/test_retry.py test/test_retry.py
|
||||||
--- test/test_retry.py 2014-08-06 20:38:12.000000000 +0200
|
index 421e508..8fcc287 100644
|
||||||
+++ test/test_retry.py 2014-09-26 00:33:15.642164025 +0200
|
--- test/test_retry.py
|
||||||
@@ -1,6 +1,6 @@
|
+++ test/test_retry.py
|
||||||
|
@@ -1,7 +1,7 @@
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
from urllib3.response import HTTPResponse
|
||||||
-from urllib3.packages.six.moves import xrange
|
-from urllib3.packages.six.moves import xrange
|
||||||
+from six.moves import xrange
|
+from six.moves import xrange
|
||||||
from urllib3.util.retry import Retry
|
from urllib3.util.retry import Retry
|
||||||
from urllib3.exceptions import (
|
from urllib3.exceptions import (
|
||||||
ConnectTimeoutError,
|
ConnectTimeoutError,
|
||||||
diff -Nur urllib3/_collections.py urllib3/_collections.py
|
diff --git test/with_dummyserver/test_connectionpool.py test/with_dummyserver/test_connectionpool.py
|
||||||
--- urllib3/_collections.py 2014-08-06 20:38:12.000000000 +0200
|
index cc0f011..85ede60 100644
|
||||||
+++ urllib3/_collections.py 2014-09-26 00:36:59.802361637 +0200
|
--- test/with_dummyserver/test_connectionpool.py
|
||||||
@@ -10,11 +10,8 @@
|
+++ test/with_dummyserver/test_connectionpool.py
|
||||||
|
@@ -29,7 +29,7 @@ from urllib3.exceptions import (
|
||||||
|
ReadTimeoutError,
|
||||||
|
ProtocolError,
|
||||||
|
)
|
||||||
|
-from urllib3.packages.six import b, u
|
||||||
|
+from six import b, u
|
||||||
|
from urllib3.util.retry import Retry
|
||||||
|
from urllib3.util.timeout import Timeout
|
||||||
|
|
||||||
|
diff --git urllib3/_collections.py urllib3/_collections.py
|
||||||
|
index 784342a..51eb302 100644
|
||||||
|
--- urllib3/_collections.py
|
||||||
|
+++ urllib3/_collections.py
|
||||||
|
@@ -10,11 +10,8 @@ except ImportError: # Platform-specific: No threads available
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
@ -116,16 +137,17 @@ diff -Nur urllib3/_collections.py urllib3/_collections.py
|
||||||
- from collections import OrderedDict
|
- from collections import OrderedDict
|
||||||
-except ImportError:
|
-except ImportError:
|
||||||
- from .packages.ordered_dict import OrderedDict
|
- from .packages.ordered_dict import OrderedDict
|
||||||
-from .packages.six import itervalues
|
-from .packages.six import iterkeys, itervalues
|
||||||
+from collections import OrderedDict
|
+from collections import OrderedDict
|
||||||
+from six import itervalues
|
+from six import iterkeys, itervalues
|
||||||
|
|
||||||
|
|
||||||
__all__ = ['RecentlyUsedContainer', 'HTTPHeaderDict']
|
__all__ = ['RecentlyUsedContainer', 'HTTPHeaderDict']
|
||||||
diff -Nur urllib3/connection.py urllib3/connection.py
|
diff --git urllib3/connection.py urllib3/connection.py
|
||||||
--- urllib3/connection.py 2014-09-13 20:18:29.000000000 +0200
|
index e5de769..44e8c1d 100644
|
||||||
+++ urllib3/connection.py 2014-09-26 00:39:41.684337834 +0200
|
--- urllib3/connection.py
|
||||||
@@ -3,7 +3,7 @@
|
+++ urllib3/connection.py
|
||||||
|
@@ -3,7 +3,7 @@ import sys
|
||||||
import socket
|
import socket
|
||||||
from socket import timeout as SocketTimeout
|
from socket import timeout as SocketTimeout
|
||||||
import warnings
|
import warnings
|
||||||
|
@ -134,38 +156,34 @@ diff -Nur urllib3/connection.py urllib3/connection.py
|
||||||
|
|
||||||
try: # Python 3
|
try: # Python 3
|
||||||
from http.client import HTTPConnection as _HTTPConnection, HTTPException
|
from http.client import HTTPConnection as _HTTPConnection, HTTPException
|
||||||
@@ -39,7 +39,10 @@
|
@@ -40,7 +40,7 @@ from .exceptions import (
|
||||||
ConnectTimeoutError,
|
|
||||||
SystemTimeWarning,
|
SystemTimeWarning,
|
||||||
|
SecurityWarning,
|
||||||
)
|
)
|
||||||
-from .packages.ssl_match_hostname import match_hostname
|
-from .packages.ssl_match_hostname import match_hostname
|
||||||
+try:
|
+from ssl import match_hostname
|
||||||
+ from ssl import match_hostname
|
|
||||||
+except ImportError:
|
|
||||||
+ from backports.ssl_match_hostname import match_hostname
|
|
||||||
|
|
||||||
from .util.ssl_ import (
|
from .util.ssl_ import (
|
||||||
resolve_cert_reqs,
|
resolve_cert_reqs,
|
||||||
diff -Nur urllib3/connectionpool.py urllib3/connectionpool.py
|
diff --git urllib3/connectionpool.py urllib3/connectionpool.py
|
||||||
--- urllib3/connectionpool.py 2014-09-13 20:18:29.000000000 +0200
|
index 8bdf228..dfdac97 100644
|
||||||
+++ urllib3/connectionpool.py 2014-09-26 00:37:59.884610505 +0200
|
--- urllib3/connectionpool.py
|
||||||
@@ -26,8 +26,11 @@
|
+++ urllib3/connectionpool.py
|
||||||
|
@@ -26,8 +26,8 @@ from .exceptions import (
|
||||||
TimeoutError,
|
TimeoutError,
|
||||||
InsecureRequestWarning,
|
InsecureRequestWarning,
|
||||||
)
|
)
|
||||||
-from .packages.ssl_match_hostname import CertificateError
|
-from .packages.ssl_match_hostname import CertificateError
|
||||||
-from .packages import six
|
-from .packages import six
|
||||||
+try:
|
+from ssl import CertificateError
|
||||||
+ from ssl import CertificateError
|
|
||||||
+except ImportError:
|
|
||||||
+ from backports.ssl_match_hostname import CertificateError
|
|
||||||
+import six
|
+import six
|
||||||
from .connection import (
|
from .connection import (
|
||||||
port_by_scheme,
|
port_by_scheme,
|
||||||
DummyConnection,
|
DummyConnection,
|
||||||
diff -Nur urllib3/fields.py urllib3/fields.py
|
diff --git urllib3/fields.py urllib3/fields.py
|
||||||
--- urllib3/fields.py 2014-08-06 20:38:12.000000000 +0200
|
index c853f8d..5fe3c24 100644
|
||||||
+++ urllib3/fields.py 2014-09-26 00:46:37.117144209 +0200
|
--- urllib3/fields.py
|
||||||
|
+++ urllib3/fields.py
|
||||||
@@ -1,7 +1,7 @@
|
@@ -1,7 +1,7 @@
|
||||||
import email.utils
|
import email.utils
|
||||||
import mimetypes
|
import mimetypes
|
||||||
|
@ -175,10 +193,11 @@ diff -Nur urllib3/fields.py urllib3/fields.py
|
||||||
|
|
||||||
|
|
||||||
def guess_content_type(filename, default='application/octet-stream'):
|
def guess_content_type(filename, default='application/octet-stream'):
|
||||||
diff -Nur urllib3/filepost.py urllib3/filepost.py
|
diff --git urllib3/filepost.py urllib3/filepost.py
|
||||||
--- urllib3/filepost.py 2014-08-06 20:38:12.000000000 +0200
|
index 0fbf488..97ab970 100644
|
||||||
+++ urllib3/filepost.py 2014-09-26 00:29:56.885648823 +0200
|
--- urllib3/filepost.py
|
||||||
@@ -3,8 +3,8 @@
|
+++ urllib3/filepost.py
|
||||||
|
@@ -3,8 +3,8 @@ import codecs
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
|
|
||||||
|
@ -189,10 +208,11 @@ diff -Nur urllib3/filepost.py urllib3/filepost.py
|
||||||
from .fields import RequestField
|
from .fields import RequestField
|
||||||
|
|
||||||
writer = codecs.lookup('utf-8')[3]
|
writer = codecs.lookup('utf-8')[3]
|
||||||
diff -Nur urllib3/response.py urllib3/response.py
|
diff --git urllib3/response.py urllib3/response.py
|
||||||
--- urllib3/response.py 2014-09-13 20:18:29.000000000 +0200
|
index e69de95..f432ddd 100644
|
||||||
+++ urllib3/response.py 2014-09-26 00:30:18.828374502 +0200
|
--- urllib3/response.py
|
||||||
@@ -4,7 +4,7 @@
|
+++ urllib3/response.py
|
||||||
|
@@ -4,7 +4,7 @@ from socket import timeout as SocketTimeout
|
||||||
|
|
||||||
from ._collections import HTTPHeaderDict
|
from ._collections import HTTPHeaderDict
|
||||||
from .exceptions import ProtocolError, DecodeError, ReadTimeoutError
|
from .exceptions import ProtocolError, DecodeError, ReadTimeoutError
|
||||||
|
@ -201,9 +221,10 @@ diff -Nur urllib3/response.py urllib3/response.py
|
||||||
from .connection import HTTPException, BaseSSLError
|
from .connection import HTTPException, BaseSSLError
|
||||||
from .util.response import is_fp_closed
|
from .util.response import is_fp_closed
|
||||||
|
|
||||||
diff -Nur urllib3/util/request.py urllib3/util/request.py
|
diff --git urllib3/util/request.py urllib3/util/request.py
|
||||||
--- urllib3/util/request.py 2014-08-06 20:38:12.000000000 +0200
|
index bc64f6b..5f4ccfd 100644
|
||||||
+++ urllib3/util/request.py 2014-09-26 00:32:27.729763013 +0200
|
--- urllib3/util/request.py
|
||||||
|
+++ urllib3/util/request.py
|
||||||
@@ -1,6 +1,6 @@
|
@@ -1,6 +1,6 @@
|
||||||
from base64 import b64encode
|
from base64 import b64encode
|
||||||
|
|
||||||
|
@ -212,15 +233,17 @@ diff -Nur urllib3/util/request.py urllib3/util/request.py
|
||||||
|
|
||||||
ACCEPT_ENCODING = 'gzip,deflate'
|
ACCEPT_ENCODING = 'gzip,deflate'
|
||||||
|
|
||||||
diff -Nur urllib3/util/retry.py urllib3/util/retry.py
|
diff --git urllib3/util/retry.py urllib3/util/retry.py
|
||||||
--- urllib3/util/retry.py 2014-09-13 20:18:29.000000000 +0200
|
index 7e0959d..4dfdb32 100644
|
||||||
+++ urllib3/util/retry.py 2014-09-26 00:32:56.069408718 +0200
|
--- urllib3/util/retry.py
|
||||||
@@ -7,7 +7,7 @@
|
+++ urllib3/util/retry.py
|
||||||
|
@@ -8,7 +8,7 @@ from ..exceptions import (
|
||||||
ReadTimeoutError,
|
ReadTimeoutError,
|
||||||
MaxRetryError,
|
ResponseError,
|
||||||
)
|
)
|
||||||
-from ..packages import six
|
-from ..packages import six
|
||||||
+import six
|
+import six
|
||||||
|
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
# Template file for 'python-urllib3'
|
# Template file for 'python-urllib3'
|
||||||
pkgname=python-urllib3
|
pkgname=python-urllib3
|
||||||
version=1.9.1
|
version=1.10
|
||||||
revision=1
|
revision=1
|
||||||
noarch=yes
|
noarch=yes
|
||||||
wrksrc="urllib3-${version}"
|
wrksrc="urllib3-${version}"
|
||||||
build_style=python-module
|
build_style=python-module
|
||||||
python_versions="2.7 3.4"
|
python_versions="2.7 3.4"
|
||||||
hostmakedepends="python-setuptools python3.4-setuptools"
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
||||||
depends="python-backports-ssl-match-hostname python-six ca-certificates"
|
depends="python-six ca-certificates"
|
||||||
pycompile_module="urllib3"
|
pycompile_module="urllib3"
|
||||||
short_desc="HTTP library with thread-safe connection pooling (Python2)"
|
short_desc="HTTP library with thread-safe connection pooling (Python2)"
|
||||||
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||||
homepage="https://github.com/shazow/urllib3"
|
homepage="https://github.com/shazow/urllib3"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
distfiles="${PYPI_SITE}/u/urllib3/urllib3-${version}.tar.gz"
|
distfiles="${PYPI_SITE}/u/urllib3/urllib3-${version}.tar.gz"
|
||||||
checksum=d858379ef5988d4534bb8909432d697422100aaff272299d661339836b6dae9b
|
checksum=25b4a7fbbd9112e0190f31f8877aa0523caeab8630872ad1bbddaba01cdd6599
|
||||||
|
|
||||||
python3.4-urllib3_package() {
|
python3.4-urllib3_package() {
|
||||||
noarch=yes
|
noarch=yes
|
||||||
|
|
Loading…
Add table
Reference in a new issue