Merge lp:~zulcss/python-keystoneclient/requests-patch-drop into lp:~openstack-ubuntu-testing/python-keystoneclient/grizzly

Proposed by Chuck Short
Status: Merged
Approved by: Yolanda Robla
Approved revision: 54
Merged at revision: 54
Proposed branch: lp:~zulcss/python-keystoneclient/requests-patch-drop
Merge into: lp:~openstack-ubuntu-testing/python-keystoneclient/grizzly
Diff against target: 104 lines (+6/-81)
3 files modified
debian/changelog (+6/-0)
debian/patches/fix-requests-requirements.patch (+0/-80)
debian/patches/series (+0/-1)
To merge this branch: bzr merge lp:~zulcss/python-keystoneclient/requests-patch-drop
Reviewer Review Type Date Requested Status
Yolanda Robla (community) Approve
Review via email: mp+147955@code.launchpad.net

Description of the change

drops the requests version bump patch.

To post a comment you must log in.
Revision history for this message
Yolanda Robla (yolanda.robla) wrote :

Looks good to me

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2013-02-11 18:32:48 +0000
3+++ debian/changelog 2013-02-12 15:15:45 +0000
4@@ -1,3 +1,9 @@
5+python-keystoneclient (1:0.2.2-0ubuntu3) UNRELEASED; urgency=low
6+
7+ * debian/patches/fix-requests-requirements.patch: Dropped.
8+
9+ -- Chuck Short <zulcss@ubuntu.com> Tue, 12 Feb 2013 09:05:38 -0600
10+
11 python-keystoneclient (1:0.2.2-0ubuntu2) raring; urgency=low
12
13 * debian/patches/fix-requests-requirements.patch: Bump python-requests
14
15=== removed file 'debian/patches/fix-requests-requirements.patch'
16--- debian/patches/fix-requests-requirements.patch 2013-02-11 18:39:26 +0000
17+++ debian/patches/fix-requests-requirements.patch 1970-01-01 00:00:00 +0000
18@@ -1,80 +0,0 @@
19-diff -Naurp python-keystoneclient-0.2.2.orig/keystoneclient/client.py python-keystoneclient-0.2.2/keystoneclient/client.py
20---- python-keystoneclient-0.2.2.orig/keystoneclient/client.py 2013-01-14 12:27:07.000000000 -0600
21-+++ python-keystoneclient-0.2.2/keystoneclient/client.py 2013-02-11 12:34:25.832610713 -0600
22-@@ -50,10 +50,6 @@ class HTTPClient(object):
23-
24- USER_AGENT = 'python-keystoneclient'
25-
26-- requests_config = {
27-- 'danger_mode': False,
28-- }
29--
30- def __init__(self, username=None, tenant_id=None, tenant_name=None,
31- password=None, auth_url=None, region_name=None, timeout=None,
32- endpoint=None, token=None, cacert=None, key=None,
33-@@ -113,7 +109,8 @@ class HTTPClient(object):
34- ch = logging.StreamHandler()
35- _logger.setLevel(logging.DEBUG)
36- _logger.addHandler(ch)
37-- self.requests_config['verbose'] = sys.stderr
38-+ if hasattr(requests, logging):
39-+ requests.logging.getLogger(requests.__name__).addHandler(ch)
40-
41- # keyring setup
42- self.use_keyring = use_keyring and keyring_available
43-@@ -326,7 +323,6 @@ class HTTPClient(object):
44- method,
45- url,
46- verify=self.verify_cert,
47-- config=self.requests_config,
48- **request_kwargs)
49-
50- self.http_log_resp(resp)
51-diff -Naurp python-keystoneclient-0.2.2.orig/tests/utils.py python-keystoneclient-0.2.2/tests/utils.py
52---- python-keystoneclient-0.2.2.orig/tests/utils.py 2013-01-14 12:27:07.000000000 -0600
53-+++ python-keystoneclient-0.2.2/tests/utils.py 2013-02-11 12:38:18.044610825 -0600
54-@@ -17,7 +17,6 @@ class TestCase(testtools.TestCase):
55- TEST_ROOT_ADMIN_URL = 'http://127.0.0.1:35357/'
56- TEST_ADMIN_URL = '%s%s' % (TEST_ROOT_ADMIN_URL, 'v2.0')
57- TEST_REQUEST_BASE = {
58-- 'config': {'danger_mode': False},
59- 'verify': True,
60- }
61-
62-@@ -94,7 +93,6 @@ class UnauthenticatedTestCase(testtools.
63- TEST_ROOT_ADMIN_URL = 'http://127.0.0.1:35357/'
64- TEST_ADMIN_URL = '%s%s' % (TEST_ROOT_ADMIN_URL, 'v2.0')
65- TEST_REQUEST_BASE = {
66-- 'config': {'danger_mode': False},
67- 'verify': True,
68- }
69-
70-diff -Naurp python-keystoneclient-0.2.2.orig/tests/v3/utils.py python-keystoneclient-0.2.2/tests/v3/utils.py
71---- python-keystoneclient-0.2.2.orig/tests/v3/utils.py 2013-01-14 12:27:07.000000000 -0600
72-+++ python-keystoneclient-0.2.2/tests/v3/utils.py 2013-02-11 12:38:21.196610827 -0600
73-@@ -40,7 +40,6 @@ class TestCase(testtools.TestCase):
74- TEST_ROOT_ADMIN_URL = 'http://127.0.0.1:35357/'
75- TEST_ADMIN_URL = '%s%s' % (TEST_ROOT_ADMIN_URL, 'v3')
76- TEST_REQUEST_BASE = {
77-- 'config': {'danger_mode': False},
78- 'verify': True,
79- }
80-
81-@@ -70,7 +69,6 @@ class UnauthenticatedTestCase(testtools.
82- TEST_ROOT_ADMIN_URL = 'http://127.0.0.1:35357/'
83- TEST_ADMIN_URL = '%s%s' % (TEST_ROOT_ADMIN_URL, 'v3')
84- TEST_REQUEST_BASE = {
85-- 'config': {'danger_mode': False},
86- 'verify': True,
87- }
88-
89-diff -Naurp python-keystoneclient-0.2.2.orig/tools/pip-requires python-keystoneclient-0.2.2/tools/pip-requires
90---- python-keystoneclient-0.2.2.orig/tools/pip-requires 2013-01-14 12:27:07.000000000 -0600
91-+++ python-keystoneclient-0.2.2/tools/pip-requires 2013-02-11 12:38:32.392610832 -0600
92-@@ -1,5 +1,5 @@
93- argparse
94- iso8601>=0.1.4
95- prettytable
96--requests>=0.8.8,<1.0
97-+requests>=0.8.8
98- simplejson
99
100=== removed file 'debian/patches/series'
101--- debian/patches/series 2013-02-05 15:59:46 +0000
102+++ debian/patches/series 1970-01-01 00:00:00 +0000
103@@ -1,1 +0,0 @@
104-fix-requests-requirements.patch

Subscribers

People subscribed via source and target branches