diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2017-04-27 11:04:51 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-08-31 10:18:33 +0200 |
| commit | ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3 (patch) | |
| tree | e16d2a838f4561d5538928a58f805e5f1373225a /meta-oe/recipes-extended | |
| parent | 6775acb048dabd624c5c8197b683aba45ed91569 (diff) | |
| download | meta-openembedded-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-extended')
7 files changed, 0 insertions, 231 deletions
diff --git a/meta-oe/recipes-extended/openlmi/openlmi-networking/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch b/meta-oe/recipes-extended/openlmi/openlmi-networking/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch deleted file mode 100644 index c238200945..0000000000 --- a/meta-oe/recipes-extended/openlmi/openlmi-networking/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | From 336bb5a031077461ec6b2e5438738bf100f0dd2f Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Lei Maohui <leimaohui@cn.fujitsu.com> | ||
| 3 | Date: Mon, 3 Aug 2015 02:37:46 +0900 | ||
| 4 | Subject: [PATCH] fix lib64 can not be shiped in 64bit target | ||
| 5 | |||
| 6 | Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> | ||
| 7 | --- | ||
| 8 | CMakeLists.txt | 7 ------- | ||
| 9 | 1 file changed, 7 deletions(-) | ||
| 10 | |||
| 11 | diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
| 12 | index 1ba3cd3..2411745 100644 | ||
| 13 | --- a/CMakeLists.txt | ||
| 14 | +++ b/CMakeLists.txt | ||
| 15 | @@ -35,13 +35,6 @@ if (DEBUG) | ||
| 16 | add_definitions("-DDEBUG_ENABLED") | ||
| 17 | endif (DEBUG) | ||
| 18 | |||
| 19 | -# Set LIB_SUFFIX to 64 on 64bit architectures | ||
| 20 | -if(CMAKE_SIZEOF_VOID_P EQUAL 4) | ||
| 21 | - set(LIB_SUFFIX "") | ||
| 22 | -else(CMAKE_SIZEOF_VOID_P EQUAL 4) | ||
| 23 | - SET(LIB_SUFFIX 64) | ||
| 24 | -endif(CMAKE_SIZEOF_VOID_P EQUAL 4) | ||
| 25 | - | ||
| 26 | # Find OpenLMIMacros when installed in other prefix than /usr (e.g. /usr/local) | ||
| 27 | set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_INSTALL_PREFIX}) | ||
| 28 | include(OpenLMIMacros RESULT_VARIABLE LMIMACROS) | ||
| 29 | -- | ||
| 30 | 1.8.4.2 | ||
| 31 | |||
diff --git a/meta-oe/recipes-extended/openlmi/openlmi-networking_0.3.1.bb b/meta-oe/recipes-extended/openlmi/openlmi-networking_0.3.1.bb deleted file mode 100644 index 081bd3bc00..0000000000 --- a/meta-oe/recipes-extended/openlmi/openlmi-networking_0.3.1.bb +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | SUMMARY = "CIM providers for network management" | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | openlmi-networking is set of CMPI providers for network management using \ | ||
| 4 | Common Information Model (CIM)." | ||
| 5 | HOMEPAGE = "http://www.openlmi.org/" | ||
| 6 | LICENSE = "LGPL-2.1+" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c13b3376cea0ce68d2d2da0a1b3a72c" | ||
| 8 | SECTION = "System/Management" | ||
| 9 | DEPENDS = "openlmi-providers konkretcmpi konkretcmpi-native sblim-cmpi-devel cim-schema-exper networkmanager dbus libcheck glib-2.0" | ||
| 10 | |||
| 11 | SRC_URI = "http://fedorahosted.org/released/${BPN}/${BP}.tar.gz \ | ||
| 12 | file://0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch \ | ||
| 13 | " | ||
| 14 | SRC_URI[md5sum] = "f20de8c76fb6a80001b14c1eb035953e" | ||
| 15 | SRC_URI[sha256sum] = "578eaa5c65fe924b5d7aeb635509dd46443166cd6a88b019bc42646e3518a460" | ||
| 16 | |||
| 17 | inherit cmake | ||
| 18 | |||
| 19 | EXTRA_OECMAKE = "${@base_conditional("libdir", "/usr/lib64", "-DLIB_SUFFIX=64", "", d)} \ | ||
| 20 | ${@base_conditional("libdir", "/usr/lib32", "-DLIB_SUFFIX=32", "", d)} \ | ||
| 21 | " | ||
| 22 | |||
| 23 | |||
| 24 | do_configure_prepend() { | ||
| 25 | export CMAKE_INSTALL_DATDIR="${STAGING_DATADIR}" | ||
| 26 | } | ||
| 27 | |||
| 28 | |||
| 29 | FILES_${PN} =+ "${libdir}/cmpi/libcmpiLMI_Networking.so ${prefix}/libexec*" | ||
| 30 | FILES_${PN}-dbg =+ "${libdir}/cmpi/.debug*" | ||
| 31 | |||
| 32 | PNBLACKLIST[openlmi-networking] ?= "Depends on blacklisted openlmi-providers - the recipe will be removed on 2017-09-01 unless the issue is fixed" | ||
diff --git a/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-error.patch b/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-error.patch deleted file mode 100644 index 4bcd1c4d93..0000000000 --- a/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-error.patch +++ /dev/null | |||
| @@ -1,26 +0,0 @@ | |||
| 1 | From 764171866b84e0198b67538f63022abde3e628ad Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Qian Lei <qianl.fnst@cn.fujitsu.com> | ||
| 3 | Date: Fri, 16 Jan 2015 14:15:25 +0800 | ||
| 4 | Subject: [PATCH] fix error | ||
| 5 | |||
| 6 | Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com> | ||
| 7 | --- | ||
| 8 | cmake/modules/OpenLMIMacros.cmake | 2 +- | ||
| 9 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 10 | |||
| 11 | diff --git a/cmake/modules/OpenLMIMacros.cmake b/cmake/modules/OpenLMIMacros.cmake | ||
| 12 | index d55f983..dbc32ec 100644 | ||
| 13 | --- a/cmake/modules/OpenLMIMacros.cmake | ||
| 14 | +++ b/cmake/modules/OpenLMIMacros.cmake | ||
| 15 | @@ -89,7 +89,7 @@ macro(konkretcmpi_generate MOFS CIM_PROVIDERS CIM_HEADERS CIM_CLASSES) | ||
| 16 | endforeach(CLASS ${CIM_CLASS_NAMES}) | ||
| 17 | |||
| 18 | # Generate headers for CIM classes | ||
| 19 | - set(ENV{KONKRET_SCHEMA_DIR} "/usr/share/mof/cim-current") | ||
| 20 | + set(ENV{KONKRET_SCHEMA_DIR} "$ENV{CMAKE_INSTALL_DATDIR}/mof/cim-current") | ||
| 21 | execute_process(COMMAND ${KONKRETCMPI_KONKRET} | ||
| 22 | ${KONKRET_MOF_FILES} | ||
| 23 | ${GENERATE_PROVIDERS} | ||
| 24 | -- | ||
| 25 | 1.8.3.1 | ||
| 26 | |||
diff --git a/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch b/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch deleted file mode 100644 index 9c8ebe4c00..0000000000 --- a/meta-oe/recipes-extended/openlmi/openlmi-providers/0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | From 7cecfa95f033b33a1c3260c214b2d0e5e81b4fd3 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Lei Maohui <leimaohui@cn.fujitsu.com> | ||
| 3 | Date: Mon, 3 Aug 2015 02:05:56 +0900 | ||
| 4 | Subject: [PATCH] fix lib64 can not be shiped in 64bit target | ||
| 5 | |||
| 6 | Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> | ||
| 7 | --- | ||
| 8 | CMakeLists.txt | 7 ------- | ||
| 9 | 1 file changed, 7 deletions(-) | ||
| 10 | |||
| 11 | diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
| 12 | index 48ae206..3ead9c6 100644 | ||
| 13 | --- a/CMakeLists.txt | ||
| 14 | +++ b/CMakeLists.txt | ||
| 15 | @@ -21,13 +21,6 @@ else(HAS_STACK_PROTECTOR_STRONG) | ||
| 16 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-protector") | ||
| 17 | endif() | ||
| 18 | |||
| 19 | -# Set LIB_SUFFIX to 64 on 64bit architectures | ||
| 20 | -if(CMAKE_SIZEOF_VOID_P EQUAL 4) | ||
| 21 | - set(LIB_SUFFIX "") | ||
| 22 | -else(CMAKE_SIZEOF_VOID_P EQUAL 4) | ||
| 23 | - SET(LIB_SUFFIX 64) | ||
| 24 | -endif(CMAKE_SIZEOF_VOID_P EQUAL 4) | ||
| 25 | - | ||
| 26 | if(NOT SYSCONF_INSTALL_DIR) | ||
| 27 | set(SYSCONF_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/etc) | ||
| 28 | endif(NOT SYSCONF_INSTALL_DIR) | ||
| 29 | -- | ||
| 30 | 1.8.4.2 | ||
| 31 | |||
diff --git a/meta-oe/recipes-extended/openlmi/openlmi-providers_0.6.0.bb b/meta-oe/recipes-extended/openlmi/openlmi-providers_0.6.0.bb deleted file mode 100644 index 2eda65320d..0000000000 --- a/meta-oe/recipes-extended/openlmi/openlmi-providers_0.6.0.bb +++ /dev/null | |||
| @@ -1,56 +0,0 @@ | |||
| 1 | SUMMARY = "Set of basic CIM providers" | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | openlmi-providers is set of (usually) small CMPI providers (agents) for \ | ||
| 4 | basic monitoring and management of host system using Common Information \ | ||
| 5 | Model (CIM)." | ||
| 6 | HOMEPAGE = "http://www.openlmi.org/" | ||
| 7 | LICENSE = "LGPLv2+" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c13b3376cea0ce68d2d2da0a1b3a72c" | ||
| 9 | SECTION = "System/Management" | ||
| 10 | DEPENDS = "konkretcmpi-native konkretcmpi sblim-sfcb sblim-cmpi-devel cim-schema-exper lmsensors libuser swig swig-native dbus udev systemd-systemctl-native pciutils" | ||
| 11 | |||
| 12 | SRC_URI = "http://fedorahosted.org/released/${BPN}/${BP}.tar.gz \ | ||
| 13 | file://0001-fix-error.patch \ | ||
| 14 | file://0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch \ | ||
| 15 | " | ||
| 16 | SRC_URI[md5sum] = "5904f23cf494946237cfbbdbe644a3cd" | ||
| 17 | SRC_URI[sha256sum] = "e2b2fbeaec45a83905d0da3b87da83904d9cd94c1b86312f844587b3fff11f56" | ||
| 18 | |||
| 19 | inherit cmake | ||
| 20 | LDFLAGS_append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -fuse-ld=bfd ', '', d)}" | ||
| 21 | EXTRA_OECMAKE = " \ | ||
| 22 | -DWITH-DEVASSISTANT=OFF \ | ||
| 23 | -DWITH-JOURNALD=OFF \ | ||
| 24 | -DWITH-SERVICE=OFF \ | ||
| 25 | -DWITH-SERVICE-LEGACY=ON \ | ||
| 26 | -DWITH-ACCOUNT=OFF \ | ||
| 27 | -DWITH-PCP=OFF \ | ||
| 28 | -DWITH-REALMD=OFF \ | ||
| 29 | -DWITH-FAN=OFF \ | ||
| 30 | -DWITH-LOCALE=OFF \ | ||
| 31 | -DWITH-INDSENDER=OFF \ | ||
| 32 | -DWITH-JOBMANAGER=OFF \ | ||
| 33 | -DWITH-SSSD=OFF \ | ||
| 34 | -DWITH-SELINUX=OFF \ | ||
| 35 | -DWITH-SOFTWARE-DBUS=ON \ | ||
| 36 | ${@base_conditional("libdir", "/usr/lib64", "-DLIB_SUFFIX=64", "", d)} \ | ||
| 37 | ${@base_conditional("libdir", "/usr/lib32", "-DLIB_SUFFIX=32", "", d)} \ | ||
| 38 | " | ||
| 39 | |||
| 40 | do_configure_prepend() { | ||
| 41 | export CMAKE_INSTALL_DATDIR="${STAGING_DATADIR}" | ||
| 42 | } | ||
| 43 | |||
| 44 | do_install_append() { | ||
| 45 | if [ -d ${D}${prefix}${sysconfidr} ]; then | ||
| 46 | mv ${D}${prefix}${sysconfdir} ${D}${sysconfdir} | ||
| 47 | fi | ||
| 48 | } | ||
| 49 | |||
| 50 | FILES_${PN} =+ "${libdir}/cmpi/libcmpiLMI* ${prefix}/libexec*" | ||
| 51 | FILES_${PN}-dev =+ "${datadir}/cmake*" | ||
| 52 | FILES_${PN}-dbg =+ "${libdir}/cmpi/.debug*" | ||
| 53 | |||
| 54 | RDEPENDS_${PN} = "python" | ||
| 55 | |||
| 56 | PNBLACKLIST[openlmi-providers] ?= "Depends on blacklisted lmsensors - the recipe will be removed on 2017-09-01 unless the issue is fixed" | ||
diff --git a/meta-oe/recipes-extended/openlmi/openlmi-storage_0.8.1.bb b/meta-oe/recipes-extended/openlmi/openlmi-storage_0.8.1.bb deleted file mode 100644 index f99b77ca41..0000000000 --- a/meta-oe/recipes-extended/openlmi/openlmi-storage_0.8.1.bb +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | SUMMARY = "CIM providers for storage management" | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | The openlmi-storage package contains CMPI providers for management of storage \ | ||
| 4 | using Common Information Managemen (CIM) protocol. \ | ||
| 5 | \ | ||
| 6 | The providers can be registered in any CMPI-aware CIMOM, both OpenPegasus and \ | ||
| 7 | SFCB were tested." | ||
| 8 | HOMEPAGE = "http://www.openlmi.org/" | ||
| 9 | LICENSE = "LGPL-2.1+" | ||
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | ||
| 11 | SECTION = "System/Management" | ||
| 12 | DEPENDS = "openlmi-providers pywbem cmpi-bindings" | ||
| 13 | RDEPENDS_${PN} += "bash" | ||
| 14 | |||
| 15 | SRC_URI = "http://fedorahosted.org/released/${BPN}/${BP}.tar.gz" | ||
| 16 | SRC_URI[md5sum] = "898cf0d8c03b8ad6b45d65f335ddee0d" | ||
| 17 | SRC_URI[sha256sum] = "4a1ba9957750f94ea58a89cea28985564f38d7cc9aa00fcae20c51e7b32bd0a8" | ||
| 18 | |||
| 19 | inherit setuptools | ||
| 20 | |||
| 21 | do_install_append() { | ||
| 22 | install -m 755 -d ${D}${datadir}/${BPN} | ||
| 23 | install -m 644 ${S}/mof/* ${D}${datadir}/${BPN}/ | ||
| 24 | |||
| 25 | install -m 755 -d ${D}${sysconfdir}/openlmi/storage | ||
| 26 | install -m 644 storage.conf ${D}${sysconfdir}/openlmi/storage/storage.conf | ||
| 27 | |||
| 28 | install -m 755 -d ${D}${libexecdir}/pegasus | ||
| 29 | install -m 755 pycmpiLMI_Storage-cimprovagt ${D}${libexecdir}/pegasus/ | ||
| 30 | } | ||
| 31 | |||
| 32 | FILES_${PN} =+ "${sysconfdir}/openlmi/storage/storage.conf ${datadir}/${BPN}/*" | ||
| 33 | |||
| 34 | PNBLACKLIST[openlmi-storage] ?= "Depends on blacklisted pywbem - the recipe will be removed on 2017-09-01 unless the issue is fixed" | ||
diff --git a/meta-oe/recipes-extended/subsurface/subsurface_git.bb b/meta-oe/recipes-extended/subsurface/subsurface_git.bb deleted file mode 100644 index 90adaf4876..0000000000 --- a/meta-oe/recipes-extended/subsurface/subsurface_git.bb +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | SUMMARY = "Subsurface is an open source dive log program" | ||
| 2 | LICENSE = "GPLv2" | ||
| 3 | LIC_FILES_CHKSUM = "file://gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 4 | |||
| 5 | DEPENDS = "libdivecomputer gtk+ libxml2 glib-2.0 gconf" | ||
| 6 | |||
| 7 | PNBLACKLIST[subsurface] ?= "Needs to be upgraded for compatibility with new libdivecomputer - the recipe will be removed on 2017-09-01 unless the issue is fixed" | ||
| 8 | |||
| 9 | inherit gtk-icon-cache cmake | ||
| 10 | |||
| 11 | inherit gitpkgv | ||
| 12 | PKGV = "${GITPKGVTAG}" | ||
| 13 | PV = "4.2" | ||
| 14 | |||
| 15 | SRCREV = "f61ee20ba356ecfc4c5b247f548f52d588179c94" | ||
| 16 | SRC_URI = "git://subsurface.hohndel.org/subsurface.git" | ||
| 17 | S = "${WORKDIR}/git" | ||
| 18 | |||
| 19 | #FILES_${PN} += "${datadir}/icons/hicolor/scalable/apps/subsurface.svg" | ||
| 20 | RRECOMMENDS_${PN}_append_libc-glibc = " glibc-gconv-iso8859-15" | ||
| 21 | |||
