From 64bc1b77f81e3a8b0f3c42e0ca827253f7a42f3d Mon Sep 17 00:00:00 2001 From: Adrian Dudau Date: Tue, 23 May 2017 14:45:47 +0200 Subject: openstack-image-*: Remove ROOTFS_PKGMANAGE_BOOTSTRAP run-postinsts is now installed by default in image.bbclass, so no need to include it in each image. Reference: OE-core rev 529244ee212fe14019e35a5f163fab705ddbf141 Signed-off-by: Adrian Dudau Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-extended/images/openstack-image-aio.bb | 1 - meta-openstack/recipes-extended/images/openstack-image-compute.bb | 1 - meta-openstack/recipes-extended/images/openstack-image-controller.bb | 1 - meta-openstack/recipes-extended/images/openstack-image-network.bb | 1 - 4 files changed, 4 deletions(-) (limited to 'meta-openstack') diff --git a/meta-openstack/recipes-extended/images/openstack-image-aio.bb b/meta-openstack/recipes-extended/images/openstack-image-aio.bb index 2df8536..2fbb85e 100644 --- a/meta-openstack/recipes-extended/images/openstack-image-aio.bb +++ b/meta-openstack/recipes-extended/images/openstack-image-aio.bb @@ -6,7 +6,6 @@ OPENSTACK_COMPUTE_EXTRA_INSTALL ?= "" OPENSTACK_AIO_EXTRA_INSTALL ?= "" IMAGE_INSTALL = " \ - ${ROOTFS_PKGMANAGE_BOOTSTRAP} \ ${CORE_IMAGE_BASE_INSTALL} \ packagegroup-core-full-cmdline \ packagegroup-cloud-compute \ diff --git a/meta-openstack/recipes-extended/images/openstack-image-compute.bb b/meta-openstack/recipes-extended/images/openstack-image-compute.bb index 979e525..897efc4 100644 --- a/meta-openstack/recipes-extended/images/openstack-image-compute.bb +++ b/meta-openstack/recipes-extended/images/openstack-image-compute.bb @@ -5,7 +5,6 @@ OPENSTACK_COMPUTE_EXTRA_INSTALL ?= "" IMAGE_INSTALL = " \ packagegroup-core-boot \ - ${ROOTFS_PKGMANAGE_BOOTSTRAP} \ packagegroup-cloud-compute \ packagegroup-cloud-debug \ packagegroup-cloud-extras \ diff --git a/meta-openstack/recipes-extended/images/openstack-image-controller.bb b/meta-openstack/recipes-extended/images/openstack-image-controller.bb index 89a4d07..6f324d8 100644 --- a/meta-openstack/recipes-extended/images/openstack-image-controller.bb +++ b/meta-openstack/recipes-extended/images/openstack-image-controller.bb @@ -5,7 +5,6 @@ OPENSTACK_CONTROLLER_EXTRA_INSTALL ?= "" IMAGE_INSTALL = "\ ${CORE_IMAGE_BASE_INSTALL} \ - ${ROOTFS_PKGMANAGE_BOOTSTRAP} \ packagegroup-core-full-cmdline \ packagegroup-cloud-controller \ packagegroup-cloud-network \ diff --git a/meta-openstack/recipes-extended/images/openstack-image-network.bb b/meta-openstack/recipes-extended/images/openstack-image-network.bb index 8c94357..370c273 100644 --- a/meta-openstack/recipes-extended/images/openstack-image-network.bb +++ b/meta-openstack/recipes-extended/images/openstack-image-network.bb @@ -3,7 +3,6 @@ LICENSE = "MIT" IMAGE_INSTALL = "\ ${CORE_IMAGE_BASE_INSTALL} \ - ${ROOTFS_PKGMANAGE_BOOTSTRAP} \ packagegroup-core-full-cmdline \ packagegroup-cloud-network \ " -- cgit v1.2.3-54-g00ecf From 66ccdef9007dfaa564cfd4fbcbc41b50237771b4 Mon Sep 17 00:00:00 2001 From: Adrian Dudau Date: Tue, 23 May 2017 14:13:55 +0200 Subject: python: Inherit setuptools instead of distutils for several packages python-appdirs python-keystoneauth python-lesscpy python-os-client-config The setup scripts of these modules use setuptools instead of distutils, resulting in errors like this: | File "setup.py", line 5, in | from setuptools import setup | ImportError: No module named setuptools Signed-off-by: Adrian Dudau Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-devtools/python/python-appdirs_git.bb | 2 +- meta-openstack/recipes-devtools/python/python-keystoneauth1_2.18.0.bb | 2 +- meta-openstack/recipes-devtools/python/python-lesscpy_0.10.2.bb | 2 +- meta-openstack/recipes-devtools/python/python-os-client-config_git.bb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'meta-openstack') diff --git a/meta-openstack/recipes-devtools/python/python-appdirs_git.bb b/meta-openstack/recipes-devtools/python/python-appdirs_git.bb index 8e40f26..2482871 100644 --- a/meta-openstack/recipes-devtools/python/python-appdirs_git.bb +++ b/meta-openstack/recipes-devtools/python/python-appdirs_git.bb @@ -12,7 +12,7 @@ SRC_URI = "git://github.com/ActiveState/${SRCNAME}.git" S = "${WORKDIR}/git" -inherit distutils +inherit setuptools DEPENDS += " \ python-pip \ diff --git a/meta-openstack/recipes-devtools/python/python-keystoneauth1_2.18.0.bb b/meta-openstack/recipes-devtools/python/python-keystoneauth1_2.18.0.bb index 1fdf9e1..83582c5 100644 --- a/meta-openstack/recipes-devtools/python/python-keystoneauth1_2.18.0.bb +++ b/meta-openstack/recipes-devtools/python/python-keystoneauth1_2.18.0.bb @@ -12,7 +12,7 @@ SRC_URI[sha256sum] = "075a9ca7a8877c5885fa2487699015e45260c4e6be119683effe0ad2ab S = "${WORKDIR}/${SRCNAME}-${PV}" -inherit distutils +inherit setuptools DEPENDS += " \ python-pbr \ diff --git a/meta-openstack/recipes-devtools/python/python-lesscpy_0.10.2.bb b/meta-openstack/recipes-devtools/python/python-lesscpy_0.10.2.bb index 61ae935..71e0dc0 100644 --- a/meta-openstack/recipes-devtools/python/python-lesscpy_0.10.2.bb +++ b/meta-openstack/recipes-devtools/python/python-lesscpy_0.10.2.bb @@ -17,7 +17,7 @@ SRC_URI[sha256sum] = "ccad1ad2a89ced1875c5ca4e16e5478b791d31fb187fe29f1541859318 S = "${WORKDIR}/${SRCNAME}-${PV}" -inherit distutils +inherit setuptools DISTUTILS_INSTALL_ARGS = "--root=${D} \ --prefix=${prefix} \ diff --git a/meta-openstack/recipes-devtools/python/python-os-client-config_git.bb b/meta-openstack/recipes-devtools/python/python-os-client-config_git.bb index 7b55dbb..5393bb7 100644 --- a/meta-openstack/recipes-devtools/python/python-os-client-config_git.bb +++ b/meta-openstack/recipes-devtools/python/python-os-client-config_git.bb @@ -12,7 +12,7 @@ SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/newton" S = "${WORKDIR}/git" -inherit distutils +inherit setuptools DEPENDS += " \ python-pbr \ -- cgit v1.2.3-54-g00ecf From 68d9d71b3c96fd043f235d92cec574e86378e501 Mon Sep 17 00:00:00 2001 From: Ioan-Adrian Ratiu Date: Fri, 16 Jun 2017 15:10:47 +0300 Subject: layer.conf: bump python-requests 2.12 -> 2.13 Meta-oe upreved to 2.13 (present in Pyro) so bump it here also to avoid bitbake messages like: "NOTE: preferred version 2.12.0 of python-requests not available" Signed-off-by: Ioan-Adrian Ratiu Signed-off-by: Bruce Ashfield --- meta-openstack/conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-openstack') diff --git a/meta-openstack/conf/layer.conf b/meta-openstack/conf/layer.conf index 98282e2..61e9fb5 100644 --- a/meta-openstack/conf/layer.conf +++ b/meta-openstack/conf/layer.conf @@ -18,7 +18,7 @@ PREFERRED_VERSION_python-futures = "3.0.3%" PREFERRED_VERSION_python-django = "1.8.6" PREFERRED_VERSION_python-netaddr = "0.7.19" PREFERRED_VERSION_python-sqlalchemy = "1.0.16" -PREFERRED_VERSION_python-requests = "2.12.0" +PREFERRED_VERSION_python-requests = "2.13.0" PREFERRED_VERSION_python-amqp = "1.4.9" PREFERRED_VERSION_python-kombu = "3.0.%" -- cgit v1.2.3-54-g00ecf From 3bd48fe64c0459bb09d2b17c6606e020896ebeb5 Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Thu, 29 Jun 2017 13:56:39 -0400 Subject: python: satisfy setup.py 'setup_requires' for vcversioner python-jsonschema has a 'setup_requires' for python vcversioner so we must have a -native version of python-vcversioner and DEPEND on it in order to avoid setup.py downloading the requires from PyPI. Signed-off-by: Mark Asselstine Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb | 5 +++++ .../recipes-devtools/python/python-vcversioner_2.14.0.0.bb | 8 ++++++++ 2 files changed, 13 insertions(+) (limited to 'meta-openstack') diff --git a/meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb b/meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb index a3a7ec0..fef8d5f 100644 --- a/meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb +++ b/meta-openstack/recipes-devtools/python/python-jsonschema_2.5.1.bb @@ -17,3 +17,8 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" inherit setuptools DEPENDS += "python-vcversioner" + +# Satisfy setup.py 'setup_requires' +DEPENDS += " \ + python-vcversioner-native \ + " diff --git a/meta-openstack/recipes-devtools/python/python-vcversioner_2.14.0.0.bb b/meta-openstack/recipes-devtools/python/python-vcversioner_2.14.0.0.bb index 2fe96ab..bcff6f3 100644 --- a/meta-openstack/recipes-devtools/python/python-vcversioner_2.14.0.0.bb +++ b/meta-openstack/recipes-devtools/python/python-vcversioner_2.14.0.0.bb @@ -14,3 +14,11 @@ SRC_URI[sha256sum] = "acd43686e92e6c8bbeb4f2eef54408567a7adea9692fa72d591eec5357 S = "${WORKDIR}/${SRCNAME}-${PV}" inherit setuptools + + +DEPENDS_class-native += " \ + python \ + python-setuptools \ + " + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf From 487a535eb568ed9e71da20ad73b8c08892660163 Mon Sep 17 00:00:00 2001 From: He Zhe Date: Wed, 28 Jun 2017 16:52:47 +0800 Subject: python-pyparsing: Move from meta-openstack to meta-cloud-services It's not an openstack specific package. Signed-off-by: He Zhe Signed-off-by: Bruce Ashfield --- .../recipes-devtools/python/python-pyparsing_2.0.1.bb | 17 ----------------- recipes-devtools/python/python-pyparsing_2.0.1.bb | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 17 deletions(-) delete mode 100644 meta-openstack/recipes-devtools/python/python-pyparsing_2.0.1.bb create mode 100644 recipes-devtools/python/python-pyparsing_2.0.1.bb (limited to 'meta-openstack') diff --git a/meta-openstack/recipes-devtools/python/python-pyparsing_2.0.1.bb b/meta-openstack/recipes-devtools/python/python-pyparsing_2.0.1.bb deleted file mode 100644 index 32d9ebb..0000000 --- a/meta-openstack/recipes-devtools/python/python-pyparsing_2.0.1.bb +++ /dev/null @@ -1,17 +0,0 @@ -DESCRIPTION = "Python parsing module" -HOMEPAGE = "http://pyparsing.wikispaces.com/" -SECTION = "devel/python" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=fb46329938e6bc829b256e37d5c1e31a" - -PR = "r0" -SRCNAME = "pyparsing" - -SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.zip" - -SRC_URI[md5sum] = "dc7036a6f1ab01c3baed3d97af8d77c0" -SRC_URI[sha256sum] = "7e1766ee747cca79fe172b670fd53ef58fc55d2b1804fd6c66d857abb62d143a" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit distutils diff --git a/recipes-devtools/python/python-pyparsing_2.0.1.bb b/recipes-devtools/python/python-pyparsing_2.0.1.bb new file mode 100644 index 0000000..32d9ebb --- /dev/null +++ b/recipes-devtools/python/python-pyparsing_2.0.1.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "Python parsing module" +HOMEPAGE = "http://pyparsing.wikispaces.com/" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=fb46329938e6bc829b256e37d5c1e31a" + +PR = "r0" +SRCNAME = "pyparsing" + +SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.zip" + +SRC_URI[md5sum] = "dc7036a6f1ab01c3baed3d97af8d77c0" +SRC_URI[sha256sum] = "7e1766ee747cca79fe172b670fd53ef58fc55d2b1804fd6c66d857abb62d143a" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit distutils -- cgit v1.2.3-54-g00ecf From 1e7567ad8eef3a3b1aa3c60f71d7eff507f6aefa Mon Sep 17 00:00:00 2001 From: He Zhe Date: Wed, 28 Jun 2017 16:52:48 +0800 Subject: glusterfs: Move from meta-openstack to meta-cloud-services It's not an openstack specific package. Signed-off-by: He Zhe Signed-off-by: Bruce Ashfield --- ...nt.glusterfs-not-accepting-version-argume.patch | 33 ------ .../recipes-extended/glusterfs/files/glusterd-ovp | 93 --------------- ...glusterfs-disable-default-startup-scripts.patch | 25 ---- .../files/xlator-host-contamination-3.4.patch | 44 ------- .../recipes-extended/glusterfs/glusterfs.inc | 132 --------------------- .../recipes-extended/glusterfs/glusterfs_3.4.2.bb | 12 -- ...nt.glusterfs-not-accepting-version-argume.patch | 33 ++++++ recipes-extended/glusterfs/files/glusterd-ovp | 93 +++++++++++++++ ...glusterfs-disable-default-startup-scripts.patch | 25 ++++ .../files/xlator-host-contamination-3.4.patch | 44 +++++++ recipes-extended/glusterfs/glusterfs.inc | 132 +++++++++++++++++++++ recipes-extended/glusterfs/glusterfs_3.4.2.bb | 12 ++ 12 files changed, 339 insertions(+), 339 deletions(-) delete mode 100644 meta-openstack/recipes-extended/glusterfs/files/0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch delete mode 100644 meta-openstack/recipes-extended/glusterfs/files/glusterd-ovp delete mode 100644 meta-openstack/recipes-extended/glusterfs/files/glusterfs-disable-default-startup-scripts.patch delete mode 100644 meta-openstack/recipes-extended/glusterfs/files/xlator-host-contamination-3.4.patch delete mode 100644 meta-openstack/recipes-extended/glusterfs/glusterfs.inc delete mode 100644 meta-openstack/recipes-extended/glusterfs/glusterfs_3.4.2.bb create mode 100644 recipes-extended/glusterfs/files/0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch create mode 100644 recipes-extended/glusterfs/files/glusterd-ovp create mode 100644 recipes-extended/glusterfs/files/glusterfs-disable-default-startup-scripts.patch create mode 100644 recipes-extended/glusterfs/files/xlator-host-contamination-3.4.patch create mode 100644 recipes-extended/glusterfs/glusterfs.inc create mode 100644 recipes-extended/glusterfs/glusterfs_3.4.2.bb (limited to 'meta-openstack') diff --git a/meta-openstack/recipes-extended/glusterfs/files/0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch b/meta-openstack/recipes-extended/glusterfs/files/0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch deleted file mode 100644 index d89fde9..0000000 --- a/meta-openstack/recipes-extended/glusterfs/files/0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 960a101ab795fed1b7505ed9db61769cbdb9450e Mon Sep 17 00:00:00 2001 -From: Sebastian Lenartowicz -Date: Wed, 4 Dec 2013 15:16:02 -0500 -Subject: [PATCH 1/1] Fix for mount.glusterfs not accepting --version argument - -The mount.glusterfs shell script serves as a convenient "gatekeeper" -for the glusterfs program itself, and performs a few setup tasks, -depending on the options it's given. However, an overzealous check -for the number of arguments (any number of arguments less than 2) -was preventing the --version and --help arguments from being usable -on their own. This patch solves that by dropping the check (the -glusterfs software itself can throw out commands with too few -arguments, which makes the check redundant in any event). ---- - xlators/mount/fuse/utils/mount.glusterfs.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/xlators/mount/fuse/utils/mount.glusterfs.in b/xlators/mount/fuse/utils/mount.glusterfs.in -index 2a8183c..ea18efb 100755 ---- a/xlators/mount/fuse/utils/mount.glusterfs.in -+++ b/xlators/mount/fuse/utils/mount.glusterfs.in -@@ -395,7 +395,7 @@ main () - pos_args=$((pos_args+1)) - fi - done -- if [ $in_opt = "yes" -o $pos_args -lt 2 ]; then -+ if [ $in_opt = "yes" ]; then - usage - exit 1 - fi --- -1.7.9.7 - diff --git a/meta-openstack/recipes-extended/glusterfs/files/glusterd-ovp b/meta-openstack/recipes-extended/glusterfs/files/glusterd-ovp deleted file mode 100644 index c020928..0000000 --- a/meta-openstack/recipes-extended/glusterfs/files/glusterd-ovp +++ /dev/null @@ -1,93 +0,0 @@ -#!/bin/bash -# -# chkconfig: 35 20 80 -# description: Gluster File System service for volume management -# - -# Get function from functions library -. /etc/init.d/functions - -BASE=glusterd -PIDFILE=/var/run/$BASE.pid -PID=`test -f $PIDFILE && cat $PIDFILE` -GLUSTERFSD=glusterfsd -GLUSTERFS=glusterfs -GLUSTERD_BIN=/usr/sbin/$BASE -GLUSTERD_OPTS="--pid-file=$PIDFILE" -GLUSTERD="$GLUSTERD_BIN $GLUSTERD_OPTS" -RETVAL=0 - -# Start the service $BASE -start() -{ - # Force creation of the log directory even on a tmpfs /var/log. - mkdir -p /var/log/glusterfs - - start-stop-daemon --stop --test --quiet --pidfile $PIDFILE - status=$? - if [ $status -eq 0 ]; then - echo "glusterd service is already running with pid $PID" - exit 1 - else - echo -n $"Starting $BASE:" - start-stop-daemon --start --pidfile $PIDFILE \ - --exec $GLUSTERD_BIN -- "$GLUSTERD_OPTS" - RETVAL=$? - echo - [ $RETVAL -ne 0 ] && exit $RETVAL - fi -} - -# Stop the service $BASE -stop() -{ - echo -n $"Stopping $BASE:" - start-stop-daemon --stop --test --quiet --pidfile $PIDFILE - status=$? - if [ $status -eq 0 ]; then - start-stop-daemon --stop --quiet --pidfile $PIDFILE - [ -w $PIDFILE ] && rm -f $PIDFILE - else - start-stop-daemon --stop --quiet --name $BASE - fi - - echo - pidof -c -o %PPID -x $GLUSTERFSD &> /dev/null - [ $? -eq 0 ] && start-stop-daemon --stop --quiet --name $GLUSTERFSD - - #pidof -c -o %PPID -x $GLUSTERFS &> /dev/null - #[ $? -eq 0 ] && start-stop-daemon --stop --quiet --name $GLUSTERFS - - if [ -f /etc/glusterd/nfs/run/nfs.pid ] ;then - pid=`cat /etc/glusterd/nfs/run/nfs.pid`; - cmd=`ps -p $pid -o comm=` - - if [ $cmd == "glusterfs" ]; then - start-stop-daemon --stop --quiet \ - --pidfile /etc/glusterd/nfs/run/nfs.pid - fi - fi -} - - -### service arguments ### -case $1 in - start) - start - ;; - stop) - stop - ;; - status) - status $BASE - ;; - restart | force-reload) - $0 stop - $0 start - ;; - *) - echo $"Usage: $0 {start|stop|status|restart}." - exit 1 -esac - -exit 0 diff --git a/meta-openstack/recipes-extended/glusterfs/files/glusterfs-disable-default-startup-scripts.patch b/meta-openstack/recipes-extended/glusterfs/files/glusterfs-disable-default-startup-scripts.patch deleted file mode 100644 index 4e0379b..0000000 --- a/meta-openstack/recipes-extended/glusterfs/files/glusterfs-disable-default-startup-scripts.patch +++ /dev/null @@ -1,25 +0,0 @@ -The glusterfs code for installing start-up scripts checks for systemd -directories on the build host, and if it finds them, it chooses systemd -style scripts, otherwise init.d style scripts. This behavior might -conceivably be suitable for self-hosted builds, but it's grossly broken -for cross-build environments. Since we want to install custom WR scripts -regardless of which script style we support, we patch glusterfs so that -it doesn't install any of its default start-up scripts. - -Upstream-Status: Inappropriate [WR-specific change] -Signed-off-by: Donn Seeley ---- - extras/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/extras/Makefile.am -+++ b/extras/Makefile.am -@@ -2,7 +2,7 @@ - EditorModedir = $(docdir) - EditorMode_DATA = glusterfs-mode.el glusterfs.vim - --SUBDIRS = init.d systemd benchmarking hook-scripts $(OCF_SUBDIR) LinuxRPM -+SUBDIRS = benchmarking hook-scripts $(OCF_SUBDIR) LinuxRPM - - confdir = $(sysconfdir)/glusterfs - conf_DATA = glusterfs-logrotate diff --git a/meta-openstack/recipes-extended/glusterfs/files/xlator-host-contamination-3.4.patch b/meta-openstack/recipes-extended/glusterfs/files/xlator-host-contamination-3.4.patch deleted file mode 100644 index 16cc47e..0000000 --- a/meta-openstack/recipes-extended/glusterfs/files/xlator-host-contamination-3.4.patch +++ /dev/null @@ -1,44 +0,0 @@ -Three of the translator makefiles in glusterfs add unnecessary --L$(xlatordir) link options. This option causes the linker to check -the host's $(xlatordir) directory, resulting in contamination that gets -flagged by Yocto's QA rules. - -Upstream-Status: Pending -Signed-off-by: Donn Seeley ---- - xlators/mgmt/glusterd/src/Makefile.am | 2 -- - xlators/nfs/server/src/Makefile.am | 2 -- - xlators/system/posix-acl/src/Makefile.am | 2 -- - 3 files changed, 6 deletions(-) - ---- a/xlators/mgmt/glusterd/src/Makefile.am -+++ b/xlators/mgmt/glusterd/src/Makefile.am -@@ -33,8 +33,6 @@ AM_CPPFLAGS = $(GF_CPPFLAGS) -I$(top_src - - AM_CFLAGS = -Wall $(GF_CFLAGS) - --AM_LDFLAGS = -L$(xlatordir) -- - CLEANFILES = - - install-data-hook: ---- a/xlators/nfs/server/src/Makefile.am -+++ b/xlators/nfs/server/src/Makefile.am -@@ -19,6 +19,4 @@ AM_CPPFLAGS = $(GF_CPPFLAGS) \ - - AM_CFLAGS = -Wall $(GF_CFLAGS) - --AM_LDFLAGS = -L$(xlatordir) -- - CLEANFILES = ---- a/xlators/system/posix-acl/src/Makefile.am -+++ b/xlators/system/posix-acl/src/Makefile.am -@@ -10,8 +10,6 @@ AM_CPPFLAGS = $(GF_CPPFLAGS) -I$(top_src - - AM_CFLAGS = -Wall $(GF_CFLAGS) - --AM_LDFLAGS = -L$(xlatordir) -- - CLEANFILES = - - access-control-compat: diff --git a/meta-openstack/recipes-extended/glusterfs/glusterfs.inc b/meta-openstack/recipes-extended/glusterfs/glusterfs.inc deleted file mode 100644 index 7a3f71a..0000000 --- a/meta-openstack/recipes-extended/glusterfs/glusterfs.inc +++ /dev/null @@ -1,132 +0,0 @@ -# -# Copyright (C) 2013 Wind River Systems, Inc. -# - -SUMMARY = "Glusterfs distributed filesystem" -DESCRIPTION = "\ - GlusterFS is an open source, distributed file system capable of scaling \ - to several petabytes (actually, 72 brontobytes!) and handling thousands \ - of clients. GlusterFS clusters together storage building blocks over \ - Infiniband RDMA or TCP/IP interconnect, aggregating disk and memory \ - resources and managing data in a single global namespace." -HOMEPAGE = "http://www.gluster.org/" -SECTION = "console/network" - -SRC_URI += "file://glusterd-ovp \ - file://xlator-host-contamination-3.4.patch \ - file://glusterfs-disable-default-startup-scripts.patch \ - file://0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch \ - " - -LICENSE = "(LGPLv3+ | GPLv2) & GPLv3+ & LGPLv3+ & GPLv2+ & LGPLv2+ & LGPLv2.1+ & Apache-2.0" -LIC_FILES_CHKSUM = "file://COPYING-GPLV2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ - file://COPYING-LGPLV3;md5=e6a600fd5e1d9cbde2d983680233ad02 \ - file://contrib/fuse-util/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" - -inherit autotools update-rc.d pkgconfig - -DEPENDS += "bison-native flex-native fuse libaio libxml2 ncurses \ - openssl python readline zlib" - -EXTRA_OECONF = "ac_cv_file__etc_debian_version=no \ - ac_cv_file__etc_SuSE_release=no \ - ac_cv_file__etc_redhat_release=no \ - --with-mountutildir=${sbindir} \ - --disable-fusermount \ - PYTHON=${bindir}/python" - -PACKAGECONFIG ??= "georeplication" -PACKAGECONFIG[bd-xlator] = "--enable-bd-xlator,--disable-bd-xlator,lvm2," -PACKAGECONFIG[debug] = "--enable-debug,--disable-debug,," -PACKAGECONFIG[georeplication] = "--enable-georeplication,--disable-georeplication,,rsync" -PACKAGECONFIG[libibverbs] = "--enable-ibverbs,--disable-ibverbs,libibverbs librdmacm," -PACKAGECONFIG[ocf] = "--with-ocf,--without-ocf,," -PACKAGECONFIG[systemtap] = "--enable-systemtap,--disable-systemtap,systemtap," -PACKAGECONFIG[valgrind] = "--with-valgrind,--without-valgrind,valgrind," - -do_install_append() { - install -d ${D}${sysconfdir}/init.d - install -m 0755 ${WORKDIR}/glusterd-ovp \ - ${D}${sysconfdir}/init.d/glusterd - - # Mount looks for mount.* plug-ins in /sbin; fix it with a symlink. - mkdir -p ${D}${base_sbindir} - (cd ${D}${base_sbindir}; ln -s ..${sbindir}/mount.glusterfs .) - - # These are plug-ins, so they don't need libtool configs. - find ${D}${libdir}/glusterfs/${PV} -name '*.la' -exec rm -f '{}' ';' - - # The RPM spec file creates these directories. - install -d ${D}${sysconfdir}/default/volatiles - cat > ${D}${sysconfdir}/default/volatiles/99_glusterfs << EOF -d root root 0755 ${localstatedir}/log/glusterfs none -d root root 0755 ${localstatedir}/run/gluster none -EOF -} - -INITSCRIPT_PACKAGES = "glusterfs-server" -INITSCRIPT_NAME = "glusterd" -INITSCRIPT_PARAMS = "start 20 5 3 2 . stop 80 0 1 6 ." - -# Allow plug-in symlinks. -INSANE_SKIP_${PN} += "dev-so" -INSANE_SKIP_${PN}-rdma += "dev-so" -INSANE_SKIP_${PN}-fuse += "dev-so" -INSANE_SKIP_${PN}-server += "dev-so" - -PACKAGES += "${PN}-rdma ${PN}-geo-replication ${PN}-fuse ${PN}-server \ - ${PN}-api ${PN}-ocf" - -FILES_${PN}-dbg += "${libdir}/glusterfs/${PV}/*/.debug \ - ${libdir}/glusterfs/${PV}/*/*/.debug \ - ${libdir}/glusterfs/${PV}/*/*/*/.debug \ - ${libexecdir}/glusterfs/.debug" - -FILES_${PN} = "${libdir}/glusterfs/${PV}/auth \ - ${libdir}/glusterfs/${PV}/rpc-transport/socket* \ - ${libdir}/glusterfs/${PV}/xlator/cluster \ - ${libdir}/glusterfs/${PV}/xlator/debug \ - ${libdir}/glusterfs/${PV}/xlator/encryption \ - ${libdir}/glusterfs/${PV}/xlator/features \ - ${libdir}/glusterfs/${PV}/xlator/performance \ - ${libdir}/glusterfs/${PV}/xlator/protocol/client* \ - ${libdir}/glusterfs/${PV}/xlator/system \ - ${libdir}/glusterfs/${PV}/xlator/testing \ - ${libdir}/libglusterfs.so.* \ - ${libdir}/libgfrpc.so.* \ - ${libdir}/libgfxdr.so.* \ - ${localstatedir} \ - ${sysconfdir}/default/volatiles \ - ${sbindir}/glusterfs \ - ${sbindir}/glusterfsd" - -FILES_${PN}-rdma = "${libdir}/glusterfs/${PV}/rpc-transport/rdma*" - -FILES_${PN}-geo-replication = "${libexecdir}/glusterfs/gsyncd \ - ${libexecdir}/glusterfs/python/syncdaemon" - -FILES_${PN}-fuse = "${bindir}/fusermount-glusterfs \ - ${libdir}/glusterfs/${PV}/xlator/mount \ - ${sbindir}/mount.glusterfs \ - ${base_sbindir}/mount.glusterfs" - -FILES_${PN}-server = "${libdir}/glusterfs/${PV}/xlator/mgmt \ - ${libdir}/glusterfs/${PV}/xlator/nfs \ - ${libdir}/glusterfs/${PV}/xlator/protocol/server* \ - ${libdir}/glusterfs/${PV}/xlator/storage \ - ${sbindir}/gluster \ - ${sbindir}/glusterd \ - ${sysconfdir}/glusterfs/glusterd.vol \ - ${sysconfdir}/glusterfs/glusterfs-logrotate \ - ${sysconfdir}/init.d/glusterd" - -# Note: Debian package renaming produces libgfapi[0-9]+-*.*.rpm. -FILES_${PN}-api = "${libdir}/libgfapi.so.*" - -FILES_${PN}-ocf = "${prefix}/lib/ocf" - -pkg_postinst_${PN}() { - if [ -z "$D" ] && [ -e /etc/init.d/populate-volatile.sh ]; then - /etc/init.d/populate-volatile.sh update - fi -} diff --git a/meta-openstack/recipes-extended/glusterfs/glusterfs_3.4.2.bb b/meta-openstack/recipes-extended/glusterfs/glusterfs_3.4.2.bb deleted file mode 100644 index b6ae856..0000000 --- a/meta-openstack/recipes-extended/glusterfs/glusterfs_3.4.2.bb +++ /dev/null @@ -1,12 +0,0 @@ -# -# Copyright (C) 2013 Wind River Systems, Inc. -# - -PR = "r0" - -SRC_URI = "http://download.gluster.org/pub/gluster/glusterfs/3.4/${PV}/${BPN}-${PV}.tar.gz" - -SRC_URI[md5sum] = "7c05304a9aca3c85ff27458461783623" -SRC_URI[sha256sum] = "4fcd42b13b60a67587de98e60ff679803433bbb0c11aa2b40c4135e2358cedef" - -require glusterfs.inc diff --git a/recipes-extended/glusterfs/files/0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch b/recipes-extended/glusterfs/files/0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch new file mode 100644 index 0000000..d89fde9 --- /dev/null +++ b/recipes-extended/glusterfs/files/0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch @@ -0,0 +1,33 @@ +From 960a101ab795fed1b7505ed9db61769cbdb9450e Mon Sep 17 00:00:00 2001 +From: Sebastian Lenartowicz +Date: Wed, 4 Dec 2013 15:16:02 -0500 +Subject: [PATCH 1/1] Fix for mount.glusterfs not accepting --version argument + +The mount.glusterfs shell script serves as a convenient "gatekeeper" +for the glusterfs program itself, and performs a few setup tasks, +depending on the options it's given. However, an overzealous check +for the number of arguments (any number of arguments less than 2) +was preventing the --version and --help arguments from being usable +on their own. This patch solves that by dropping the check (the +glusterfs software itself can throw out commands with too few +arguments, which makes the check redundant in any event). +--- + xlators/mount/fuse/utils/mount.glusterfs.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/xlators/mount/fuse/utils/mount.glusterfs.in b/xlators/mount/fuse/utils/mount.glusterfs.in +index 2a8183c..ea18efb 100755 +--- a/xlators/mount/fuse/utils/mount.glusterfs.in ++++ b/xlators/mount/fuse/utils/mount.glusterfs.in +@@ -395,7 +395,7 @@ main () + pos_args=$((pos_args+1)) + fi + done +- if [ $in_opt = "yes" -o $pos_args -lt 2 ]; then ++ if [ $in_opt = "yes" ]; then + usage + exit 1 + fi +-- +1.7.9.7 + diff --git a/recipes-extended/glusterfs/files/glusterd-ovp b/recipes-extended/glusterfs/files/glusterd-ovp new file mode 100644 index 0000000..c020928 --- /dev/null +++ b/recipes-extended/glusterfs/files/glusterd-ovp @@ -0,0 +1,93 @@ +#!/bin/bash +# +# chkconfig: 35 20 80 +# description: Gluster File System service for volume management +# + +# Get function from functions library +. /etc/init.d/functions + +BASE=glusterd +PIDFILE=/var/run/$BASE.pid +PID=`test -f $PIDFILE && cat $PIDFILE` +GLUSTERFSD=glusterfsd +GLUSTERFS=glusterfs +GLUSTERD_BIN=/usr/sbin/$BASE +GLUSTERD_OPTS="--pid-file=$PIDFILE" +GLUSTERD="$GLUSTERD_BIN $GLUSTERD_OPTS" +RETVAL=0 + +# Start the service $BASE +start() +{ + # Force creation of the log directory even on a tmpfs /var/log. + mkdir -p /var/log/glusterfs + + start-stop-daemon --stop --test --quiet --pidfile $PIDFILE + status=$? + if [ $status -eq 0 ]; then + echo "glusterd service is already running with pid $PID" + exit 1 + else + echo -n $"Starting $BASE:" + start-stop-daemon --start --pidfile $PIDFILE \ + --exec $GLUSTERD_BIN -- "$GLUSTERD_OPTS" + RETVAL=$? + echo + [ $RETVAL -ne 0 ] && exit $RETVAL + fi +} + +# Stop the service $BASE +stop() +{ + echo -n $"Stopping $BASE:" + start-stop-daemon --stop --test --quiet --pidfile $PIDFILE + status=$? + if [ $status -eq 0 ]; then + start-stop-daemon --stop --quiet --pidfile $PIDFILE + [ -w $PIDFILE ] && rm -f $PIDFILE + else + start-stop-daemon --stop --quiet --name $BASE + fi + + echo + pidof -c -o %PPID -x $GLUSTERFSD &> /dev/null + [ $? -eq 0 ] && start-stop-daemon --stop --quiet --name $GLUSTERFSD + + #pidof -c -o %PPID -x $GLUSTERFS &> /dev/null + #[ $? -eq 0 ] && start-stop-daemon --stop --quiet --name $GLUSTERFS + + if [ -f /etc/glusterd/nfs/run/nfs.pid ] ;then + pid=`cat /etc/glusterd/nfs/run/nfs.pid`; + cmd=`ps -p $pid -o comm=` + + if [ $cmd == "glusterfs" ]; then + start-stop-daemon --stop --quiet \ + --pidfile /etc/glusterd/nfs/run/nfs.pid + fi + fi +} + + +### service arguments ### +case $1 in + start) + start + ;; + stop) + stop + ;; + status) + status $BASE + ;; + restart | force-reload) + $0 stop + $0 start + ;; + *) + echo $"Usage: $0 {start|stop|status|restart}." + exit 1 +esac + +exit 0 diff --git a/recipes-extended/glusterfs/files/glusterfs-disable-default-startup-scripts.patch b/recipes-extended/glusterfs/files/glusterfs-disable-default-startup-scripts.patch new file mode 100644 index 0000000..4e0379b --- /dev/null +++ b/recipes-extended/glusterfs/files/glusterfs-disable-default-startup-scripts.patch @@ -0,0 +1,25 @@ +The glusterfs code for installing start-up scripts checks for systemd +directories on the build host, and if it finds them, it chooses systemd +style scripts, otherwise init.d style scripts. This behavior might +conceivably be suitable for self-hosted builds, but it's grossly broken +for cross-build environments. Since we want to install custom WR scripts +regardless of which script style we support, we patch glusterfs so that +it doesn't install any of its default start-up scripts. + +Upstream-Status: Inappropriate [WR-specific change] +Signed-off-by: Donn Seeley +--- + extras/Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/extras/Makefile.am ++++ b/extras/Makefile.am +@@ -2,7 +2,7 @@ + EditorModedir = $(docdir) + EditorMode_DATA = glusterfs-mode.el glusterfs.vim + +-SUBDIRS = init.d systemd benchmarking hook-scripts $(OCF_SUBDIR) LinuxRPM ++SUBDIRS = benchmarking hook-scripts $(OCF_SUBDIR) LinuxRPM + + confdir = $(sysconfdir)/glusterfs + conf_DATA = glusterfs-logrotate diff --git a/recipes-extended/glusterfs/files/xlator-host-contamination-3.4.patch b/recipes-extended/glusterfs/files/xlator-host-contamination-3.4.patch new file mode 100644 index 0000000..16cc47e --- /dev/null +++ b/recipes-extended/glusterfs/files/xlator-host-contamination-3.4.patch @@ -0,0 +1,44 @@ +Three of the translator makefiles in glusterfs add unnecessary +-L$(xlatordir) link options. This option causes the linker to check +the host's $(xlatordir) directory, resulting in contamination that gets +flagged by Yocto's QA rules. + +Upstream-Status: Pending +Signed-off-by: Donn Seeley +--- + xlators/mgmt/glusterd/src/Makefile.am | 2 -- + xlators/nfs/server/src/Makefile.am | 2 -- + xlators/system/posix-acl/src/Makefile.am | 2 -- + 3 files changed, 6 deletions(-) + +--- a/xlators/mgmt/glusterd/src/Makefile.am ++++ b/xlators/mgmt/glusterd/src/Makefile.am +@@ -33,8 +33,6 @@ AM_CPPFLAGS = $(GF_CPPFLAGS) -I$(top_src + + AM_CFLAGS = -Wall $(GF_CFLAGS) + +-AM_LDFLAGS = -L$(xlatordir) +- + CLEANFILES = + + install-data-hook: +--- a/xlators/nfs/server/src/Makefile.am ++++ b/xlators/nfs/server/src/Makefile.am +@@ -19,6 +19,4 @@ AM_CPPFLAGS = $(GF_CPPFLAGS) \ + + AM_CFLAGS = -Wall $(GF_CFLAGS) + +-AM_LDFLAGS = -L$(xlatordir) +- + CLEANFILES = +--- a/xlators/system/posix-acl/src/Makefile.am ++++ b/xlators/system/posix-acl/src/Makefile.am +@@ -10,8 +10,6 @@ AM_CPPFLAGS = $(GF_CPPFLAGS) -I$(top_src + + AM_CFLAGS = -Wall $(GF_CFLAGS) + +-AM_LDFLAGS = -L$(xlatordir) +- + CLEANFILES = + + access-control-compat: diff --git a/recipes-extended/glusterfs/glusterfs.inc b/recipes-extended/glusterfs/glusterfs.inc new file mode 100644 index 0000000..7a3f71a --- /dev/null +++ b/recipes-extended/glusterfs/glusterfs.inc @@ -0,0 +1,132 @@ +# +# Copyright (C) 2013 Wind River Systems, Inc. +# + +SUMMARY = "Glusterfs distributed filesystem" +DESCRIPTION = "\ + GlusterFS is an open source, distributed file system capable of scaling \ + to several petabytes (actually, 72 brontobytes!) and handling thousands \ + of clients. GlusterFS clusters together storage building blocks over \ + Infiniband RDMA or TCP/IP interconnect, aggregating disk and memory \ + resources and managing data in a single global namespace." +HOMEPAGE = "http://www.gluster.org/" +SECTION = "console/network" + +SRC_URI += "file://glusterd-ovp \ + file://xlator-host-contamination-3.4.patch \ + file://glusterfs-disable-default-startup-scripts.patch \ + file://0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch \ + " + +LICENSE = "(LGPLv3+ | GPLv2) & GPLv3+ & LGPLv3+ & GPLv2+ & LGPLv2+ & LGPLv2.1+ & Apache-2.0" +LIC_FILES_CHKSUM = "file://COPYING-GPLV2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ + file://COPYING-LGPLV3;md5=e6a600fd5e1d9cbde2d983680233ad02 \ + file://contrib/fuse-util/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" + +inherit autotools update-rc.d pkgconfig + +DEPENDS += "bison-native flex-native fuse libaio libxml2 ncurses \ + openssl python readline zlib" + +EXTRA_OECONF = "ac_cv_file__etc_debian_version=no \ + ac_cv_file__etc_SuSE_release=no \ + ac_cv_file__etc_redhat_release=no \ + --with-mountutildir=${sbindir} \ + --disable-fusermount \ + PYTHON=${bindir}/python" + +PACKAGECONFIG ??= "georeplication" +PACKAGECONFIG[bd-xlator] = "--enable-bd-xlator,--disable-bd-xlator,lvm2," +PACKAGECONFIG[debug] = "--enable-debug,--disable-debug,," +PACKAGECONFIG[georeplication] = "--enable-georeplication,--disable-georeplication,,rsync" +PACKAGECONFIG[libibverbs] = "--enable-ibverbs,--disable-ibverbs,libibverbs librdmacm," +PACKAGECONFIG[ocf] = "--with-ocf,--without-ocf,," +PACKAGECONFIG[systemtap] = "--enable-systemtap,--disable-systemtap,systemtap," +PACKAGECONFIG[valgrind] = "--with-valgrind,--without-valgrind,valgrind," + +do_install_append() { + install -d ${D}${sysconfdir}/init.d + install -m 0755 ${WORKDIR}/glusterd-ovp \ + ${D}${sysconfdir}/init.d/glusterd + + # Mount looks for mount.* plug-ins in /sbin; fix it with a symlink. + mkdir -p ${D}${base_sbindir} + (cd ${D}${base_sbindir}; ln -s ..${sbindir}/mount.glusterfs .) + + # These are plug-ins, so they don't need libtool configs. + find ${D}${libdir}/glusterfs/${PV} -name '*.la' -exec rm -f '{}' ';' + + # The RPM spec file creates these directories. + install -d ${D}${sysconfdir}/default/volatiles + cat > ${D}${sysconfdir}/default/volatiles/99_glusterfs << EOF +d root root 0755 ${localstatedir}/log/glusterfs none +d root root 0755 ${localstatedir}/run/gluster none +EOF +} + +INITSCRIPT_PACKAGES = "glusterfs-server" +INITSCRIPT_NAME = "glusterd" +INITSCRIPT_PARAMS = "start 20 5 3 2 . stop 80 0 1 6 ." + +# Allow plug-in symlinks. +INSANE_SKIP_${PN} += "dev-so" +INSANE_SKIP_${PN}-rdma += "dev-so" +INSANE_SKIP_${PN}-fuse += "dev-so" +INSANE_SKIP_${PN}-server += "dev-so" + +PACKAGES += "${PN}-rdma ${PN}-geo-replication ${PN}-fuse ${PN}-server \ + ${PN}-api ${PN}-ocf" + +FILES_${PN}-dbg += "${libdir}/glusterfs/${PV}/*/.debug \ + ${libdir}/glusterfs/${PV}/*/*/.debug \ + ${libdir}/glusterfs/${PV}/*/*/*/.debug \ + ${libexecdir}/glusterfs/.debug" + +FILES_${PN} = "${libdir}/glusterfs/${PV}/auth \ + ${libdir}/glusterfs/${PV}/rpc-transport/socket* \ + ${libdir}/glusterfs/${PV}/xlator/cluster \ + ${libdir}/glusterfs/${PV}/xlator/debug \ + ${libdir}/glusterfs/${PV}/xlator/encryption \ + ${libdir}/glusterfs/${PV}/xlator/features \ + ${libdir}/glusterfs/${PV}/xlator/performance \ + ${libdir}/glusterfs/${PV}/xlator/protocol/client* \ + ${libdir}/glusterfs/${PV}/xlator/system \ + ${libdir}/glusterfs/${PV}/xlator/testing \ + ${libdir}/libglusterfs.so.* \ + ${libdir}/libgfrpc.so.* \ + ${libdir}/libgfxdr.so.* \ + ${localstatedir} \ + ${sysconfdir}/default/volatiles \ + ${sbindir}/glusterfs \ + ${sbindir}/glusterfsd" + +FILES_${PN}-rdma = "${libdir}/glusterfs/${PV}/rpc-transport/rdma*" + +FILES_${PN}-geo-replication = "${libexecdir}/glusterfs/gsyncd \ + ${libexecdir}/glusterfs/python/syncdaemon" + +FILES_${PN}-fuse = "${bindir}/fusermount-glusterfs \ + ${libdir}/glusterfs/${PV}/xlator/mount \ + ${sbindir}/mount.glusterfs \ + ${base_sbindir}/mount.glusterfs" + +FILES_${PN}-server = "${libdir}/glusterfs/${PV}/xlator/mgmt \ + ${libdir}/glusterfs/${PV}/xlator/nfs \ + ${libdir}/glusterfs/${PV}/xlator/protocol/server* \ + ${libdir}/glusterfs/${PV}/xlator/storage \ + ${sbindir}/gluster \ + ${sbindir}/glusterd \ + ${sysconfdir}/glusterfs/glusterd.vol \ + ${sysconfdir}/glusterfs/glusterfs-logrotate \ + ${sysconfdir}/init.d/glusterd" + +# Note: Debian package renaming produces libgfapi[0-9]+-*.*.rpm. +FILES_${PN}-api = "${libdir}/libgfapi.so.*" + +FILES_${PN}-ocf = "${prefix}/lib/ocf" + +pkg_postinst_${PN}() { + if [ -z "$D" ] && [ -e /etc/init.d/populate-volatile.sh ]; then + /etc/init.d/populate-volatile.sh update + fi +} diff --git a/recipes-extended/glusterfs/glusterfs_3.4.2.bb b/recipes-extended/glusterfs/glusterfs_3.4.2.bb new file mode 100644 index 0000000..b6ae856 --- /dev/null +++ b/recipes-extended/glusterfs/glusterfs_3.4.2.bb @@ -0,0 +1,12 @@ +# +# Copyright (C) 2013 Wind River Systems, Inc. +# + +PR = "r0" + +SRC_URI = "http://download.gluster.org/pub/gluster/glusterfs/3.4/${PV}/${BPN}-${PV}.tar.gz" + +SRC_URI[md5sum] = "7c05304a9aca3c85ff27458461783623" +SRC_URI[sha256sum] = "4fcd42b13b60a67587de98e60ff679803433bbb0c11aa2b40c4135e2358cedef" + +require glusterfs.inc -- cgit v1.2.3-54-g00ecf