Merge lp:~jaypipes/glance/ubuntu into lp:~openstack-ubuntu-packagers/glance/ubuntu

Proposed by Jay Pipes
Status: Merged
Approved by: Chuck Short
Approved revision: 74
Merged at revision: 72
Proposed branch: lp:~jaypipes/glance/ubuntu
Merge into: lp:~openstack-ubuntu-packagers/glance/ubuntu
Diff against target: 96 lines (+36/-18)
3 files modified
debian/changelog (+12/-0)
debian/control (+13/-18)
debian/patches/paste_router.patch (+11/-0)
To merge this branch: bzr merge lp:~jaypipes/glance/ubuntu
Reviewer Review Type Date Requested Status
Monty Taylor Approve
OpenStack Infra Pending
Review via email: mp+82318@code.launchpad.net

Description of the change

Should be merged when https://review.openstack.org/1619 is merged into trunk.

This cleans up the dependencies in the client packaging and updated the glance-api.conf to point the application entrypoint to new module.

To post a comment you must log in.
lp:~jaypipes/glance/ubuntu updated
73. By Jay Pipes

Update email in changelog

Revision history for this message
Monty Taylor (mordred) wrote :

Line 14 - stray * - just delete the line. Otherwise - kickass.

review: Needs Fixing
lp:~jaypipes/glance/ubuntu updated
74. By Jay Pipes

Remvoe extraneous * in changelog

Revision history for this message
Monty Taylor (mordred) wrote :

Great! Looks good to me.

review: Approve
Revision history for this message
Jay Pipes (jaypipes) wrote :

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2011-11-11 19:02:53 +0000
+++ debian/changelog 2011-11-16 06:13:25 +0000
@@ -1,3 +1,15 @@
1glance (2012.1~e1~20110919.1021-0ubuntu1) natty; urgency=low
2
3 * New upstream release
4
5 [ Jay Pipes ]
6 * Removes now-unnecessary dependencies from client package
7 * Rewrote the description for the Glance project to remove
8 ancient language about Teller and Parallax
9 * Added a patch to update the paste entrypoint for the v1app
10
11 -- Jay Pipes <jaypipes@gmail.com> Tue, 15 Nov 2011 16:58:48 -0500
12
1glance (2012.1~e1~20110919.1021-0ubuntu0) oneiric; urgency=low13glance (2012.1~e1~20110919.1021-0ubuntu0) oneiric; urgency=low
214
3 * New upstream release.15 * New upstream release.
416
=== modified file 'debian/control'
--- debian/control 2011-11-11 19:02:53 +0000
+++ debian/control 2011-11-16 06:13:25 +0000
@@ -36,33 +36,28 @@
36Section: python36Section: python
37Depends: ${python:Depends}, ${misc:Depends},37Depends: ${python:Depends}, ${misc:Depends},
38 python-webob,38 python-webob,
39 python-routes,
40 python-eventlet,
41 python-sqlalchemy-ext | python-sqlalchemy (<< 0.6.3-2),
42 python-pastedeploy,39 python-pastedeploy,
43 python-migrate,
44 python-kombu,40 python-kombu,
45 python-httplib2 (>= 0.6.0),41 python-httplib2 (>= 0.6.0),
46 python-crypto,42 python-crypto
47 python-xattr
48Provides: ${python:Provides}43Provides: ${python:Provides}
49XB-Python-Version: ${python:Versions}44XB-Python-Version: ${python:Versions}
50Description: OpenStack Image Registry and Delivery Service - Python library45Description: OpenStack Image Registry and Delivery Service - Python client library
51 The Glance project provides an image registration and discovery service46 The Glance project provides an image registration, discovery and
52 (Parallax) and an image delivery service (Teller). These services are used47 delivery service. These services may be used as stand-along services, and
53 in conjunction by Nova to deliver images from object stores, such as48 they may also be used by Nova to deliver images from object stores, such as
54 OpenStack's Swift service, to Nova's compute nodes.49 OpenStack's Swift service, to Nova's compute nodes.
55 .50 .
56 This package contains the Python libraries.51 This package contains the Python client libraries.
5752
58Package: glance53Package: glance
59Architecture: all54Architecture: all
60Section: python55Section: python
61Depends: ${python:Depends}, ${misc:Depends}, python-glance (= ${source:Version}), adduser, python-argparse56Depends: ${python:Depends}, ${misc:Depends}, python-glance (= ${source:Version}), adduser
62Description: OpenStack Image Registry and Delivery Service - Daemons57Description: OpenStack Image Registry and Delivery Service - Daemons
63 The Glance project provides an image registration and discovery service58 The Glance project provides an image registration, discovery and
64 (Parallax) and an image delivery service (Teller). These services are used59 delivery service. These services may be used as stand-along services, and
65 in conjunction by Nova to deliver images from object stores, such as60 they may also be used by Nova to deliver images from object stores, such as
66 OpenStack's Swift service, to Nova's compute nodes.61 OpenStack's Swift service, to Nova's compute nodes.
67 .62 .
68 This package contains the daemons.63 This package contains the daemons.
@@ -72,9 +67,9 @@
72Section: doc67Section: doc
73Depends: libjs-jquery, ${misc:Depends}68Depends: libjs-jquery, ${misc:Depends}
74Description: OpenStack Image Registry and Delivery Service - Documentation69Description: OpenStack Image Registry and Delivery Service - Documentation
75 The Glance project provides an image registration and discovery service70 The Glance project provides an image registration, discovery and
76 (Parallax) and an image delivery service (Teller). These services are used71 delivery service. These services may be used as stand-along services, and
77 in conjunction by Nova to deliver images from object stores, such as72 they may also be used by Nova to deliver images from object stores, such as
78 OpenStack's Swift service, to Nova's compute nodes.73 OpenStack's Swift service, to Nova's compute nodes.
79 .74 .
80 This package contains the documentation.75 This package contains the documentation.
8176
=== added file 'debian/patches/paste_router.patch'
--- debian/patches/paste_router.patch 1970-01-01 00:00:00 +0000
+++ debian/patches/paste_router.patch 2011-11-16 06:13:25 +0000
@@ -0,0 +1,11 @@
1--- a/etc/glance-api.conf
2+++ b/etc/glance-api.conf
3@@ -155,7 +155,7 @@
4 paste.app_factory = glance.api.versions:app_factory
5
6 [app:apiv1app]
7-paste.app_factory = glance.api.v1:app_factory
8+paste.app_factory = glance.api.v1.router:app_factory
9
10 [filter:versionnegotiation]
11 paste.filter_factory = glance.api.middleware.version_negotiation:filter_factory

Subscribers

People subscribed via source and target branches