diff options
| author | Mark Asselstine <mark.asselstine@windriver.com> | 2015-08-12 15:47:57 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-08-13 23:41:54 -0400 |
| commit | 3c7fb80b3eb8d5de294b066b73dbbd02bffedeb9 (patch) | |
| tree | 8237650ff4b4cce023f9d8ef9fec92f509b99272 | |
| parent | 131510e36bdb161f44df46134ccd2ef6360a935a (diff) | |
| download | meta-cloud-services-3c7fb80b3eb8d5de294b066b73dbbd02bffedeb9.tar.gz | |
python-nova: add missing dependency on sqlparse
Attempting to use nova-manage, for example to perform 'service list',
will result in a python trace indicating that the sqlparse module was
not found. Add the python-sqlparse recipe and include it in the
RDEPENDS list for nova.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-nova_git.bb | 1 | ||||
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-sqlparse_0.1.16.bb | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-nova_git.bb b/meta-openstack/recipes-devtools/python/python-nova_git.bb index 423b0c3..13553f1 100644 --- a/meta-openstack/recipes-devtools/python/python-nova_git.bb +++ b/meta-openstack/recipes-devtools/python/python-nova_git.bb | |||
| @@ -322,6 +322,7 @@ RDEPENDS_${PN} = " libvirt \ | |||
| 322 | python-posix-ipc \ | 322 | python-posix-ipc \ |
| 323 | python-rfc3986 \ | 323 | python-rfc3986 \ |
| 324 | python-oslo.i18n \ | 324 | python-oslo.i18n \ |
| 325 | python-sqlparse \ | ||
| 325 | " | 326 | " |
| 326 | 327 | ||
| 327 | RDEPENDS_${SRCNAME}-common = "${PN} openssl openssl-misc libxml2 libxslt \ | 328 | RDEPENDS_${SRCNAME}-common = "${PN} openssl openssl-misc libxml2 libxslt \ |
diff --git a/meta-openstack/recipes-devtools/python/python-sqlparse_0.1.16.bb b/meta-openstack/recipes-devtools/python/python-sqlparse_0.1.16.bb new file mode 100644 index 0000000..8ea99d7 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-sqlparse_0.1.16.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | DESCRIPTION = "Non-validating SQL parser module" | ||
| 2 | HOMEPAGE = "http://pypi.python.org/pypi/sqlparse" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "BSD" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=13ec2f893997ca1f516b55496e019a81" | ||
| 6 | |||
| 7 | SRCNAME = "sqlparse" | ||
| 8 | SRC_URI = "http://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
| 9 | |||
| 10 | SRC_URI[md5sum] = "370962a307ebaaa70a28b6b0ccb53980" | ||
| 11 | SRC_URI[sha256sum] = "678c6c36ca4b01405177da8b84eecf92ec92c9f6c762396c965bb5d305f20f81" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 14 | |||
| 15 | export BUILD_SYS | ||
| 16 | export HOST_SYS | ||
| 17 | |||
| 18 | inherit setuptools | ||
| 19 | |||
| 20 | # DEPENDS_default: python-pip | ||
| 21 | |||
| 22 | DEPENDS += " \ | ||
| 23 | " | ||
| 24 | |||
| 25 | # RDEPENDS_default: | ||
| 26 | RDEPENDS_${PN} += " \ | ||
| 27 | " | ||
