Merge lp:~yolanda.robla/nova/grizzly into lp:~openstack-ubuntu-testing/nova/grizzly

Proposed by Yolanda Robla
Status: Merged
Approved by: Chuck Short
Approved revision: 503
Merged at revision: 505
Proposed branch: lp:~yolanda.robla/nova/grizzly
Merge into: lp:~openstack-ubuntu-testing/nova/grizzly
Diff against target: 149 lines (+32/-14)
8 files modified
debian/changelog (+11/-0)
debian/control (+8/-5)
debian/nova-api-ec2.postrm (+7/-0)
debian/nova-api-os-volume.lintian-overrides (+1/-0)
debian/nova-common.docs (+0/-1)
debian/nova-compute-xcp.lintian-overrides (+1/-0)
debian/nova-xvpvncproxy.postrm (+0/-7)
debian/rules (+4/-1)
To merge this branch: bzr merge lp:~yolanda.robla/nova/grizzly
Reviewer Review Type Date Requested Status
Openstack Ubuntu Testers Pending
Review via email: mp+137304@code.launchpad.net

Description of the change

Added fixes to remove lintian warnings.
Only the following are still there:

W: nova-scheduler: binary-without-manpage usr/bin/nova-clear-rabbit-queues
W: nova-scheduler: binary-without-manpage usr/bin/nova-rpc-zmq-receiver

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2012-11-29 17:00:21 +0000
+++ debian/changelog 2012-11-30 19:47:20 +0000
@@ -35,6 +35,17 @@
35 debian/nova-conductor.upstart.in: Add nova-conductor service.35 debian/nova-conductor.upstart.in: Add nova-conductor service.
36 * debian/control: Add python-fixtures as a build deps.36 * debian/control: Add python-fixtures as a build deps.
3737
38 [ Yolanda Robla ]
39 * debian/nova-common.docs: Installing changelogs from rules
40 * debian/rules: Replacing perms in /etc/nova/logging.conf for 0644
41 * debian/nova-compute-xcp.lintian-overrides: skip empty binary package warn
42 * debian/control: adduser dependency on nova-compute
43 * debian/control: added section oldlibs and priority extra on
44 nova-ajax-console-proxy
45 * debian/control: adding version number in nova-api breaks
46 * debian/nova-api-ec2.postrm
47 * nova-xvpvncproxy.postrm: removing because of duplicates
48
38 -- Chuck Short <zulcss@ubuntu.com> Fri, 23 Nov 2012 09:32:05 -060049 -- Chuck Short <zulcss@ubuntu.com> Fri, 23 Nov 2012 09:32:05 -0600
3950
40nova (2012.2-0ubuntu5) quantal; urgency=low51nova (2012.2-0ubuntu5) quantal; urgency=low
4152
=== modified file 'debian/control'
--- debian/control 2012-11-20 14:41:52 +0000
+++ debian/control 2012-11-30 19:47:20 +0000
@@ -157,7 +157,8 @@
157 genisoimage,157 genisoimage,
158 vlan,158 vlan,
159 ${misc:Depends},159 ${misc:Depends},
160 ${python:Depends}160 ${python:Depends},
161 adduser
161Suggests: guestmount162Suggests: guestmount
162Description: OpenStack Compute - compute node163Description: OpenStack Compute - compute node
163 OpenStack is a reliable cloud infrastructure. Its mission is to produce164 OpenStack is a reliable cloud infrastructure. Its mission is to produce
@@ -472,6 +473,8 @@
472473
473Package: nova-ajax-console-proxy474Package: nova-ajax-console-proxy
474Architecture: all475Architecture: all
476Section: oldlibs
477Priority: extra
475Depends: nova-common (= ${binary:Version}),478Depends: nova-common (= ${binary:Version}),
476 ${misc:Depends},479 ${misc:Depends},
477 ${ostack-lsb-base},480 ${ostack-lsb-base},
@@ -705,7 +708,7 @@
705 ${misc:Depends},708 ${misc:Depends},
706 ${ostack-lsb-base},709 ${ostack-lsb-base},
707 ${python:Depends}710 ${python:Depends}
708Breaks: nova-api711Breaks: nova-api (<< 2012.1~rc1-0ubuntu2)
709Description: OpenStack Compute - metadata API frontend712Description: OpenStack Compute - metadata API frontend
710 OpenStack is a reliable cloud infrastructure. Its mission is to produce713 OpenStack is a reliable cloud infrastructure. Its mission is to produce
711 the ubiquitous cloud computing platform that will meet the needs of public714 the ubiquitous cloud computing platform that will meet the needs of public
@@ -724,7 +727,7 @@
724 ${misc:Depends},727 ${misc:Depends},
725 ${ostack-lsb-base},728 ${ostack-lsb-base},
726 ${python:Depends}729 ${python:Depends}
727Breaks: nova-api730Breaks: nova-api (<< 2012.1~rc1-0ubuntu2)
728Description: OpenStack Compute - OpenStack Compute API frontend731Description: OpenStack Compute - OpenStack Compute API frontend
729 OpenStack is a reliable cloud infrastructure. Its mission is to produce732 OpenStack is a reliable cloud infrastructure. Its mission is to produce
730 the ubiquitous cloud computing platform that will meet the needs of public733 the ubiquitous cloud computing platform that will meet the needs of public
@@ -743,7 +746,7 @@
743 ${misc:Depends},746 ${misc:Depends},
744 ${ostack-lsb-base},747 ${ostack-lsb-base},
745 ${python:Depends}748 ${python:Depends}
746Breaks: nova-api749Breaks: nova-api (<< 2012.1~rc1-0ubuntu2)
747Description: OpenStack Compute - OpenStack Volume API frontend750Description: OpenStack Compute - OpenStack Volume API frontend
748 OpenStack is a reliable cloud infrastructure. Its mission is to produce751 OpenStack is a reliable cloud infrastructure. Its mission is to produce
749 the ubiquitous cloud computing platform that will meet the needs of public752 the ubiquitous cloud computing platform that will meet the needs of public
@@ -762,7 +765,7 @@
762 ${misc:Depends},765 ${misc:Depends},
763 ${ostack-lsb-base},766 ${ostack-lsb-base},
764 ${python:Depends}767 ${python:Depends}
765Breaks: nova-api768Breaks: nova-api (<< 2012.1~rc1-0ubuntu2)
766Description: OpenStack Compute - EC2 API frontend769Description: OpenStack Compute - EC2 API frontend
767 OpenStack is a reliable cloud infrastructure. Its mission is to produce770 OpenStack is a reliable cloud infrastructure. Its mission is to produce
768 the ubiquitous cloud computing platform that will meet the needs of public771 the ubiquitous cloud computing platform that will meet the needs of public
769772
=== added file 'debian/nova-api-ec2.postrm'
--- debian/nova-api-ec2.postrm 1970-01-01 00:00:00 +0000
+++ debian/nova-api-ec2.postrm 2012-11-30 19:47:20 +0000
@@ -0,0 +1,7 @@
1#!/bin/sh -e
2
3if [ "$1" = purge ]; then
4 update-rc.d nova-api-ec2 remove
5fi
6
7#DEBHELPER#
08
=== added file 'debian/nova-api-os-volume.lintian-overrides'
--- debian/nova-api-os-volume.lintian-overrides 1970-01-01 00:00:00 +0000
+++ debian/nova-api-os-volume.lintian-overrides 2012-11-30 19:47:20 +0000
@@ -0,0 +1,1 @@
1nova-api-os-volume: breaks-without-version nova-api
02
=== removed file 'debian/nova-common.docs'
--- debian/nova-common.docs 2012-07-03 20:56:54 +0000
+++ debian/nova-common.docs 1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
1ChangeLog
20
=== added file 'debian/nova-compute-xcp.lintian-overrides'
--- debian/nova-compute-xcp.lintian-overrides 1970-01-01 00:00:00 +0000
+++ debian/nova-compute-xcp.lintian-overrides 2012-11-30 19:47:20 +0000
@@ -0,0 +1,1 @@
1nova-compute-xcp: empty-binary-package
02
=== removed file 'debian/nova-xvpvncproxy.postrm'
--- debian/nova-xvpvncproxy.postrm 2012-10-02 19:34:36 +0000
+++ debian/nova-xvpvncproxy.postrm 1970-01-01 00:00:00 +0000
@@ -1,7 +0,0 @@
1#!/bin/sh -e
2
3if [ "$1" = purge ]; then
4 update-rc.d nova-xvpvncproxy remove
5fi
6
7#DEBHELPER#
80
=== modified file 'debian/rules'
--- debian/rules 2012-11-29 17:00:21 +0000
+++ debian/rules 2012-11-30 19:47:20 +0000
@@ -51,7 +51,7 @@
51 dh_install --fail-missing -Xbin/nova-all51 dh_install --fail-missing -Xbin/nova-all
52 chmod 440 $(CURDIR)/debian/nova-common/etc/sudoers.d/nova_sudoers52 chmod 440 $(CURDIR)/debian/nova-common/etc/sudoers.d/nova_sudoers
53 install -D -m 644 debian/source_nova.py debian/php5-common/usr/share/apport/package-hooks/source_nova.py53 install -D -m 644 debian/source_nova.py debian/php5-common/usr/share/apport/package-hooks/source_nova.py
54 install -D -m 0655 $(CURDIR)/etc/nova/logging_sample.conf $(CURDIR)/debian/nova-common/etc/nova/logging.conf54 install -D -m 0644 $(CURDIR)/etc/nova/logging_sample.conf $(CURDIR)/debian/nova-common/etc/nova/logging.conf
55 for hypervisor in qemu kvm xen uml lxc; do \55 for hypervisor in qemu kvm xen uml lxc; do \
56 install -D -m 0600 $(CURDIR)/debian/nova-compute-$${hypervisor}.conf $(CURDIR)/debian/nova-compute-$${hypervisor}/etc/nova/nova-compute.conf; \56 install -D -m 0600 $(CURDIR)/debian/nova-compute-$${hypervisor}.conf $(CURDIR)/debian/nova-compute-$${hypervisor}/etc/nova/nova-compute.conf; \
57 done57 done
@@ -85,3 +85,6 @@
85 dh_installlogrotate85 dh_installlogrotate
86 dh_installlogrotate --name=nova-manage86 dh_installlogrotate --name=nova-manage
87 dh_installlogrotate --name=nova-dhcpbridge87 dh_installlogrotate --name=nova-dhcpbridge
88
89override_dh_installchangelogs:
90 dh_installchangelogs -k ChangeLog
8891
=== added directory 'plugins'
=== added directory 'plugins/xenserver'
=== added directory 'plugins/xenserver/xenapi'
=== added directory 'plugins/xenserver/xenapi/etc'
=== added directory 'plugins/xenserver/xenapi/etc/xapi.d'
=== added directory 'plugins/xenserver/xenapi/etc/xapi.d/plugins'

Subscribers

People subscribed via source and target branches