diff options
| author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-09-06 16:35:23 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-09-06 18:00:08 -0400 |
| commit | 7b270e7e30148f30e9ae5c649febba4ae368b627 (patch) | |
| tree | 43a8bc23e4ba0b36fe5c8c05bcb77e8927a4580e /meta-openstack/recipes-devtools/python/python-nova_2013.1.3.bb | |
| parent | 4d830901c31baf8b507ebd38aa9f226c7148d2b1 (diff) | |
| download | meta-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.bb | 16 |
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 | ||
| 13 | PACKAGES += "${SRCNAME}-common ${SRCNAME}-common-misc" | 13 | PACKAGES += "${SRCNAME}-common ${SRCNAME}-common-misc" |
| 14 | 14 | ||
| 15 | FILES_${PN} = "${files_${PN}}" | 15 | # FILES_${PN} = "${files_${PN}}" |
| 16 | FILES_${PN} = "${libdir}/*" | ||
| 16 | 17 | ||
| 17 | FILES_${SRCNAME}-common = "${files_${SRCNAME}-common}" | 18 | # FILES_${SRCNAME}-common = "${files_${SRCNAME}-common}" |
| 19 | FILES_${SRCNAME}-common = "${bindir}/nova-manage \ | ||
| 20 | ${bindir}/nova-rootwrap \ | ||
| 21 | ${sysconfdir}/sudoers.d" | ||
| 18 | 22 | ||
| 19 | FILES_${SRCNAME}-common-misc = "${files_${SRCNAME}-compute} ${files_${SRCNAME}-controller}" | 23 | # FILES_${SRCNAME}-common-misc = "${files_${SRCNAME}-compute} ${files_${SRCNAME}-controller}" |
| 24 | FILES_${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 | ||
| 21 | RDEPENDS_${SRCNAME}-common = "${PN} openssl openssl-misc libxml2 libxslt \ | 31 | RDEPENDS_${SRCNAME}-common = "${PN} openssl openssl-misc libxml2 libxslt \ |
| 22 | iptables curl dnsmasq sudo procps" | 32 | iptables curl dnsmasq sudo procps" |
