summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2017-11-06 12:02:18 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-11-07 15:13:47 -0500
commit7082e92d5ab465d4475b902fe767902480f3c12e (patch)
tree3d82c2b673b8bb40bf00a7c63e667fa97ec6277f
parent491d48ef7932671a490b65a76e9084f2020f05a7 (diff)
downloadmeta-cloud-services-7082e92d5ab465d4475b902fe767902480f3c12e.tar.gz
rabbitmq-server: add missing depends on coreutils-native
With the move to RSS this missing dependency became a build issue, previously hidden by some other package fullfilling the dependency before this package was built. With RSS we need to ensure all first level dependencies are listed to avoid build failures. The build requires the 'fold' command which is provided by coreutils-native. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--meta-openstack/recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb11
1 files changed, 10 insertions, 1 deletions
diff --git a/meta-openstack/recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb b/meta-openstack/recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb
index 8e4be5f..7f003fd 100644
--- a/meta-openstack/recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb
+++ b/meta-openstack/recipes-extended/rabbitmq/rabbitmq-server_3.2.4.bb
@@ -3,7 +3,6 @@ HOMEPAGE = "http://www.rabbitmq.com/"
3LICENSE = "MPL-1.1" 3LICENSE = "MPL-1.1"
4LIC_FILES_CHKSUM = "file://LICENSE-MPL-RabbitMQ;md5=b651d0a6feaaf2bf5eb9d36b2495c510" 4LIC_FILES_CHKSUM = "file://LICENSE-MPL-RabbitMQ;md5=b651d0a6feaaf2bf5eb9d36b2495c510"
5SECTION = "network" 5SECTION = "network"
6DEPENDS = "erlang-native libxslt python-simplejson zip-native unzip-native libxslt-native"
7PR = "r2" 6PR = "r2"
8 7
9SRC_URI = "http://www.rabbitmq.com/releases/rabbitmq-server/v${PV}/${PN}-${PV}.tar.gz \ 8SRC_URI = "http://www.rabbitmq.com/releases/rabbitmq-server/v${PV}/${PN}-${PV}.tar.gz \
@@ -17,6 +16,16 @@ SRC_URI = "http://www.rabbitmq.com/releases/rabbitmq-server/v${PV}/${PN}-${PV}.t
17SRC_URI[md5sum] = "09d1af64c005bc680d6790b90655d021" 16SRC_URI[md5sum] = "09d1af64c005bc680d6790b90655d021"
18SRC_URI[sha256sum] = "a930f92b362df2f292ec5f0281aa2011eb0c668faf6e24c4653a9fc53ec43b9f" 17SRC_URI[sha256sum] = "a930f92b362df2f292ec5f0281aa2011eb0c668faf6e24c4653a9fc53ec43b9f"
19 18
19DEPENDS = " \
20 erlang-native \
21 libxslt \
22 python-simplejson \
23 zip-native \
24 unzip-native \
25 libxslt-native \
26 coreutils-native\
27"
28
20RDEPENDS_${PN} = "erlang erlang-modules" 29RDEPENDS_${PN} = "erlang erlang-modules"
21 30
22do_compile() { 31do_compile() {