From 17737cc4ecd3aea2c978bf83e283bcb08d097487 Mon Sep 17 00:00:00 2001 From: "Signed-off-by: Martin Jansa" Date: Mon, 2 Aug 2021 09:45:55 -0700 Subject: meta-clang: Convert to new override syntax Signed-off-by: Martin Jansa Signed-off-by: Khem Raj --- .../openembedded-layer/recipes-devtools/bcc/bcc_0.20.0.bb | 14 +++++++------- .../recipes-devtools/bpftrace/bpftrace_0.11.4.bb | 4 ++-- .../kernel-selftest/kernel-selftest.bbappend | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) (limited to 'dynamic-layers/openembedded-layer') diff --git a/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.20.0.bb b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.20.0.bb index 325a6ee..43e828b 100644 --- a/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.20.0.bb +++ b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.20.0.bb @@ -13,10 +13,10 @@ DEPENDS += "bison-native \ " LUAJIT ?= "luajit" -LUAJIT_powerpc64le = "" -LUAJIT_powerpc64 = "" +LUAJIT:powerpc64le = "" +LUAJIT:powerpc64 = "" -RDEPENDS_${PN} += "bash python3 python3-core python3-setuptools xz" +RDEPENDS:${PN} += "bash python3 python3-core python3-setuptools xz" SRC_URI = "gitsm://github.com/iovisor/bcc \ file://0001-python-CMakeLists.txt-Remove-check-for-host-etc-debi.patch \ @@ -32,7 +32,7 @@ PV .= "+git${SRCPV}" S = "${WORKDIR}/git" PACKAGECONFIG ??= "examples" -PACKAGECONFIG_remove_libc-musl = "examples" +PACKAGECONFIG:remove:libc-musl = "examples" PACKAGECONFIG[manpages] = "-DENABLE_MAN=ON,-DENABLE_MAN=OFF," PACKAGECONFIG[examples] = "-DENABLE_EXAMPLES=ON,-DENABLE_EXAMPLES=OFF," @@ -45,12 +45,12 @@ EXTRA_OECMAKE = " \ -DPYTHON_FLAGS=--install-lib=${PYTHON_SITEPACKAGES_DIR} \ " -do_install_append() { +do_install:append() { sed -e 's@#!/usr/bin/python@#!/usr/bin/env python3@g' \ -i $(find ${D}${datadir}/${PN} -type f) } -FILES_${PN} += "${PYTHON_SITEPACKAGES_DIR}" -FILES_${PN}-doc += "${datadir}/${PN}/man" +FILES:${PN} += "${PYTHON_SITEPACKAGES_DIR}" +FILES:${PN}-doc += "${datadir}/${PN}/man" COMPATIBLE_HOST = "(x86_64.*|aarch64.*|powerpc64.*)-linux" diff --git a/dynamic-layers/openembedded-layer/recipes-devtools/bpftrace/bpftrace_0.11.4.bb b/dynamic-layers/openembedded-layer/recipes-devtools/bpftrace/bpftrace_0.11.4.bb index d6ab0ce..9f67d94 100644 --- a/dynamic-layers/openembedded-layer/recipes-devtools/bpftrace/bpftrace_0.11.4.bb +++ b/dynamic-layers/openembedded-layer/recipes-devtools/bpftrace/bpftrace_0.11.4.bb @@ -11,7 +11,7 @@ DEPENDS += "bison-native \ " PV .= "+git${SRCREV}" -RDEPENDS_${PN} += "bash python3 xz" +RDEPENDS:${PN} += "bash python3 xz" SRC_URI = "git://github.com/iovisor/bpftrace;branch=master \ file://0001-bpforc.h-Include-optional-header.patch \ @@ -29,4 +29,4 @@ EXTRA_OECMAKE = " \ " COMPATIBLE_HOST = "(x86_64.*|aarch64.*|powerpc64.*)-linux" -COMPATIBLE_HOST_libc-musl = "null" +COMPATIBLE_HOST:libc-musl = "null" diff --git a/dynamic-layers/openembedded-layer/recipes-kernel/kernel-selftest/kernel-selftest.bbappend b/dynamic-layers/openembedded-layer/recipes-kernel/kernel-selftest/kernel-selftest.bbappend index a1d4585..580d98b 100644 --- a/dynamic-layers/openembedded-layer/recipes-kernel/kernel-selftest/kernel-selftest.bbappend +++ b/dynamic-layers/openembedded-layer/recipes-kernel/kernel-selftest/kernel-selftest.bbappend @@ -1,4 +1,4 @@ -DEPENDS_append = " clang-native" -DEPENDS_remove = "llvm-native" +DEPENDS:append = " clang-native" +DEPENDS:remove = "llvm-native" -EXCLUDE_FROM_WORLD_forcevariable = "" +EXCLUDE_FROM_WORLD:forcevariable = "" -- cgit v1.2.3-54-g00ecf