From: Mark Hatle <mark.hatle@windriver.com>
To: <openembedded-devel@lists.openembedded.org>
Subject: [PATCH 13/31] corosync: Requires net-snmp from meta-networking
Date: Wed, 6 Sep 2017 14:23:11 -0500 [thread overview]
Message-ID: <1504725809-12825-14-git-send-email-mark.hatle@windriver.com> (raw)
In-Reply-To: <1504725809-12825-1-git-send-email-mark.hatle@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
.../recipes-extended/corosync/corosync_2.4.2.bb | 78 ++++++++++++++++++++++
.../recipes-extended/corosync/corosync_2.4.2.bb | 78 ----------------------
2 files changed, 78 insertions(+), 78 deletions(-)
create mode 100644 meta-networking/recipes-extended/corosync/corosync_2.4.2.bb
delete mode 100644 meta-oe/recipes-extended/corosync/corosync_2.4.2.bb
diff --git a/meta-networking/recipes-extended/corosync/corosync_2.4.2.bb b/meta-networking/recipes-extended/corosync/corosync_2.4.2.bb
new file mode 100644
index 0000000..7d5a87e
--- /dev/null
+++ b/meta-networking/recipes-extended/corosync/corosync_2.4.2.bb
@@ -0,0 +1,78 @@
+SUMMARY = "The Corosync Cluster Engine and Application Programming Interfaces"
+DESCRIPTION = "This package contains the Corosync Cluster Engine Executive, several default \
+APIs and libraries, default configuration files, and an init script."
+HOMEPAGE = "http://corosync.github.io/corosync/"
+
+SECTION = "base"
+
+inherit autotools pkgconfig systemd useradd
+
+SRC_URI = "http://build.clusterlabs.org/corosync/releases/${BP}.tar.gz"
+SRC_URI[md5sum] = "547fa78704da53aa35912be58d31035f"
+SRC_URI[sha256sum] = "f26e3011309fe4bcce94b1dc20ea8c462f19483a73f3ca62f13b925d011a4ba9"
+
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=a85eb4ce24033adb6088dd1d6ffc5e5d"
+
+DEPENDS = "groff-native nss libqb"
+
+SYSTEMD_SERVICE_${PN} = "corosync.service corosync-notifyd.service \
+ ${@bb.utils.contains('PACKAGECONFIG', 'qdevice', 'corosync-qdevice.service', '', d)} \
+ ${@bb.utils.contains('PACKAGECONFIG', 'qnetd', 'corosync-qnetd.service', '', d)} \
+"
+SYSTEMD_AUTO_ENABLE = "enable"
+
+INITSCRIPT_NAME = "corosync-daemon"
+
+PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
+ dbus qdevice qnetd snmp \
+"
+
+PACKAGECONFIG[dbus] = "--enable-dbus,--disable-dbus,dbus"
+PACKAGECONFIG[qdevice] = "--enable-qdevices,--disable-qdevices"
+PACKAGECONFIG[qnetd] = "--enable-qnetd,--disable-qnetd"
+PACKAGECONFIG[rdma] = "--enable-rdma,--disable-rdma"
+PACKAGECONFIG[snmp] = "--enable-snmp,--disable-snmp,net-snmp"
+PACKAGECONFIG[systemd] = "--enable-systemd --with-systemddir=${systemd_system_unitdir},--disable-systemd --without-systemddir,systemd"
+
+EXTRA_OECONF = "ac_cv_path_BASHPATH=${base_bindir}/bash"
+EXTRA_OEMAKE = "tmpfilesdir_DATA="
+
+do_configure_prepend() {
+ ( cd ${S}
+ ${S}/autogen.sh )
+}
+
+do_install_append() {
+ install -d ${D}${sysconfdir}/sysconfig/
+ install -m 0644 ${S}/init/corosync.sysconfig.example ${D}${sysconfdir}/sysconfig/corosync
+ install -m 0644 ${S}/tools/corosync-notifyd.sysconfig.example ${D}${sysconfdir}/sysconfig/corosync-notifyd
+
+ rm -rf "${D}${localstatedir}/run"
+
+ install -d ${D}${sysconfdir}/default/volatiles
+ echo "d root root 0755 ${localstatedir}/log/cluster none" > ${D}${sysconfdir}/default/volatiles/05_corosync
+
+ if ${@bb.utils.contains('PACKAGECONFIG', 'qnetd', 'true', 'false', d)}; then
+ chown -R coroqnetd:coroqnetd ${D}${sysconfdir}/${BPN}/qnetd
+ echo "d coroqnetd coroqnetd 0770 /var/run/corosync-qnetd none" >> ${D}${sysconfdir}/default/volatiles/05_corosync
+ fi
+
+ if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
+ install -d ${D}${sysconfdir}/tmpfiles.d
+ echo "d ${localstatedir}/log/cluster - - - -" > ${D}${sysconfdir}/tmpfiles.d/corosync.conf
+
+ if ${@bb.utils.contains('PACKAGECONFIG', 'qnetd', 'true', 'false', d)}; then
+ install -m 0644 ${S}/conf/tmpfiles.d/corosync-qnetd.conf ${D}${sysconfdir}/tmpfiles.d
+ fi
+ fi
+}
+
+RDEPENDS_${PN} += "bash"
+
+FILES_${PN}-dbg += "${libexecdir}/lcrso/.debug"
+FILES_${PN}-doc += "${datadir}/snmp/mibs/COROSYNC-MIB.txt"
+
+USERADD_PACKAGES = "${PN}"
+GROUPADD_PARAM_${PN} = "--system coroqnetd"
+USERADD_PARAM_${PN} = "--system -d / -M -s /bin/nologin -c 'User for corosync-qnetd' -g coroqnetd coroqnetd"
diff --git a/meta-oe/recipes-extended/corosync/corosync_2.4.2.bb b/meta-oe/recipes-extended/corosync/corosync_2.4.2.bb
deleted file mode 100644
index 7d5a87e..0000000
--- a/meta-oe/recipes-extended/corosync/corosync_2.4.2.bb
+++ /dev/null
@@ -1,78 +0,0 @@
-SUMMARY = "The Corosync Cluster Engine and Application Programming Interfaces"
-DESCRIPTION = "This package contains the Corosync Cluster Engine Executive, several default \
-APIs and libraries, default configuration files, and an init script."
-HOMEPAGE = "http://corosync.github.io/corosync/"
-
-SECTION = "base"
-
-inherit autotools pkgconfig systemd useradd
-
-SRC_URI = "http://build.clusterlabs.org/corosync/releases/${BP}.tar.gz"
-SRC_URI[md5sum] = "547fa78704da53aa35912be58d31035f"
-SRC_URI[sha256sum] = "f26e3011309fe4bcce94b1dc20ea8c462f19483a73f3ca62f13b925d011a4ba9"
-
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=a85eb4ce24033adb6088dd1d6ffc5e5d"
-
-DEPENDS = "groff-native nss libqb"
-
-SYSTEMD_SERVICE_${PN} = "corosync.service corosync-notifyd.service \
- ${@bb.utils.contains('PACKAGECONFIG', 'qdevice', 'corosync-qdevice.service', '', d)} \
- ${@bb.utils.contains('PACKAGECONFIG', 'qnetd', 'corosync-qnetd.service', '', d)} \
-"
-SYSTEMD_AUTO_ENABLE = "enable"
-
-INITSCRIPT_NAME = "corosync-daemon"
-
-PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
- dbus qdevice qnetd snmp \
-"
-
-PACKAGECONFIG[dbus] = "--enable-dbus,--disable-dbus,dbus"
-PACKAGECONFIG[qdevice] = "--enable-qdevices,--disable-qdevices"
-PACKAGECONFIG[qnetd] = "--enable-qnetd,--disable-qnetd"
-PACKAGECONFIG[rdma] = "--enable-rdma,--disable-rdma"
-PACKAGECONFIG[snmp] = "--enable-snmp,--disable-snmp,net-snmp"
-PACKAGECONFIG[systemd] = "--enable-systemd --with-systemddir=${systemd_system_unitdir},--disable-systemd --without-systemddir,systemd"
-
-EXTRA_OECONF = "ac_cv_path_BASHPATH=${base_bindir}/bash"
-EXTRA_OEMAKE = "tmpfilesdir_DATA="
-
-do_configure_prepend() {
- ( cd ${S}
- ${S}/autogen.sh )
-}
-
-do_install_append() {
- install -d ${D}${sysconfdir}/sysconfig/
- install -m 0644 ${S}/init/corosync.sysconfig.example ${D}${sysconfdir}/sysconfig/corosync
- install -m 0644 ${S}/tools/corosync-notifyd.sysconfig.example ${D}${sysconfdir}/sysconfig/corosync-notifyd
-
- rm -rf "${D}${localstatedir}/run"
-
- install -d ${D}${sysconfdir}/default/volatiles
- echo "d root root 0755 ${localstatedir}/log/cluster none" > ${D}${sysconfdir}/default/volatiles/05_corosync
-
- if ${@bb.utils.contains('PACKAGECONFIG', 'qnetd', 'true', 'false', d)}; then
- chown -R coroqnetd:coroqnetd ${D}${sysconfdir}/${BPN}/qnetd
- echo "d coroqnetd coroqnetd 0770 /var/run/corosync-qnetd none" >> ${D}${sysconfdir}/default/volatiles/05_corosync
- fi
-
- if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
- install -d ${D}${sysconfdir}/tmpfiles.d
- echo "d ${localstatedir}/log/cluster - - - -" > ${D}${sysconfdir}/tmpfiles.d/corosync.conf
-
- if ${@bb.utils.contains('PACKAGECONFIG', 'qnetd', 'true', 'false', d)}; then
- install -m 0644 ${S}/conf/tmpfiles.d/corosync-qnetd.conf ${D}${sysconfdir}/tmpfiles.d
- fi
- fi
-}
-
-RDEPENDS_${PN} += "bash"
-
-FILES_${PN}-dbg += "${libexecdir}/lcrso/.debug"
-FILES_${PN}-doc += "${datadir}/snmp/mibs/COROSYNC-MIB.txt"
-
-USERADD_PACKAGES = "${PN}"
-GROUPADD_PARAM_${PN} = "--system coroqnetd"
-USERADD_PARAM_${PN} = "--system -d / -M -s /bin/nologin -c 'User for corosync-qnetd' -g coroqnetd coroqnetd"
--
1.8.3.1
next prev parent reply other threads:[~2017-09-06 19:29 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-06 19:22 [PATCH 00/31] Numerous patches to resolve yocto-compat-layer Mark Hatle
2017-09-06 19:22 ` [PATCH 01/31] iproute2: Move tipc enablement to oe-core Mark Hatle
2017-09-06 19:23 ` [PATCH 02/31] libml: Move " Mark Hatle
2017-09-06 19:23 ` [PATCH 03/31] openipmi: Move to meta-networking requires net-snmp Mark Hatle
2017-09-06 19:23 ` [PATCH 04/31] glmark2: Set required distro features to opengl Mark Hatle
2017-09-06 19:23 ` [PATCH 05/31] openlmi-tools: Only build if the necessary python pieces are available Mark Hatle
2017-09-06 19:23 ` [PATCH 06/31] xorg-drivers: Add opengl distro flag requirement to ati and nouveau Mark Hatle
2017-09-06 19:23 ` [PATCH 07/31] boinc-client: Add distro flag, requires opengl Mark Hatle
2017-09-06 19:23 ` [PATCH 08/31] networkmanager-openvpn: requires openvpn from meta-networking Mark Hatle
2017-09-06 19:23 ` [PATCH 09/31] telepathy-python: Move to meta-python, requires python-dbus Mark Hatle
2017-09-06 19:23 ` [PATCH 10/31] networkmanager: Move to meta-networking, requires dnsmasq Mark Hatle
2017-09-06 19:23 ` [PATCH 11/31] python-ldap: Move to meta-networking, requires cyrus-sasl Mark Hatle
2017-09-06 19:23 ` [PATCH 12/31] python-networkmanager: Move to networking, requires networkmanager Mark Hatle
2017-09-06 19:23 ` Mark Hatle [this message]
2017-09-06 20:12 ` [PATCH 13/31] corosync: Requires net-snmp from meta-networking Mark Hatle
2017-09-06 19:23 ` [PATCH 14/31] pywbem: Requires python-m2crypto-native (and others) from meta-python Mark Hatle
2017-09-06 19:23 ` [PATCH 15/31] dlm: requires corosync, from meta-networking Mark Hatle
2017-09-06 19:23 ` [PATCH 16/31] open-vm-tools: only build if meta-networking and meta-filesystems is available Mark Hatle
2017-09-06 19:23 ` [PATCH 17/31] miniupnpd: Move to meta-networking, requires libnetfilter-conntrack Mark Hatle
2017-09-06 19:23 ` [PATCH 18/31] enable_gnome.conf: Move the AVAHI_GTK setting Mark Hatle
2017-09-06 19:23 ` [PATCH 19/31] glade3: Move PACKAGECONFIG setting to enable_gnome.conf Mark Hatle
2017-09-07 9:29 ` Andreas Müller
2017-09-07 13:45 ` Mark Hatle
2017-09-07 14:51 ` Andreas Müller
2017-09-07 15:08 ` Philip Balister
2017-09-06 19:23 ` [PATCH 20/31] libart-lgpg: Obsolete, replaced by version in oe-core Mark Hatle
2017-09-06 19:23 ` [PATCH 21/31] pinpoint: Add dependency on opengl for cogl Mark Hatle
2017-09-06 19:23 ` [PATCH 22/31] vim: Remove xfce vim bbappend Mark Hatle
2017-09-07 8:57 ` Andreas Müller
2017-09-07 13:52 ` Mark Hatle
2017-09-06 19:23 ` [PATCH 23/31] layer.conf: Add meta-networking for the networkmanager Mark Hatle
2017-09-06 19:23 ` [PATCH 24/31] meta-xfce: depend on meta-multimedia Mark Hatle
2017-09-06 19:23 ` [PATCH 25/31] mpv: Requires ffmpeg which has a LICENSE_FLAGS = commercial set Mark Hatle
2017-09-06 19:23 ` [PATCH 26/31] recipes-multimedia: Add LICENSE_FLAGS Mark Hatle
2017-09-06 19:23 ` [PATCH 27/31] " Mark Hatle
2017-09-06 19:23 ` [PATCH 28/31] libmtp: remove 'mtp-tools' from PACKAGES Mark Hatle
2017-09-06 19:23 ` [PATCH 29/31] xfce4-mixer: Remove, gstreamer-0.10 is obsolete Mark Hatle
2017-09-06 19:58 ` Andreas Müller
2017-09-06 20:02 ` Mark Hatle
2017-09-06 20:13 ` Andreas Müller
2017-09-06 20:21 ` Mark Hatle
2017-09-06 20:35 ` Andreas Müller
2017-09-06 20:44 ` Mark Hatle
2017-09-06 20:53 ` Andreas Müller
2017-09-06 21:00 ` Mark Hatle
2017-09-06 23:40 ` Mark Hatle
2017-09-06 19:23 ` [PATCH 30/31] florence: update 0.6.3 Mark Hatle
2017-09-06 19:59 ` Andreas Müller
2017-09-06 20:15 ` Mark Hatle
2017-09-06 19:23 ` [PATCH 31/31] gstreamer-0.10: Remove as all users are gone and it is obsolete Mark Hatle
2017-09-06 20:01 ` Andreas Müller
2017-09-06 23:41 ` [PATCH 00/31] Numerous patches to resolve yocto-compat-layer Mark Hatle
2017-09-06 23:49 ` Khem Raj
2017-09-06 23:59 ` Mark Hatle
2017-09-07 0:12 ` Khem Raj
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1504725809-12825-14-git-send-email-mark.hatle@windriver.com \
--to=mark.hatle@windriver.com \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox