Merge lp:~zulcss/python-novaclient/2.14.1 into lp:~openstack-ubuntu-testing/python-novaclient/havana

Proposed by Chuck Short
Status: Superseded
Proposed branch: lp:~zulcss/python-novaclient/2.14.1
Merge into: lp:~openstack-ubuntu-testing/python-novaclient/havana
Diff against target: 74 lines (+29/-5)
5 files modified
debian/changelog (+10/-2)
debian/control (+2/-2)
debian/install (+1/-0)
debian/links (+0/-1)
debian/preinst (+16/-0)
To merge this branch: bzr merge lp:~zulcss/python-novaclient/2.14.1
Reviewer Review Type Date Requested Status
Openstack Ubuntu Testers Pending
Review via email: mp+179929@code.launchpad.net

This proposal has been superseded by a proposal from 2013-08-13.

Description of the change

2.14.1 release

To post a comment you must log in.

Unmerged revisions

78. By <email address hidden>

Refresh changelog

77. By <email address hidden>

releasing version 1:2.14.1-0ubuntu1

76. By James Page

debian/{links, install, preinst}: Drop links, install bash completion
directly to /etc/bash_completion.d/. Add preinst to remove broken symlink
ahead of unpacking conffile. (LP: #1172420)

75. By James Page

d/control: Update VCS fields for new branch locations.

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-06-07 13:03:56 +0000
3+++ debian/changelog 2013-08-13 14:17:22 +0000
4@@ -1,4 +1,4 @@
5-python-novaclient (1:2.13.0.45.g2925d5b-0ubuntu1) UNRELEASED; urgency=low
6+python-novaclient (1:2.14.1-0ubuntu1) saucy; urgency=low
7
8 [ Chuck Short ]
9 * New upstream release.
10@@ -9,7 +9,15 @@
11 [ Yolanda Robla ]
12 * debian/tests: added autopkgtests
13
14- -- Yolanda <yolanda.robla@canonical.com> Fri, 07 Jun 2013 13:22:31 +0200
15+ [ James Page ]
16+ * d/control: Update VCS fields for new branch locations.
17+
18+ [ Adam Gandelman ]
19+ * debian/{links, install, preinst}: Drop links, install bash completion
20+ directly to /etc/bash_completion.d/. Add preinst to remove broken symlink
21+ ahead of unpacking conffile. (LP: #1172420)
22+
23+ -- Chuck Short <zulcss@ubuntu.com> Tue, 13 Aug 2013 08:52:34 -0400
24
25 python-novaclient (1:2.13.0-0ubuntu1) raring; urgency=low
26
27
28=== modified file 'debian/control'
29--- debian/control 2013-06-07 11:23:51 +0000
30+++ debian/control 2013-08-13 14:17:22 +0000
31@@ -22,8 +22,8 @@
32 testrepository
33 X-Python-Version: >= 2.7
34 Standards-Version: 3.9.3
35-Vcs-Browser: https://bazaar.launchpad.net/~openstack-ubuntu-packagers/python-novaclient/ubuntu/files
36-Vcs-Bzr: https://bazaar.launchpad.net/~openstack-ubuntu-packagers/python-novaclient/ubuntu/
37+Vcs-Browser: http://bazaar.launchpad.net/~ubuntu-server-dev/python-novaclient/havana/files
38+Vcs-Bzr: https://code.launchpad.net/~ubuntu-server-dev/python-novaclient/havana
39 XS-Testsuite: autopkgtest
40
41 Package: python-novaclient
42
43=== added file 'debian/install'
44--- debian/install 1970-01-01 00:00:00 +0000
45+++ debian/install 2013-08-13 14:17:22 +0000
46@@ -0,0 +1,1 @@
47+tools/nova.bash_completion etc/bash_completion.d/
48
49=== removed file 'debian/links'
50--- debian/links 2013-04-04 12:40:06 +0000
51+++ debian/links 1970-01-01 00:00:00 +0000
52@@ -1,1 +0,0 @@
53-usr/share/doc/python-novaclient/nova.bash_completion etc/bash_completion.d/nova.bash_completion
54
55=== added file 'debian/preinst'
56--- debian/preinst 1970-01-01 00:00:00 +0000
57+++ debian/preinst 2013-08-13 14:17:22 +0000
58@@ -0,0 +1,16 @@
59+#!/bin/sh -e
60+
61+if [ "$1" = "upgrade" ] ; then
62+ if [ -n "$2" ] && dpkg --compare-versions "$2" lt 1:2.13.0-0ubuntu2; then
63+ # Remove broken symlink that was released with raring. (LP: #1172420)
64+ if [ -L /etc/bash_completion.d/nova.bash_completion ] &&
65+ [ "`readlink /etc/bash_completion.d/nova.bash_completion`" =\
66+ "/usr/share/doc/python-novaclient/nova.bash_completion" ]; then
67+ rm -rf /etc/bash_completion.d/nova.bash_completion
68+ fi
69+ fi
70+fi
71+
72+#DEBHELPER#
73+
74+exit 0

Subscribers

People subscribed via source and target branches