All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] python-keystoneclient: add missing rdepends on python-oslo.serialization
@ 2015-05-19  6:54 jackie.huang
  2015-05-19  6:54 ` [PATCH 2/2] python-nova: add missing rdepends jackie.huang
  2015-05-20 12:17 ` [PATCH 1/2] python-keystoneclient: add missing rdepends on python-oslo.serialization Bruce Ashfield
  0 siblings, 2 replies; 3+ messages in thread
From: jackie.huang @ 2015-05-19  6:54 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

Add missing rdepends or it fails with:
  File "/usr/lib64/python2.7/site-packages/keystoneclient/session.py", line 22, in <module>
    from oslo_serialization import jsonutils
ImportError: No module named oslo_serialization

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
index 0063efc..383163d 100644
--- a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
@@ -32,6 +32,7 @@ RDEPENDS_${PN} += " \
 	python-requests \
 	python-simplejson \
 	python-oslo.config \
+	python-oslo.serialization \
 	python-pbr \
 	"
 
-- 
1.9.1



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

* [PATCH 2/2] python-nova: add missing rdepends
  2015-05-19  6:54 [PATCH 1/2] python-keystoneclient: add missing rdepends on python-oslo.serialization jackie.huang
@ 2015-05-19  6:54 ` jackie.huang
  2015-05-20 12:17 ` [PATCH 1/2] python-keystoneclient: add missing rdepends on python-oslo.serialization Bruce Ashfield
  1 sibling, 0 replies; 3+ messages in thread
From: jackie.huang @ 2015-05-19  6:54 UTC (permalink / raw)
  To: meta-virtualization

From: Jackie Huang <jackie.huang@windriver.com>

Add the missing rdepends on python-oslo.log, python-psutil
and python-amqp or it fails with:

  File "/usr/lib64/python2.7/site-packages/nova/cmd/compute.py", line 23, in <module>
    from oslo_log import log as logging
  ImportError: No module named oslo_log

  File "/usr/lib64/python2.7/site-packages/nova/openstack/common/report/generators/process.py", line 23, in <module>
    import psutil
  ImportError: No module named psutil

  File "/usr/lib64/python2.7/site-packages/stevedore/driver.py", line 50, in _default_on_load_failure
    raise err
  ImportError: No module named amqp

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-openstack/recipes-devtools/python/python-nova_git.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-nova_git.bb b/meta-openstack/recipes-devtools/python/python-nova_git.bb
index 4e96341..423b0c3 100644
--- a/meta-openstack/recipes-devtools/python/python-nova_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-nova_git.bb
@@ -274,6 +274,7 @@ RDEPENDS_${PN} = " libvirt \
 		   python-keystonemiddleware \
 		   python-modules \
 		   python-misc \
+		   python-amqp \
 		   python-amqplib \
 		   python-anyjson \
 		   python-babel \
@@ -297,9 +298,11 @@ RDEPENDS_${PN} = " libvirt \
 		   python-oslo.concurrency \
 		   python-oslo.middleware \
 		   python-oslo.context \
+		   python-oslo.log \
 		   python-paste \
 		   python-pastedeploy \
 		   python-paramiko \
+		   python-psutil \
 		   python-pyasn1 \
 		   python-setuptools-git \
 		   python-simplejson \
-- 
1.9.1



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

* Re: [PATCH 1/2] python-keystoneclient: add missing rdepends on python-oslo.serialization
  2015-05-19  6:54 [PATCH 1/2] python-keystoneclient: add missing rdepends on python-oslo.serialization jackie.huang
  2015-05-19  6:54 ` [PATCH 2/2] python-nova: add missing rdepends jackie.huang
@ 2015-05-20 12:17 ` Bruce Ashfield
  1 sibling, 0 replies; 3+ messages in thread
From: Bruce Ashfield @ 2015-05-20 12:17 UTC (permalink / raw)
  To: Huang, Jie (Jackie); +Cc: meta-virtualization

On Tue, May 19, 2015 at 2:54 AM,  <jackie.huang@windriver.com> wrote:
> From: Jackie Huang <jackie.huang@windriver.com>
>
> Add missing rdepends or it fails with:
>   File "/usr/lib64/python2.7/site-packages/keystoneclient/session.py", line 22, in <module>
>     from oslo_serialization import jsonutils
> ImportError: No module named oslo_serialization
>

Thanks Jackie, I've merged the two changes.

Bruce

> Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
> ---
>  meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
> index 0063efc..383163d 100644
> --- a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
> +++ b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
> @@ -32,6 +32,7 @@ RDEPENDS_${PN} += " \
>         python-requests \
>         python-simplejson \
>         python-oslo.config \
> +       python-oslo.serialization \
>         python-pbr \
>         "
>
> --
> 1.9.1
>
> --
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"


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

end of thread, other threads:[~2015-05-20 12:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-19  6:54 [PATCH 1/2] python-keystoneclient: add missing rdepends on python-oslo.serialization jackie.huang
2015-05-19  6:54 ` [PATCH 2/2] python-nova: add missing rdepends jackie.huang
2015-05-20 12:17 ` [PATCH 1/2] python-keystoneclient: add missing rdepends on python-oslo.serialization 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.