summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2013-09-06 16:35:23 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2013-09-06 18:00:08 -0400
commit7b270e7e30148f30e9ae5c649febba4ae368b627 (patch)
tree43a8bc23e4ba0b36fe5c8c05bcb77e8927a4580e /meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb
parent4d830901c31baf8b507ebd38aa9f226c7148d2b1 (diff)
downloadmeta-cloud-services-7b270e7e30148f30e9ae5c649febba4ae368b627.tar.gz
python-nova: use explicit file lists, versus variables
By setting the FILES_ packaging variables via .inc local vars, we can run into trouble with variable resolution timing and hence packaging fails. We temporarily switch back to explicit (and duplicated) file lists to fix packaging Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb16
1 files changed, 13 insertions, 3 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb b/meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb
index c10bebb..c48f8d1 100644
--- a/meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb
+++ b/meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb
@@ -12,11 +12,21 @@ pkg_postinst_${SRCNAME}-common () {
12 12
13PACKAGES += "${SRCNAME}-common ${SRCNAME}-common-misc" 13PACKAGES += "${SRCNAME}-common ${SRCNAME}-common-misc"
14 14
15FILES_${PN} = "${files_${PN}}" 15# FILES_${PN} = "${files_${PN}}"
16FILES_${PN} = "${libdir}/*"
16 17
17FILES_${SRCNAME}-common = "${files_${SRCNAME}-common}" 18# FILES_${SRCNAME}-common = "${files_${SRCNAME}-common}"
19FILES_${SRCNAME}-common = "${bindir}/nova-manage \
20 ${bindir}/nova-rootwrap \
21 ${sysconfdir}/sudoers.d"
18 22
19FILES_${SRCNAME}-common-misc = "${files_${SRCNAME}-compute} ${files_${SRCNAME}-controller}" 23# FILES_${SRCNAME}-common-misc = "${files_${SRCNAME}-compute} ${files_${SRCNAME}-controller}"
24FILES_${SRCNAME}-common-misc = "${bindir}/nova-compute \
25 ${sysconfdir}/${SRCNAME}/* \
26 ${sysconfdir}/init.d/nova-compute \
27 ${bindir}/* \
28 ${sysconfdir}/${SRCNAME}/* \
29 ${sysconfdir}/init.d/nova-all"
20 30
21RDEPENDS_${SRCNAME}-common = "${PN} openssl openssl-misc libxml2 libxslt \ 31RDEPENDS_${SRCNAME}-common = "${PN} openssl openssl-misc libxml2 libxslt \
22 iptables curl dnsmasq sudo procps" 32 iptables curl dnsmasq sudo procps"