Wed Aug 16 07:17:58 2017 UTC ()
2.18.4:
Improvements
* Error messages for invalid headers now include the header name for easier debugging

Dependencies
* We now support idna v2.6.


(adam)
diff -r1.35 -r1.36 pkgsrc/devel/py-requests/Makefile
diff -r1.29 -r1.30 pkgsrc/devel/py-requests/distinfo
diff -r1.3 -r1.4 pkgsrc/devel/py-requests/patches/patch-setup.py

cvs diff -r1.35 -r1.36 pkgsrc/devel/py-requests/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/py-requests/Makefile 2017/08/04 05:02:34 1.35
+++ pkgsrc/devel/py-requests/Makefile 2017/08/16 07:17:58 1.36
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.35 2017/08/04 05:02:34 adam Exp $ 1# $NetBSD: Makefile,v 1.36 2017/08/16 07:17:58 adam Exp $
2 2
3DISTNAME= requests-2.18.3 3DISTNAME= requests-2.18.4
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= devel www 5CATEGORIES= devel www
6MASTER_SITES= ${MASTER_SITE_PYPI:=r/requests/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=r/requests/}
7 7
8MAINTAINER= imil@NetBSD.org 8MAINTAINER= imil@NetBSD.org
9HOMEPAGE= http://www.python-requests.org/ 9HOMEPAGE= http://www.python-requests.org/
10COMMENT= HTTP library, written in Python, for human beings 10COMMENT= HTTP library, written in Python, for human beings
11LICENSE= apache-2.0 11LICENSE= apache-2.0
12 12
13USE_LANGUAGES= # none 13USE_LANGUAGES= # none
14REPLACE_PYTHON+= requests/certs.py 14REPLACE_PYTHON+= requests/certs.py
15REPLACE_PYTHON+= tests/test_requests.py 15REPLACE_PYTHON+= tests/test_requests.py
16 16

cvs diff -r1.29 -r1.30 pkgsrc/devel/py-requests/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/py-requests/distinfo 2017/08/04 05:02:34 1.29
+++ pkgsrc/devel/py-requests/distinfo 2017/08/16 07:17:58 1.30
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.29 2017/08/04 05:02:34 adam Exp $ 1$NetBSD: distinfo,v 1.30 2017/08/16 07:17:58 adam Exp $
2 2
3SHA1 (requests-2.18.3.tar.gz) = 877777f790b9e18a5d808ea3906da72aef1830fd 3SHA1 (requests-2.18.4.tar.gz) = f5e1dbba5a12ff2df063333fd2bf071e24659b63
4RMD160 (requests-2.18.3.tar.gz) = e96d97f68e4213a9a6a98bcd220734e6ef22f8df 4RMD160 (requests-2.18.4.tar.gz) = 8217810eff11d3364445efb9f723772adeb80e48
5SHA512 (requests-2.18.3.tar.gz) = d4d60b9a3f1bcc97d2d1fabb3ef5df2c64c2bae3e319c3f9f0b5f9e0c56677d88684b4902b31b6fa03c04b0b6912d763ffa493833c708958171d10bb15ac86a0 5SHA512 (requests-2.18.4.tar.gz) = 5c59bed82ac1094194f04a973b299f7d783264d372abd7a5229295bccc6b2f7a9f082ee4b0dff348e9c22cf68ddbd7cb67f60fd0b7d9eda41c02e40d075e9472
6Size (requests-2.18.3.tar.gz) = 126008 bytes 6Size (requests-2.18.4.tar.gz) = 126224 bytes
7SHA1 (patch-requests_____init____.py) = 733037737da7f012030e89091d1b3ca28c3d7657 7SHA1 (patch-requests_____init____.py) = 733037737da7f012030e89091d1b3ca28c3d7657
8SHA1 (patch-setup.py) = ad02dbeb917eb754be1f0cd28d5c25411717f474 8SHA1 (patch-setup.py) = 855002a41e0eee403e1938b714145cb0598b30c1

cvs diff -r1.3 -r1.4 pkgsrc/devel/py-requests/patches/Attic/patch-setup.py (expand / switch to unified diff)

--- pkgsrc/devel/py-requests/patches/Attic/patch-setup.py 2017/07/26 16:43:39 1.3
+++ pkgsrc/devel/py-requests/patches/Attic/patch-setup.py 2017/08/16 07:17:58 1.4
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1$NetBSD: patch-setup.py,v 1.3 2017/07/26 16:43:39 adam Exp $ 1$NetBSD: patch-setup.py,v 1.4 2017/08/16 07:17:58 adam Exp $
2 2
3Allow newer versions of dependencies. 3Allow newer versions of dependencies.
4 4
5--- setup.py.orig 2017-07-25 15:15:36.000000000 +0000 5--- setup.py.orig 2017-08-15 13:19:39.000000000 +0000
6+++ setup.py 6+++ setup.py
7@@ -42,13 +42,13 @@ if sys.argv[-1] == 'publish': 7@@ -42,13 +42,13 @@ if sys.argv[-1] == 'publish':
8 packages = ['requests'] 8 packages = ['requests']
9  9
10 requires = [ 10 requires = [
11- 'chardet>=3.0.2,<3.1.0', 11- 'chardet>=3.0.2,<3.1.0',
12- 'idna>=2.5,<2.6', 12- 'idna>=2.5,<2.7',
13- 'urllib3>=1.21.1,<1.23', 13- 'urllib3>=1.21.1,<1.23',
14+ 'chardet>=3.0.2', 14+ 'chardet>=3.0.2',
15+ 'idna>=2.5', 15+ 'idna>=2.5',
16+ 'urllib3>=1.21.1', 16+ 'urllib3>=1.21.1',
17 'certifi>=2017.4.17' 17 'certifi>=2017.4.17'
18  18
19 ] 19 ]
20-test_requirements = ['pytest-httpbin==0.0.7', 'pytest-cov', 'pytest-mock', 'pytest-xdist', 'PySocks>=1.5.6, !=1.5.7', 'pytest>=2.8.0'] 20-test_requirements = ['pytest-httpbin==0.0.7', 'pytest-cov', 'pytest-mock', 'pytest-xdist', 'PySocks>=1.5.6, !=1.5.7', 'pytest>=2.8.0']
21+test_requirements = ['pytest-httpbin>=0.0.7', 'pytest-cov', 'pytest-mock', 'pytest-xdist', 'PySocks>=1.5.6, !=1.5.7', 'pytest>=2.8.0'] 21+test_requirements = ['pytest-httpbin>=0.0.7', 'pytest-cov', 'pytest-mock', 'pytest-xdist', 'PySocks>=1.5.6, !=1.5.7', 'pytest>=2.8.0']
22  22
23 about = {} 23 about = {}
24 with open(os.path.join(here, 'requests', '__version__.py'), 'r', 'utf-8') as f: 24 with open(os.path.join(here, 'requests', '__version__.py'), 'r', 'utf-8') as f: