Merge lp:~zulcss/nova/nova-asn1 into lp:~openstack-ubuntu-testing/nova/grizzly

Proposed by Chuck Short
Status: Merged
Approved by: Yolanda Robla
Approved revision: 556
Merged at revision: 556
Proposed branch: lp:~zulcss/nova/nova-asn1
Merge into: lp:~openstack-ubuntu-testing/nova/grizzly
Diff against target: 81 lines (+10/-33)
3 files modified
debian/changelog (+4/-5)
debian/control (+2/-0)
debian/patches/fix-ubuntu-tests.patch (+4/-28)
To merge this branch: bzr merge lp:~zulcss/nova/nova-asn1
Reviewer Review Type Date Requested Status
Yolanda Robla (community) Approve
Review via email: mp+147932@code.launchpad.net
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
=== modified file 'debian/changelog'
--- debian/changelog 2013-02-07 15:10:36 +0000
+++ debian/changelog 2013-02-12 14:22:21 +0000
@@ -10,13 +10,12 @@
10 * debian/rules: Call testr directly since run_tests.sh -N gives weird return10 * debian/rules: Call testr directly since run_tests.sh -N gives weird return
11 value when tests pass.11 value when tests pass.
12 * debian/pyddist-overrides: Add websockify.12 * debian/pyddist-overrides: Add websockify.
13
14 [ Adam Gandelman ]
15 * debian/control: Fix typo (websocikfy -> websockify).
16
17 [ Chuck Short ]
18 * debian/nova-common.postinst: Removed config file conversion, since13 * debian/nova-common.postinst: Removed config file conversion, since
19 the option is no longer available. (LP: #1110567)14 the option is no longer available. (LP: #1110567)
15 * debian/control: Add python-pyasn1 as a dependency.
16
17 [ Adam Gandelman ]
18 * debian/control: Fix typo (websocikfy -> websockify).
2019
21 -- Adam Gandelman <adamg@ubuntu.com> Wed, 23 Jan 2013 14:23:22 -080020 -- Adam Gandelman <adamg@ubuntu.com> Wed, 23 Jan 2013 14:23:22 -0800
2221
2322
=== modified file 'debian/control'
--- debian/control 2013-01-23 22:23:41 +0000
+++ debian/control 2013-02-12 14:22:21 +0000
@@ -35,6 +35,7 @@
35 python-paramiko,35 python-paramiko,
36 python-paste,36 python-paste,
37 python-pastedeploy (>= 1.5.0),37 python-pastedeploy (>= 1.5.0),
38 python-pyasn1,
38 python-quantumclient,39 python-quantumclient,
39 python-routes,40 python-routes,
40 python-setuptools,41 python-setuptools,
@@ -89,6 +90,7 @@
89 python-routes,90 python-routes,
90 python-simplejson,91 python-simplejson,
91 python-sqlalchemy-ext ( >= 0.7.8-1~) | python-sqlalchemy (<< 0.6.3-2),92 python-sqlalchemy-ext ( >= 0.7.8-1~) | python-sqlalchemy (<< 0.6.3-2),
93 python-pyasn1,
92 python-suds,94 python-suds,
93 python-tempita,95 python-tempita,
94 python-webob (>= 1.2.3),96 python-webob (>= 1.2.3),
9597
=== modified file 'debian/patches/fix-ubuntu-tests.patch'
--- debian/patches/fix-ubuntu-tests.patch 2013-01-25 20:24:20 +0000
+++ debian/patches/fix-ubuntu-tests.patch 2013-02-12 14:22:21 +0000
@@ -1,31 +1,7 @@
1diff -Naurp nova-2013.1.orig/nova/tests/test_api.py nova-2013.1/nova/tests/test_api.py1diff -Naurp nova-2013.1.a4257.g4df4762.orig/tools/hacking.py nova-2013.1.a4257.g4df4762/tools/hacking.py
2--- nova-2013.1.orig/nova/tests/test_api.py 2013-01-25 05:53:44.000000000 -06002--- nova-2013.1.a4257.g4df4762.orig/tools/hacking.py 2013-02-12 07:33:18.000000000 -0600
3+++ nova-2013.1/nova/tests/test_api.py 2013-01-25 14:21:21.514255459 -06003+++ nova-2013.1.a4257.g4df4762/tools/hacking.py 2013-02-12 07:51:45.212644383 -0600
4@@ -26,9 +26,9 @@ from boto.ec2 import regioninfo4@@ -589,7 +589,7 @@ if __name__ == "__main__":
5 from boto import exception as boto_exc
6 # newer versions of boto use their own wrapper on top of httplib.HTTPResponse
7 try:
8- import boto.connection as httplib
9+ from boto.connection import HTTPResponse
10 except ImportError:
11- import httplib
12+ from httplib import HTTPResponse
13 import fixtures
14 import webob
15
16@@ -79,7 +79,7 @@ class FakeHttplibConnection(object):
17 # guess that's a function the web server usually provides.
18 resp = "HTTP/1.0 %s" % resp
19 self.sock = FakeHttplibSocket(resp)
20- self.http_response = httplib.HTTPResponse(self.sock)
21+ self.http_response = HTTPResponse(self.sock)
22 # NOTE(vish): boto is accessing private variables for some reason
23 self._HTTPConnection__response = self.http_response
24 self.http_response.begin()
25diff -Naurp nova-2013.1.orig/tools/hacking.py nova-2013.1/tools/hacking.py
26--- nova-2013.1.orig/tools/hacking.py 2013-01-25 05:53:45.000000000 -0600
27+++ nova-2013.1/tools/hacking.py 2013-01-25 14:21:11.742255454 -0600
28@@ -571,7 +571,7 @@ if __name__ == "__main__":
29 #include nova path5 #include nova path
30 sys.path.append(os.getcwd())6 sys.path.append(os.getcwd())
31 #Run once tests (not per line)7 #Run once tests (not per line)

Subscribers

People subscribed via source and target branches