All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization][zeus][PATCH] python-heat: Fix do_package_qa error
@ 2019-11-27 11:20 zhengruoqin
  2019-11-27 23:00 ` Bruce Ashfield
  0 siblings, 1 reply; 2+ messages in thread
From: zhengruoqin @ 2019-11-27 11:20 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Zheng Ruoqin

Fix the error as follows:

ERROR: python-heat-5.0.0+gitAUTOINC+4348b7abab-r0 do_package_qa: QA Issue: /usr/bin/heat-db-setup contained in package heat-engine requires /bin/bash, but no providers found in RDEPENDS_heat-engine? [file-rdeps]
ERROR: python-heat-5.0.0+gitAUTOINC+4348b7abab-r0 do_package_qa: QA Issue: /usr/lib/python2.7/site-packages/heat/cloudinit/boothook.sh contained in package python-heat requires /bin/bash, but no providers found in RDEPENDS_python-heat? [file-rdeps]
ERROR: python-heat-5.0.0+gitAUTOINC+4348b7abab-r0 do_package_qa: QA run found fatal errors. Please consider fixing them.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-heat_git.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python-heat_git.bb b/meta-openstack/recipes-devtools/python/python-heat_git.bb
index 2cf7ce4..3b4998f 100644
--- a/meta-openstack/recipes-devtools/python/python-heat_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-heat_git.bb
@@ -243,9 +243,10 @@ RDEPENDS_${PN} += " \
         python-zaqarclient \
         python-requests \
         python-six \
+        bash \
 	"
 
-RDEPENDS_${SRCNAME}-engine = "${PN} ${SRCNAME}-templates ${SRCNAME}-common postgresql postgresql-client python-psycopg2 tgt ${SRCNAME}-cfn"
+RDEPENDS_${SRCNAME}-engine = "${PN} ${SRCNAME}-templates ${SRCNAME}-common postgresql postgresql-client python-psycopg2 tgt ${SRCNAME}-cfn bash"
 RDEPENDS_${SRCNAME}-api = "${SRCNAME}-engine"
 RDEPENDS_${SRCNAME}-api-cfn = "${SRCNAME}-engine"
 RDEPENDS_${SRCNAME}-setup = "postgresql sudo ${SRCNAME}-engine"
-- 
2.7.4




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [meta-virtualization][zeus][PATCH] python-heat: Fix do_package_qa error
  2019-11-27 11:20 [meta-virtualization][zeus][PATCH] python-heat: Fix do_package_qa error zhengruoqin
@ 2019-11-27 23:00 ` Bruce Ashfield
  0 siblings, 0 replies; 2+ messages in thread
From: Bruce Ashfield @ 2019-11-27 23:00 UTC (permalink / raw)
  To: zhengruoqin; +Cc: meta-virtualization

All the QA patches are now merged.

Bruce

On Wed, Nov 27, 2019 at 6:21 AM zhengruoqin <zhengrq.fnst@cn.fujitsu.com> wrote:
>
> Fix the error as follows:
>
> ERROR: python-heat-5.0.0+gitAUTOINC+4348b7abab-r0 do_package_qa: QA Issue: /usr/bin/heat-db-setup contained in package heat-engine requires /bin/bash, but no providers found in RDEPENDS_heat-engine? [file-rdeps]
> ERROR: python-heat-5.0.0+gitAUTOINC+4348b7abab-r0 do_package_qa: QA Issue: /usr/lib/python2.7/site-packages/heat/cloudinit/boothook.sh contained in package python-heat requires /bin/bash, but no providers found in RDEPENDS_python-heat? [file-rdeps]
> ERROR: python-heat-5.0.0+gitAUTOINC+4348b7abab-r0 do_package_qa: QA run found fatal errors. Please consider fixing them.
>
> Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
> ---
>  meta-openstack/recipes-devtools/python/python-heat_git.bb | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/meta-openstack/recipes-devtools/python/python-heat_git.bb b/meta-openstack/recipes-devtools/python/python-heat_git.bb
> index 2cf7ce4..3b4998f 100644
> --- a/meta-openstack/recipes-devtools/python/python-heat_git.bb
> +++ b/meta-openstack/recipes-devtools/python/python-heat_git.bb
> @@ -243,9 +243,10 @@ RDEPENDS_${PN} += " \
>          python-zaqarclient \
>          python-requests \
>          python-six \
> +        bash \
>         "
>
> -RDEPENDS_${SRCNAME}-engine = "${PN} ${SRCNAME}-templates ${SRCNAME}-common postgresql postgresql-client python-psycopg2 tgt ${SRCNAME}-cfn"
> +RDEPENDS_${SRCNAME}-engine = "${PN} ${SRCNAME}-templates ${SRCNAME}-common postgresql postgresql-client python-psycopg2 tgt ${SRCNAME}-cfn bash"
>  RDEPENDS_${SRCNAME}-api = "${SRCNAME}-engine"
>  RDEPENDS_${SRCNAME}-api-cfn = "${SRCNAME}-engine"
>  RDEPENDS_${SRCNAME}-setup = "postgresql sudo ${SRCNAME}-engine"
> --
> 2.7.4
>
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
>
> View/Reply Online (#4756): https://lists.yoctoproject.org/g/meta-virtualization/message/4756
> Mute This Topic: https://lists.yoctoproject.org/mt/62496472/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub  [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-



-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-11-27 23:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-27 11:20 [meta-virtualization][zeus][PATCH] python-heat: Fix do_package_qa error zhengruoqin
2019-11-27 23:00 ` Bruce Ashfield

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.