aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/openwbem
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2017-04-27 11:04:51 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2017-08-31 10:18:33 +0200
commitec9e5ed06256ad92c818474cdb490dc0d3a0d0a3 (patch)
treee16d2a838f4561d5538928a58f805e5f1373225a /meta-oe/recipes-support/openwbem
parent6775acb048dabd624c5c8197b683aba45ed91569 (diff)
downloadmeta-openembedded-contrib-ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3.tar.gz
recipes: remove blacklisted recipes
* as PNBLACKLIST message says, these recipes are blacklisted for long time and nobody showed any interest to fix them * remove all unused .patch and .inc files as well Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/openwbem')
-rw-r--r--meta-oe/recipes-support/openwbem/openwbem_3.2.3.bb115
1 files changed, 0 insertions, 115 deletions
diff --git a/meta-oe/recipes-support/openwbem/openwbem_3.2.3.bb b/meta-oe/recipes-support/openwbem/openwbem_3.2.3.bb
deleted file mode 100644
index e9142385b4..0000000000
--- a/meta-oe/recipes-support/openwbem/openwbem_3.2.3.bb
+++ /dev/null
@@ -1,115 +0,0 @@
-SUMMARY = "Web Based Enterprise Management (WBEM) Implementation"
-DESCRIPTION = "OpenWBEM is a set of software components that help facilitate \
-deployment of the Common Information Model (CIM) and Web-Based \
-Enterprise Management (WBEM) technologies of the Distributed Management \
-Task Force (DMTF). \
- \
-Web-Based Enterprise Management (WBEM) is a set of management and \
-Internet standard technologies developed to unify the management of \
-distributed computing environments. WBEM provides the ability for the \
-industry to deliver a well-integrated set of standards-based management \
-tools, facilitating the exchange of data across otherwise disparate \
-technologies and platforms. \
- \
-For more information about DMTF and its technologies, visit \
-http://www.dmtf.org/standards. "
-SECTION = "System/Management"
-HOMEPAGE = "http://openwbem.sourceforge.net/"
-
-inherit autotools-brokensep pkgconfig
-
-SOURCE1="novell-openwbem-root-acl.mof"
-SOURCE2="loadmof.sh"
-SOURCE3="rmmof.sh"
-SOURCE4="openwbem-owcimomd.init"
-SOURCE5="openwbem-etc_pam.d_openwbem"
-SOURCE6="openwbem-rpmlintrc"
-
-SRC_URI = " \
- git://github.com/kkaempf/openwbem.git \
- file://${SOURCE1} \
- file://${SOURCE2} \
- file://${SOURCE3} \
- file://${SOURCE4} \
- file://${SOURCE5} \
- file://${SOURCE6} \
- file://checkserverkey \
- file://owcimomd.service \
-"
-SRCREV = "5c688eefc1f8e35a4b1c58529aae5f114c25c2a8"
-S = "${WORKDIR}/git"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM += "file://COPYING;md5=0504a2eb85e01aa92c9efd4125a34660"
-INSANE_SKIP_${PN} = "dev-so"
-DEPENDS += "openssl libpam bash"
-RDEPENDS_${PN} += "bash"
-EXTRA_OECONF = " \
- --prefix=/usr \
- --sysconfdir=/etc \
- --libdir=${libdir} \
- --localstatedir=/var/lib \
- --libexecdir=${libdir}/openwbem/bin \
- --mandir=/usr/share/man \
- --enable-threads-run-as-user \
-"
-do_configure_prepend() {
- autoreconf --force --install
-}
-
-do_install() {
- oe_runmake DESTDIR=${D} install
- install -d ${D}/etc/openwbem/openwbem.conf.d
- install -d ${D}/var/adm/fillup-templates
- install -m 644 etc/sysconfig/daemons/owcimomd ${D}/var/adm/fillup-templates/sysconfig.owcimomd
-
- # fix up hardcoded paths
- sed -i -e 's,/usr/sbin/,${sbindir}/,' ${WORKDIR}/owcimomd.service
- if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
- install -d ${D}/${systemd_unitdir}/system
- install -m 644 ${WORKDIR}/owcimomd.service ${D}/${systemd_unitdir}/system
- install -m 755 ${WORKDIR}/checkserverkey ${D}${sysconfdir}/openwbem/
- fi
-
- install -d ${D}/etc/init.d
- ln -sf ../../etc/init.d/owcimomd ${D}/usr/sbin/rcowcimomd
- install -m 755 ${WORKDIR}/${SOURCE4} ${D}/etc/init.d/owcimomd
- install -d ${D}${sbindir}
- install -d ${D}/usr/bin
- install -d ${D}/etc/pam.d
- install -d ${D}/${libdir}/openwbem/cmpiproviders
- install -m 644 etc/pam.d/openwbem ${D}/etc/pam.d
- install -d ${D}/${libdir}/openwbem/c++providers
- install -d ${D}/var/lib/openwbem
- install -m 755 ${WORKDIR}/${SOURCE2} ${D}/usr/bin/ow-loadmof.sh
- install -m 755 ${WORKDIR}/${SOURCE3} ${D}/usr/bin/ow-rmmof.sh
- install -m 644 ${WORKDIR}/${SOURCE5} ${D}/etc/pam.d/openwbem
-
- MOFPATH=${D}/usr/share/mof/openwbem
- install -d $MOFPATH
- mv ${D}/usr/share/openwbem/* $MOFPATH/
- rmdir ${D}/usr/share/openwbem
- install -m 644 ${WORKDIR}/${SOURCE1} $MOFPATH/
-
- touch ${D}/var/lib/openwbem/{classassociation,instances,instassociation,namespaces,schema}.{dat,ndx,lock}
-}
-
-inherit ${@bb.utils.filter('VIRTUAL-RUNTIME_init_manager', 'systemd', d)}
-SYSTEMD_SERVICE_${PN} = "owcimomd.service"
-SYSTEMD_AUTO_ENABLE = "disable"
-FILES_${PN} += " \
- ${libdir} \
- ${datadir}/mof \
- ${systemd_unitdir} \
-"
-FILES_${PN}-dbg += " \
- ${libdir}/openwbem/c++providers/.debug \
- ${libdir}/openwbem/provifcs/.debug \
- ${libdir}/openwbem/bin/openwbem/.debug \
-"
-FILES_${PN}-dev = " \
- ${includedir} \
- ${datadir}/aclocal/openwbem.m4 \
-"
-
-# http://errors.yoctoproject.org/Errors/Details/68630/
-PNBLACKLIST[openwbem] ?= "BROKEN: fails to build with gcc-6 - the recipe will be removed on 2017-09-01 unless the issue is fixed"