Merge lp:~zulcss/cinder/cinder-ftbfs-pbr into lp:~openstack-ubuntu-testing/cinder/havana

Proposed by Chuck Short
Status: Merged
Approved by: Adam Gandelman
Approved revision: 101
Merged at revision: 101
Proposed branch: lp:~zulcss/cinder/cinder-ftbfs-pbr
Merge into: lp:~openstack-ubuntu-testing/cinder/havana
Diff against target: 92 lines (+12/-18)
6 files modified
debian/changelog (+5/-2)
debian/cinder-common.install (+1/-0)
debian/control (+2/-0)
debian/patches/fix_cinder_dependencies.patch (+0/-11)
debian/patches/series (+0/-1)
debian/rules (+4/-4)
To merge this branch: bzr merge lp:~zulcss/cinder/cinder-ftbfs-pbr
Reviewer Review Type Date Requested Status
Adam Gandelman Pending
Review via email: mp+164468@code.launchpad.net

This proposal supersedes a proposal from 2013-05-17.

To post a comment you must log in.
Revision history for this message
Adam Gandelman (gandelman-a) wrote : Posted in a previous version of this proposal

This merge is against the wrong branch? (grizzly, not havana)

review: Disapprove

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2013-05-03 08:19:56 +0000
+++ debian/changelog 2013-05-17 17:20:30 +0000
@@ -1,9 +1,12 @@
1cinder (1:2013.2.a163.ga4ba17b-0ubuntu1) UNRELEASED; urgency=low1cinder (1:2013.2.a226.g1d6de0f-0ubuntu1) UNRELEASED; urgency=low
22
3 [ Chuck Short ]3 [ Chuck Short ]
4 * New upstream version.4 * New upstream version.
5 * debian/patches/fix_cinder_dependencies.patch: Refreshed.5 * debian/patches/fix_cinder_dependencies.patch: Dropped.
6 * debian/control: Bump standards version to 3.9.4.6 * debian/control: Bump standards version to 3.9.4.
7 * debian/control: Add python-pbr and python-d2to1 to build-depends.
8 * debian/rules: Add work around to remove wonky setup.py setup
9 * debian/cinder-common.install: Add cinder-rpc-zmq-receiver binary.
710
8 [ James Page ]11 [ James Page ]
9 * debian/control: Drop surplus dependency on python-glance (LP: #1175600).12 * debian/control: Drop surplus dependency on python-glance (LP: #1175600).
1013
=== modified file 'debian/cinder-common.install'
--- debian/cinder-common.install 2013-02-20 10:31:01 +0000
+++ debian/cinder-common.install 2013-05-17 17:20:30 +0000
@@ -6,3 +6,4 @@
6etc/cinder/rootwrap.conf etc/cinder6etc/cinder/rootwrap.conf etc/cinder
7usr/bin/cinder-manage7usr/bin/cinder-manage
8usr/bin/cinder-rootwrap8usr/bin/cinder-rootwrap
9usr/bin/cinder-rpc-zmq-receiver
910
=== modified file 'debian/control'
--- debian/control 2013-05-03 08:19:56 +0000
+++ debian/control 2013-05-17 17:20:30 +0000
@@ -7,6 +7,7 @@
7 python-amqplib,7 python-amqplib,
8 python-anyjson,8 python-anyjson,
9 python-coverage,9 python-coverage,
10 python-d2to1,
10 python-eventlet,11 python-eventlet,
11 python-glanceclient,12 python-glanceclient,
12 python-greenlet,13 python-greenlet,
@@ -25,6 +26,7 @@
25 python-paramiko,26 python-paramiko,
26 python-paste,27 python-paste,
27 python-pastedeploy,28 python-pastedeploy,
29 python-pbr,
28 python-routes,30 python-routes,
29 python-swiftclient,31 python-swiftclient,
30 python-setuptools,32 python-setuptools,
3133
=== removed file 'debian/patches/fix_cinder_dependencies.patch'
--- debian/patches/fix_cinder_dependencies.patch 2013-04-30 13:11:39 +0000
+++ debian/patches/fix_cinder_dependencies.patch 1970-01-01 00:00:00 +0000
@@ -1,11 +0,0 @@
1diff -Naurp cinder-2013.2.a163.ga4ba17b.orig/tools/pip-requires cinder-2013.2.a163.ga4ba17b/tools/pip-requires
2--- cinder-2013.2.a163.ga4ba17b.orig/tools/pip-requires 2013-04-30 08:04:01.000000000 -0500
3+++ cinder-2013.2.a163.ga4ba17b/tools/pip-requires 2013-04-30 08:07:44.181680954 -0500
4@@ -17,7 +17,6 @@ python-glanceclient>=0.5.0,<2
5 python-keystoneclient>=0.2,<0.3
6 python-swiftclient>=1.2,<2
7 routes>=1.12.3
8-setuptools_git>=0.4
9 sqlalchemy>=0.7,<=0.7.99
10 sqlalchemy-migrate>=0.7
11 stevedore>=0.7
120
=== removed file 'debian/patches/series'
--- debian/patches/series 2013-02-25 17:37:22 +0000
+++ debian/patches/series 1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
1fix_cinder_dependencies.patch
20
=== modified file 'debian/rules'
--- debian/rules 2013-05-03 16:31:16 +0000
+++ debian/rules 2013-05-17 17:20:30 +0000
@@ -3,10 +3,6 @@
3# Uncomment this to turn on verbose mode.3# Uncomment this to turn on verbose mode.
4#export DH_VERBOSE=14#export DH_VERBOSE=1
55
6DEBVERS ?= $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p')
7VERSION ?= $(shell echo '$(DEBVERS)' | sed -e 's/^[[:digit:]]*://' -e 's/[-].*//')
8export OSLO_PACKAGE_VERSION=$(VERSION)
9
10%:6%:
11 dh $@ --with python27 dh $@ --with python2
128
@@ -23,3 +19,7 @@
2319
24override_dh_fixperms:20override_dh_fixperms:
25 dh_fixperms -Xcinder_tgt.conf21 dh_fixperms -Xcinder_tgt.conf
22
23override_dh_clean:
24 # temporary workaround for d2to1 wonkyness
25 dh_clean -Xsetup.cfg

Subscribers

People subscribed via source and target branches