Merge lp:~zulcss/nova/2014.1.b1 into lp:~ubuntu-server-dev/nova/icehouse

Proposed by Chuck Short
Status: Merged
Approved by: Chuck Short
Approved revision: 636
Merged at revision: 635
Proposed branch: lp:~zulcss/nova/2014.1.b1
Merge into: lp:~ubuntu-server-dev/nova/icehouse
Diff against target: 69 lines (+24/-2)
4 files modified
debian/changelog (+5/-2)
debian/patches/fix-libvirt-regression.patch (+15/-0)
debian/patches/series (+1/-0)
debian/rules (+3/-0)
To merge this branch: bzr merge lp:~zulcss/nova/2014.1.b1
Reviewer Review Type Date Requested Status
James Page Approve
Review via email: mp+197919@code.launchpad.net

Description of the change

Nova 2014.1~b1

To post a comment you must log in.
Revision history for this message
James Page (james-page) wrote :

Technically:

+Uptream: https://review.openstack.org/#/c/60052/

should be

+Forwarded: https://review.openstack.org/#/c/60052/

and

+ - Add OSLO_VERSION to get around python-pbr sillyness.

sounds a little judgemental

how about:

- Add OSLO_VERSION to set correct distro version for package build.

review: Needs Fixing
lp:~zulcss/nova/2014.1.b1 updated
635. By Chuck Short

Fix up based on suggestions

Revision history for this message
James Page (james-page) :
review: Approve
lp:~zulcss/nova/2014.1.b1 updated
636. By Chuck Short

Fix typo

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-12-03 19:42:58 +0000
3+++ debian/changelog 2013-12-05 16:35:37 +0000
4@@ -1,4 +1,4 @@
5-nova (1:2013.2-0ubuntu1) UNRELEASED; urgency=low
6+nova (1:2014.1~b1-0ubuntu1) trusty; urgency=low
7
8 * New upstream release.
9 * debian/control:
10@@ -16,12 +16,15 @@
11 - Remove git vcs, its not being used by anyone, complain if you are.
12 - Removed libvirtd detection, no need for it so drop it.
13 - Simplify building required docs including mangpages.
14+ - Add OSLO_VERSION to set correct distro version for package build.
15 * debian/patches/sqlachemy-0.8.3-compat.patch: Add support for
16 sqlachemy 0.8.3.
17 * debian/patches/avoid-failing-test.patch: Dropped.
18 * debian/patches/skip_ipv6_test.patch: Skip ipv6 test.
19+ * debian/patches/fix-libvirt-regression.patch: Fix libvirt regression
20+ while running the tests.
21
22- -- Chuck Short <zulcss@ubuntu.com> Thu, 14 Nov 2013 08:51:55 -0500
23+ -- Chuck Short <zulcss@ubuntu.com> Thu, 05 Dec 2013 11:25:41 -0500
24
25 nova (1:2013.2-0ubuntu1) saucy; urgency=low
26
27
28=== added file 'debian/patches/fix-libvirt-regression.patch'
29--- debian/patches/fix-libvirt-regression.patch 1970-01-01 00:00:00 +0000
30+++ debian/patches/fix-libvirt-regression.patch 2013-12-05 16:35:37 +0000
31@@ -0,0 +1,15 @@
32+Description: Fix regression while running libvirt
33+Author: Chuck Short <zulcss@ubuntu.com>
34+Forwarded: https://review.openstack.org/#/c/60052/
35+diff -Naurp nova-2014.1.b1.orig/nova/tests/virt/libvirt/fakelibvirt.py nova-2014.1.b1/nova/tests/virt/libvirt/fakelibvirt.py
36+--- nova-2014.1.b1.orig/nova/tests/virt/libvirt/fakelibvirt.py 2013-12-05 09:21:50.000000000 -0500
37++++ nova-2014.1.b1/nova/tests/virt/libvirt/fakelibvirt.py 2013-12-05 10:50:14.023727889 -0500
38+@@ -511,7 +511,7 @@ class DomainSnapshot(object):
39+
40+
41+ class Connection(object):
42+- def __init__(self, uri, readonly, version=9007):
43++ def __init__(self, uri=None, readonly=None, version=9007):
44+ if not uri or uri == '':
45+ if allow_default_uri_connection:
46+ uri = 'qemu:///session'
47
48=== modified file 'debian/patches/series'
49--- debian/patches/series 2013-12-03 19:42:58 +0000
50+++ debian/patches/series 2013-12-05 16:35:37 +0000
51@@ -4,3 +4,4 @@
52 fix-novnc-regression.patch
53 sqlachemy-0.8.3-compat.patch
54 skip_ipv6_test.patch
55+fix-libvirt-regression.patch
56
57=== modified file 'debian/rules'
58--- debian/rules 2013-12-05 14:42:50 +0000
59+++ debian/rules 2013-12-05 16:35:37 +0000
60@@ -3,6 +3,9 @@
61 # Verbose mode
62 #export DH_VERBOSE=1
63
64+VERSION := $(shell dpkg-parsechangelog | sed -rne 's,^Version: ([0-9]:)*([^-]+).*,\2,p')
65+export OSLO_PACKAGE_VERSION=$(VERSION)
66+
67 # Send HTTP traffic to “discard” service
68 export http_proxy = http://127.0.1.1:9/
69 export https_proxy = ${http_proxy}

Subscribers

People subscribed via source and target branches