View | Details | Raw Unified | Return to bug 167243
Collapse All | Expand All

(-)py-requests/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	requests
8
PORTNAME=	requests
9
PORTVERSION=	0.11.1
9
PORTVERSION=	0.11.2
10
CATEGORIES=	www python
10
CATEGORIES=	www python
11
MASTER_SITES=	CHEESESHOP
11
MASTER_SITES=	CHEESESHOP
12
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
12
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)py-requests/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (requests-0.11.1.tar.gz) = fd4260541d0e559c78e2b3072bd79f36e0f8ef935bcbbadaa8c98cd8b5a62897
1
SHA256 (requests-0.11.2.tar.gz) = 547bf78a774a6018271d6e5c40613ec554642ba4d6cdf45813e7894145293c57
2
SIZE (requests-0.11.1.tar.gz) = 63100
2
SIZE (requests-0.11.2.tar.gz) = 71080
(-)py-requests/files/patch-requests_models.py (-4 / +4 lines)
Lines 1-17 Link Here
1
--- requests/models.py.orig	2012-03-09 17:51:20.000000000 +0100
1
--- requests/models.py.orig	2012-04-23 04:13:53.000000000 +0200
2
+++ requests/models.py	2012-03-19 17:49:25.000000000 +0100
2
+++ requests/models.py	2012-04-23 18:22:55.000000000 +0200
3
@@ -15,12 +15,12 @@
3
@@ -15,12 +15,12 @@
4
 from .status_codes import codes
4
 from .status_codes import codes
5
 
5
 
6
 from .auth import HTTPBasicAuth, HTTPProxyAuth
6
 from .auth import HTTPBasicAuth, HTTPProxyAuth
7
-from .packages.urllib3.response import HTTPResponse
7
-from .packages.urllib3.response import HTTPResponse
8
-from .packages.urllib3.exceptions import MaxRetryError
8
-from .packages.urllib3.exceptions import MaxRetryError, LocationParseError
9
-from .packages.urllib3.exceptions import SSLError as _SSLError
9
-from .packages.urllib3.exceptions import SSLError as _SSLError
10
-from .packages.urllib3.exceptions import HTTPError as _HTTPError
10
-from .packages.urllib3.exceptions import HTTPError as _HTTPError
11
-from .packages.urllib3 import connectionpool, poolmanager
11
-from .packages.urllib3 import connectionpool, poolmanager
12
-from .packages.urllib3.filepost import encode_multipart_formdata
12
-from .packages.urllib3.filepost import encode_multipart_formdata
13
+from urllib3.response import HTTPResponse
13
+from urllib3.response import HTTPResponse
14
+from urllib3.exceptions import MaxRetryError
14
+from urllib3.exceptions import MaxRetryError, LocationParseError
15
+from urllib3.exceptions import SSLError as _SSLError
15
+from urllib3.exceptions import SSLError as _SSLError
16
+from urllib3.exceptions import HTTPError as _HTTPError
16
+from urllib3.exceptions import HTTPError as _HTTPError
17
+from urllib3 import connectionpool, poolmanager
17
+from urllib3 import connectionpool, poolmanager

Return to bug 167243