From 0584f638797a816b29b909d4611d5a099df7bbc1 Mon Sep 17 00:00:00 2001 From: Anuj Mittal Date: Sat, 31 Jul 2021 17:47:03 +0800 Subject: Convert to new override syntax Use the convert-overrides.py to convert to new syntax and manually fix some additional changes. Signed-off-by: Anuj Mittal --- .../clang-layer/recipes-core/dnn/onednn_2.2.3.bb | 6 +++--- .../clang-layer/recipes-core/ispc/ispc_1.16.0.bb | 2 +- .../clang/llvm-project-source.bbappend | 8 ++++---- .../intel-compute-runtime_21.04.18912.bb | 16 ++++++++-------- .../igc/intel-graphics-compiler_1.0.6646.bb | 8 ++++---- .../recipes-opencl/opencl-clang/opencl-clang_10.0.0.bb | 8 ++++---- .../recipes-opencl/opencl-clang/opencl-clang_11.0.0.bb | 8 ++++---- .../recipes-opencl/opencl-clang/opencl-clang_12.0.0.bb | 6 +++--- .../recipes-opencl/vc-intrinsics/vc-intrinsics_1.0.bb | 2 +- .../dldt/openvino-model-optimizer_2021.3.bb | 4 ++-- .../recipes-bsp/amt/lms_2109.0.0.0.bb | 10 +++++----- .../recipes-bsp/thermald/thermald_2.4.4.bb | 8 ++++---- .../recipes-core/levelzero/level-zero_1.2.3.bb | 12 ++++++------ .../recipes-oneapi/openvkl/openvkl_0.13.0.bb | 2 +- .../recipes-oneapi/ospray/ospray_2.6.0.bb | 2 +- .../recipes-support/ipmctl/ipmctl_03.00.00.0341.bb | 2 +- .../recipes-support/opencv/open-model-zoo_2021.3.bb | 6 +++--- .../opencv/openvino-inference-engine_2021.3.bb | 18 +++++++++--------- 18 files changed, 64 insertions(+), 64 deletions(-) (limited to 'dynamic-layers') diff --git a/dynamic-layers/clang-layer/recipes-core/dnn/onednn_2.2.3.bb b/dynamic-layers/clang-layer/recipes-core/dnn/onednn_2.2.3.bb index ebc33d20..c24c6440 100644 --- a/dynamic-layers/clang-layer/recipes-core/dnn/onednn_2.2.3.bb +++ b/dynamic-layers/clang-layer/recipes-core/dnn/onednn_2.2.3.bb @@ -25,7 +25,7 @@ UPSTREAM_CHECK_GITTAGREGEX = "^v(?P(\d+(\.\d+)+))$" CVE_PRODUCT = "intel:math_kernel_library" COMPATIBLE_HOST = '(x86_64).*-linux' -COMPATIBLE_HOST_libc-musl = 'null' +COMPATIBLE_HOST:libc-musl = 'null' EXTRA_OECMAKE += " \ -DDNNL_LIBRARY_TYPE=SHARED \ @@ -39,7 +39,7 @@ EXTRA_OECMAKE += " \ PACKAGECONFIG ??= "" PACKAGECONFIG[gpu] = "-DDNNL_GPU_RUNTIME=OCL, , opencl-headers ocl-icd, intel-compute-runtime" -do_install_append () { +do_install:append () { install -d ${D}${bindir}/mkl-dnn/tests/benchdnn/inputs install -m 0755 ${B}/tests/benchdnn/benchdnn ${D}${bindir}/mkl-dnn/tests/benchdnn cp -r ${B}/tests/benchdnn/inputs/* ${D}${bindir}/mkl-dnn/tests/benchdnn/inputs @@ -53,4 +53,4 @@ do_install_ptest () { PACKAGES =+ "${PN}-test" -FILES_${PN}-test = "${bindir}/mkl-dnn/*" +FILES:${PN}-test = "${bindir}/mkl-dnn/*" diff --git a/dynamic-layers/clang-layer/recipes-core/ispc/ispc_1.16.0.bb b/dynamic-layers/clang-layer/recipes-core/ispc/ispc_1.16.0.bb index 5355140b..de7e8472 100644 --- a/dynamic-layers/clang-layer/recipes-core/ispc/ispc_1.16.0.bb +++ b/dynamic-layers/clang-layer/recipes-core/ispc/ispc_1.16.0.bb @@ -21,7 +21,7 @@ SRCREV = "bdd411085d3e398cf7927cb3b94b00af676737ba" COMPATIBLE_HOST = '(x86_64).*-linux' DEPENDS += " clang-native bison-native " -RDEPENDS_${PN} += " clang-libllvm clang" +RDEPENDS:${PN} += " clang-libllvm clang" EXTRA_OECMAKE += " \ -DISPC_INCLUDE_TESTS=OFF \ diff --git a/dynamic-layers/clang-layer/recipes-devtools/clang/llvm-project-source.bbappend b/dynamic-layers/clang-layer/recipes-devtools/clang/llvm-project-source.bbappend index 20bdecfe..a09343b3 100644 --- a/dynamic-layers/clang-layer/recipes-devtools/clang/llvm-project-source.bbappend +++ b/dynamic-layers/clang-layer/recipes-devtools/clang/llvm-project-source.bbappend @@ -1,4 +1,4 @@ -FILESEXTRAPATHS_prepend_intel-x86-common := "${THISDIR}/files:" +FILESEXTRAPATHS:prepend:intel-x86-common := "${THISDIR}/files:" SPIRV10_SRCREV = "576abae62cecd171992017a4a786e3831221ab8d" SPIRV11_SRCREV = "2a8c1e6c9778deaa720a23e08c293006dc5d56fd" @@ -34,8 +34,8 @@ SPIRV_LLVM11_SRC_URI = "git://github.com/KhronosGroup/SPIRV-LLVM-Translator.git; -SRC_URI_append_intel-x86-common = "${@bb.utils.contains('LLVMVERSION', '10.0.1', ' ${SPIRV_LLVM10_SRC_URI} ${SRC_URI_LLVM10_PATCHES} ', '', d)}" -SRC_URI_append_intel-x86-common = "${@bb.utils.contains('LLVMVERSION', '11.1.0', ' ${SPIRV_LLVM11_SRC_URI} ${SRC_URI_LLVM11_PATCHES} ', '', d)}" -SRC_URI_append_intel-x86-common = "${@bb.utils.contains('LLVMVERSION', '12.0.0', ' ${SRC_URI_LLVM12_PATCHES} ', '', d)}" +SRC_URI:append:intel-x86-common = "${@bb.utils.contains('LLVMVERSION', '10.0.1', ' ${SPIRV_LLVM10_SRC_URI} ${SRC_URI_LLVM10_PATCHES} ', '', d)}" +SRC_URI:append:intel-x86-common = "${@bb.utils.contains('LLVMVERSION', '11.1.0', ' ${SPIRV_LLVM11_SRC_URI} ${SRC_URI_LLVM11_PATCHES} ', '', d)}" +SRC_URI:append:intel-x86-common = "${@bb.utils.contains('LLVMVERSION', '12.0.0', ' ${SRC_URI_LLVM12_PATCHES} ', '', d)}" SRCREV_spirv = "${@bb.utils.contains_any('LLVMVERSION', [ '13.0.0', '12.0.0' ], '', '${SPIRV_SRCREV}', d)}" diff --git a/dynamic-layers/clang-layer/recipes-opencl/compute-runtime/intel-compute-runtime_21.04.18912.bb b/dynamic-layers/clang-layer/recipes-opencl/compute-runtime/intel-compute-runtime_21.04.18912.bb index d0078f3a..73a98732 100644 --- a/dynamic-layers/clang-layer/recipes-opencl/compute-runtime/intel-compute-runtime_21.04.18912.bb +++ b/dynamic-layers/clang-layer/recipes-opencl/compute-runtime/intel-compute-runtime_21.04.18912.bb @@ -10,21 +10,21 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=ae27f47fd6755510247c19e547e4c804 \ SRC_URI = "git://github.com/intel/compute-runtime.git;protocol=https \ " -SRC_URI_append_class-target = " file://allow-to-find-cpp-generation-tool.patch" +SRC_URI:append:class-target = " file://allow-to-find-cpp-generation-tool.patch" SRCREV = "5a05d7643c4d8cc14e281b686c78101a7a01e8e1" S = "${WORKDIR}/git" DEPENDS += " intel-graphics-compiler gmmlib" -DEPENDS_append_class-target = " intel-compute-runtime-native libva" +DEPENDS:append:class-target = " intel-compute-runtime-native libva" -RDEPENDS_${PN} += " intel-graphics-compiler gmmlib" +RDEPENDS:${PN} += " intel-graphics-compiler gmmlib" inherit cmake pkgconfig COMPATIBLE_HOST = '(x86_64).*-linux' -COMPATIBLE_HOST_libc-musl = "null" +COMPATIBLE_HOST:libc-musl = "null" EXTRA_OECMAKE = " \ -DIGC_DIR=${STAGING_INCDIR}/igc \ @@ -32,24 +32,24 @@ EXTRA_OECMAKE = " \ -DSKIP_UNIT_TESTS=1 \ -DCCACHE_ALLOWED=FALSE \ " -EXTRA_OECMAKE_append_class-target = " \ +EXTRA_OECMAKE:append:class-target = " \ -Dcloc_cmd_prefix=ocloc \ " PACKAGECONFIG ??= "" PACKAGECONFIG[levelzero] = "-DBUILD_WITH_L0=ON, -DBUILD_WITH_L0=OFF, level-zero" -do_install_append_class-native() { +do_install:append:class-native() { install -d ${D}${bindir} install ${B}/bin/cpp_generate_tool ${D}${bindir}/ } -FILES_${PN} += " \ +FILES:${PN} += " \ ${libdir}/intel-opencl/libigdrcl.so \ ${libdir}/libocloc.so \ " -FILES_${PN}-dev = "${includedir}" +FILES:${PN}-dev = "${includedir}" BBCLASSEXTEND = "native nativesdk" diff --git a/dynamic-layers/clang-layer/recipes-opencl/igc/intel-graphics-compiler_1.0.6646.bb b/dynamic-layers/clang-layer/recipes-opencl/igc/intel-graphics-compiler_1.0.6646.bb index 582db553..d546dc22 100644 --- a/dynamic-layers/clang-layer/recipes-opencl/igc/intel-graphics-compiler_1.0.6646.bb +++ b/dynamic-layers/clang-layer/recipes-opencl/igc/intel-graphics-compiler_1.0.6646.bb @@ -27,12 +27,12 @@ S = "${WORKDIR}/git" inherit cmake COMPATIBLE_HOST = '(x86_64).*-linux' -COMPATIBLE_HOST_libc-musl = "null" +COMPATIBLE_HOST:libc-musl = "null" DEPENDS += " flex-native bison-native clang opencl-clang vc-intrinsics" -DEPENDS_append_class-target = " clang-cross-x86_64" +DEPENDS:append:class-target = " clang-cross-x86_64" -RDEPENDS_${PN} += "opencl-clang" +RDEPENDS:${PN} += "opencl-clang" EXTRA_OECMAKE = "-DIGC_OPTION__LLVM_PREFERRED_VERSION=${LLVMVERSION} -DPYTHON_EXECUTABLE=${HOSTTOOLS_DIR}/python3 -DIGC_BUILD__VC_ENABLED=OFF -DIGC_BUILD__USE_KHRONOS_SPIRV_TRANSLATOR=ON" @@ -40,6 +40,6 @@ BBCLASSEXTEND = "native nativesdk" UPSTREAM_CHECK_GITTAGREGEX = "^igc-(?P(?!19\..*)\d+(\.\d+)+)$" -FILES_${PN} += " \ +FILES:${PN} += " \ ${libdir}/igc/NOTICES.txt \ " diff --git a/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_10.0.0.bb b/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_10.0.0.bb index 4928eb22..c870b90b 100644 --- a/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_10.0.0.bb +++ b/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_10.0.0.bb @@ -9,7 +9,7 @@ SRC_URI = "git://github.com/intel/opencl-clang.git;branch=ocl-open-100;protocol= file://0001-don-t-redefine-LLVM_TABLEGEN_EXE.patch \ file://0001-Building-in-tree-with-LLVM-10.0-with-the-LLVM_LINK_L.patch \ " -SRC_URI_append_class-native = " file://0002-make-sure-only-static-libraries-linked-for-native-bu.patch" +SRC_URI:append:class-native = " file://0002-make-sure-only-static-libraries-linked-for-native-bu.patch" SRCREV = "c8cd72e32b6abc18ce6da71c357ea45ba78b52f0" @@ -17,17 +17,17 @@ S = "${WORKDIR}/git" inherit cmake DEPENDS += "clang" -DEPENDS_append_class-target = " opencl-clang-native" +DEPENDS:append:class-target = " opencl-clang-native" COMPATIBLE_HOST = '(x86_64).*-linux' -COMPATIBLE_HOST_libc-musl = "null" +COMPATIBLE_HOST:libc-musl = "null" EXTRA_OECMAKE += "\ -DLLVM_TABLEGEN_EXE=${STAGING_BINDIR_NATIVE}/llvm-tblgen \ -DCMAKE_SKIP_RPATH=TRUE \ " -do_install_append_class-native() { +do_install:append:class-native() { install -d ${D}${bindir} install -m 0755 ${B}/linux_linker/linux_resource_linker ${D}${bindir}/ } diff --git a/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_11.0.0.bb b/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_11.0.0.bb index 0c5d0508..e0b12d1f 100644 --- a/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_11.0.0.bb +++ b/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_11.0.0.bb @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=e8a15bf1416762a09ece07e44c79118c" SRC_URI = "git://github.com/intel/opencl-clang.git;branch=ocl-open-110;protocol=https \ file://0001-don-t-redefine-LLVM_TABLEGEN_EXE.patch \ " -SRC_URI_append_class-native = " file://0002-make-sure-only-static-libraries-linked-for-native-bu.patch" +SRC_URI:append:class-native = " file://0002-make-sure-only-static-libraries-linked-for-native-bu.patch" SRCREV = "c67648d41df00ea8ee9d701d17299b86f86f0321" @@ -16,10 +16,10 @@ S = "${WORKDIR}/git" inherit cmake DEPENDS += "clang" -DEPENDS_append_class-target = " opencl-clang-native" +DEPENDS:append:class-target = " opencl-clang-native" COMPATIBLE_HOST = '(x86_64).*-linux' -COMPATIBLE_HOST_libc-musl = "null" +COMPATIBLE_HOST:libc-musl = "null" EXTRA_OECMAKE += "\ -DLLVM_TABLEGEN_EXE=${STAGING_BINDIR_NATIVE}/llvm-tblgen \ @@ -27,7 +27,7 @@ EXTRA_OECMAKE += "\ -DPREFERRED_LLVM_VERSION="11.1.0" \ " -do_install_append_class-native() { +do_install:append:class-native() { install -d ${D}${bindir} install -m 0755 ${B}/linux_linker/linux_resource_linker ${D}${bindir}/ } diff --git a/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_12.0.0.bb b/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_12.0.0.bb index 06dc44da..544f7e33 100644 --- a/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_12.0.0.bb +++ b/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang_12.0.0.bb @@ -13,17 +13,17 @@ S = "${WORKDIR}/git" inherit cmake DEPENDS += " clang spirv-llvm-translator" -DEPENDS_append_class-target = " opencl-clang-native" +DEPENDS:append:class-target = " opencl-clang-native" COMPATIBLE_HOST = '(x86_64).*-linux' -COMPATIBLE_HOST_libc-musl = "null" +COMPATIBLE_HOST:libc-musl = "null" EXTRA_OECMAKE += "\ -DCMAKE_SKIP_RPATH=TRUE \ -DPREFERRED_LLVM_VERSION=${LLVMVERSION} \ " -do_install_append_class-native() { +do_install:append:class-native() { install -d ${D}${bindir} install -m 0755 ${B}/linux_linker/linux_resource_linker ${D}${bindir}/ } diff --git a/dynamic-layers/clang-layer/recipes-opencl/vc-intrinsics/vc-intrinsics_1.0.bb b/dynamic-layers/clang-layer/recipes-opencl/vc-intrinsics/vc-intrinsics_1.0.bb index 3c0cc26c..3ac2c8c0 100644 --- a/dynamic-layers/clang-layer/recipes-opencl/vc-intrinsics/vc-intrinsics_1.0.bb +++ b/dynamic-layers/clang-layer/recipes-opencl/vc-intrinsics/vc-intrinsics_1.0.bb @@ -15,7 +15,7 @@ S = "${WORKDIR}/git" inherit cmake COMPATIBLE_HOST = '(x86_64).*-linux' -COMPATIBLE_HOST_libc-musl = "null" +COMPATIBLE_HOST:libc-musl = "null" DEPENDS += " clang" diff --git a/dynamic-layers/meta-python/recipes-opencv/dldt/openvino-model-optimizer_2021.3.bb b/dynamic-layers/meta-python/recipes-opencv/dldt/openvino-model-optimizer_2021.3.bb index 697c8579..aef47604 100644 --- a/dynamic-layers/meta-python/recipes-opencv/dldt/openvino-model-optimizer_2021.3.bb +++ b/dynamic-layers/meta-python/recipes-opencv/dldt/openvino-model-optimizer_2021.3.bb @@ -21,7 +21,7 @@ do_install() { cp -r model-optimizer ${D}${datadir}/openvino/ } -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ python3-numpy \ python3-protobuf \ python3-defusedxml \ @@ -30,4 +30,4 @@ RDEPENDS_${PN} += " \ bash \ " -FILES_${PN} += "${datadir}/openvino" +FILES:${PN} += "${datadir}/openvino" diff --git a/dynamic-layers/openembedded-layer/recipes-bsp/amt/lms_2109.0.0.0.bb b/dynamic-layers/openembedded-layer/recipes-bsp/amt/lms_2109.0.0.0.bb index 86501025..8ff8c88a 100644 --- a/dynamic-layers/openembedded-layer/recipes-bsp/amt/lms_2109.0.0.0.bb +++ b/dynamic-layers/openembedded-layer/recipes-bsp/amt/lms_2109.0.0.0.bb @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=2ee41112a44fe7014dce33e26468ba93" COMPATIBLE_HOST = '(i.86|x86_64).*-linux' -COMPATIBLE_HOST_libc-musl = "null" +COMPATIBLE_HOST:libc-musl = "null" inherit cmake systemd features_check @@ -23,24 +23,24 @@ PACKAGECONFIG[networkmanager] = "-DNETWORK_NM=ON, -DNETWORK_NM=OFF, networkmanag REQUIRED_DISTRO_FEATURES= "systemd" -FILES_${PN} += "${datadir}/dbus-1/system-services/*.service" +FILES:${PN} += "${datadir}/dbus-1/system-services/*.service" S = "${WORKDIR}/git" -SYSTEMD_SERVICE_${PN} = "lms.service" +SYSTEMD_SERVICE:${PN} = "lms.service" SRC_URI = "git://github.com/intel/lms.git \ " SRCREV = "e0ebda9d1e7884b51293b71c1bcda511a7942e1a" -do_install_append() { +do_install:append() { install -d ${D}${systemd_system_unitdir} install -m 0644 ${B}/UNS/lms.service ${D}${systemd_system_unitdir} install -d ${D}${sysconfdir}/udev/rules.d install -m 0644 ${S}/UNS/linux_scripts/70-mei-wdt.rules ${D}${sysconfdir}/udev/rules.d/70-mei-wdt.rules } -RDEPENDS_${PN} += "ace" +RDEPENDS:${PN} += "ace" # This CVE is for Lan Management System software and not this lms. CVE_CHECK_WHITELIST += "CVE-2018-1000535" diff --git a/dynamic-layers/openembedded-layer/recipes-bsp/thermald/thermald_2.4.4.bb b/dynamic-layers/openembedded-layer/recipes-bsp/thermald/thermald_2.4.4.bb index efad2fe3..906b85aa 100644 --- a/dynamic-layers/openembedded-layer/recipes-bsp/thermald/thermald_2.4.4.bb +++ b/dynamic-layers/openembedded-layer/recipes-bsp/thermald/thermald_2.4.4.bb @@ -20,7 +20,7 @@ inherit pkgconfig autotools systemd gtk-doc # gtkdocsize runs before autotools do_configure and it copies gtk-doc.m4 and fails # to copy becuase there is no m4 dir yet. -do_configure_prepend () { +do_configure:prepend () { mkdir -p ${S}/m4 } @@ -28,13 +28,13 @@ EXTRA_OECONF = " \ --with-systemdsystemunitdir=${systemd_system_unitdir} \ " -FILES_${PN} += "${datadir}/dbus-1/system-services/*.service" +FILES:${PN} += "${datadir}/dbus-1/system-services/*.service" -SYSTEMD_SERVICE_${PN} = "thermald.service" +SYSTEMD_SERVICE:${PN} = "thermald.service" COMPATIBLE_HOST = '(i.86|x86_64).*-linux' -CONFFILES_${PN} = " \ +CONFFILES:${PN} = " \ ${sysconfdir}/thermald/thermal-conf.xml \ ${sysconfdir}/thermald/thermal-cpu-cdev-order.xml \ " diff --git a/dynamic-layers/openembedded-layer/recipes-core/levelzero/level-zero_1.2.3.bb b/dynamic-layers/openembedded-layer/recipes-core/levelzero/level-zero_1.2.3.bb index 9ab0804f..2238746f 100644 --- a/dynamic-layers/openembedded-layer/recipes-core/levelzero/level-zero_1.2.3.bb +++ b/dynamic-layers/openembedded-layer/recipes-core/levelzero/level-zero_1.2.3.bb @@ -14,7 +14,7 @@ UPSTREAM_CHECK_GITTAGREGEX = "^v(?P(\d+(\.\d+)+))$" PACKAGES =+ "${PN}-headers ${PN}-samples ${PN}-loader" -do_install_append () { +do_install:append () { install -d ${D}${bindir} ${D}${libdir} install -m 755 ${B}/bin/zello* ${D}${bindir} @@ -22,10 +22,10 @@ do_install_append () { } -FILES_${PN}-headers = "${includedir}" -FILES_${PN}-samples = "${bindir} ${libdir}/libze_null* ${libdir}/libze_validation*" -FILES_${PN}-loader = "${libdir}" +FILES:${PN}-headers = "${includedir}" +FILES:${PN}-samples = "${bindir} ${libdir}/libze_null* ${libdir}/libze_validation*" +FILES:${PN}-loader = "${libdir}" # PN-loader (non -dev/-dbg/nativesdk- package) contains symlink .so -INSANE_SKIP_${PN}-loader = "dev-so" -INSANE_SKIP_${PN}-samples = "dev-so" +INSANE_SKIP:${PN}-loader = "dev-so" +INSANE_SKIP:${PN}-samples = "dev-so" diff --git a/dynamic-layers/openembedded-layer/recipes-oneapi/openvkl/openvkl_0.13.0.bb b/dynamic-layers/openembedded-layer/recipes-oneapi/openvkl/openvkl_0.13.0.bb index 82c4bbea..b2c5a038 100644 --- a/dynamic-layers/openembedded-layer/recipes-oneapi/openvkl/openvkl_0.13.0.bb +++ b/dynamic-layers/openembedded-layer/recipes-oneapi/openvkl/openvkl_0.13.0.bb @@ -31,6 +31,6 @@ EXTRA_OECMAKE += " \ -DISPC_EXECUTABLE=${STAGING_BINDIR_NATIVE}/ispc \ " PACKAGES =+ "${PN}-examples" -FILES_${PN}-examples = "\ +FILES:${PN}-examples = "\ ${bindir} \ " diff --git a/dynamic-layers/openembedded-layer/recipes-oneapi/ospray/ospray_2.6.0.bb b/dynamic-layers/openembedded-layer/recipes-oneapi/ospray/ospray_2.6.0.bb index 7b8544b0..b2f4f7cb 100644 --- a/dynamic-layers/openembedded-layer/recipes-oneapi/ospray/ospray_2.6.0.bb +++ b/dynamic-layers/openembedded-layer/recipes-oneapi/ospray/ospray_2.6.0.bb @@ -25,6 +25,6 @@ EXTRA_OECMAKE += " \ -DISPC_EXECUTABLE=${STAGING_BINDIR_NATIVE}/ispc \ " PACKAGES =+ "${PN}-apps" -FILES_${PN}-apps = "\ +FILES:${PN}-apps = "\ ${bindir} \ " diff --git a/dynamic-layers/openembedded-layer/recipes-support/ipmctl/ipmctl_03.00.00.0341.bb b/dynamic-layers/openembedded-layer/recipes-support/ipmctl/ipmctl_03.00.00.0341.bb index e84d1058..0e29c44c 100644 --- a/dynamic-layers/openembedded-layer/recipes-support/ipmctl/ipmctl_03.00.00.0341.bb +++ b/dynamic-layers/openembedded-layer/recipes-support/ipmctl/ipmctl_03.00.00.0341.bb @@ -32,7 +32,7 @@ DEPENDS = "ndctl" EXTRA_OECMAKE = "-DRELEASE=ON" -do_configure_prepend() { +do_configure:prepend() { for dir in BaseTools MdeModulePkg MdePkg ShellPkg ; do ln -sf edk2/${dir} ${S} done diff --git a/dynamic-layers/openembedded-layer/recipes-support/opencv/open-model-zoo_2021.3.bb b/dynamic-layers/openembedded-layer/recipes-support/opencv/open-model-zoo_2021.3.bb index 700f78c2..1461afe1 100644 --- a/dynamic-layers/openembedded-layer/recipes-support/opencv/open-model-zoo_2021.3.bb +++ b/dynamic-layers/openembedded-layer/recipes-support/opencv/open-model-zoo_2021.3.bb @@ -21,7 +21,7 @@ OECMAKE_SOURCEPATH = "${S}/demos" DEPENDS += "openvino-inference-engine opencv gflags" -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ python3-decorator \ python3-defusedxml \ python3-networkx \ @@ -46,7 +46,7 @@ EXTRA_OECMAKE += " \ -DIE_ROOT_DIR=${WORKDIR}/InferenceEngine \ " -do_configure_prepend(){ +do_configure:prepend(){ mkdir -p ${WORKDIR}/InferenceEngine/share cp ${STAGING_LIBDIR}/cmake/InferenceEngine/* ${WORKDIR}/InferenceEngine/share/ } @@ -63,4 +63,4 @@ do_install(){ cp -rf ${WORKDIR}/git/tools/downloader ${D}${datadir}/openvino/open-model-zoo/tools } -FILES_${PN} += "${datadir}/openvino" +FILES:${PN} += "${datadir}/openvino" diff --git a/dynamic-layers/openembedded-layer/recipes-support/opencv/openvino-inference-engine_2021.3.bb b/dynamic-layers/openembedded-layer/recipes-support/opencv/openvino-inference-engine_2021.3.bb index 19da3e1b..654cac13 100644 --- a/dynamic-layers/openembedded-layer/recipes-support/opencv/openvino-inference-engine_2021.3.bb +++ b/dynamic-layers/openembedded-layer/recipes-support/opencv/openvino-inference-engine_2021.3.bb @@ -30,7 +30,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327 \ file://thirdparty/xbyak/COPYRIGHT;md5=03532861dad9003cc2c17f14fc7a4efa \ file://inference-engine/thirdparty/clDNN/common/include/OpenCL_CLHPP_License.txt;md5=3b83ef96387f14655fc854ddc3c6bd57 \ " -LICENSE_${PN}-vpu-firmware = "ISSL" +LICENSE:${PN}-vpu-firmware = "ISSL" inherit cmake python3native @@ -64,7 +64,7 @@ DEPENDS += "libusb1 \ " COMPATIBLE_HOST = '(x86_64).*-linux' -COMPATIBLE_HOST_libc-musl = "null" +COMPATIBLE_HOST:libc-musl = "null" #Disable opencl temporarily. intel-compute-runtime depends on #intel-graphics-compiler and vc-intrinsics and these two recipes fail to @@ -76,7 +76,7 @@ PACKAGECONFIG[python3] = "-DENABLE_PYTHON=ON -DPYTHON_LIBRARY=${PYTHON_LIBRARY} PACKAGECONFIG[vpu] = "-DENABLE_VPU=ON -DVPU_FIRMWARE_USB-MA2X8X_FILE=../mvnc/usb-ma2x8x.mvcmd -DVPU_FIRMWARE_PCIE-MA2X8X_FILE=../mvnc/pcie-ma2x8x.mvcmd,-DENABLE_VPU=OFF,,${PN}-vpu-firmware" PACKAGECONFIG[verbose] = "-DVERBOSE_BUILD=1,-DVERBOSE_BUILD=0" -do_install_append() { +do_install:append() { if ${@bb.utils.contains('PACKAGECONFIG', 'vpu', 'true', 'false', d)}; then install -m0644 ${WORKDIR}/mvnc/usb-ma2x8x.mvcmd ${D}${libdir}/ install -m0644 ${WORKDIR}/mvnc/pcie-ma2x8x.mvcmd ${D}${libdir}/ @@ -102,13 +102,13 @@ do_install_append() { # Otherwise e.g. ros-openvino-toolkit-dynamic-vino-sample when using dldt-inference-engine uses dldt-inference-engine WORKDIR # instead of RSS -SSTATE_SCAN_FILES_append = " *.cmake" +SSTATE_SCAN_FILES:append = " *.cmake" -FILES_${PN}-dev = "${includedir} \ +FILES:${PN}-dev = "${includedir} \ ${libdir}/cmake \ " -FILES_${PN} += "${libdir}/lib*${SOLIBSDEV} \ +FILES:${PN} += "${libdir}/lib*${SOLIBSDEV} \ ${datadir}/openvino \ ${libdir}/custom_kernels \ ${libdir}/plugins.xml \ @@ -118,12 +118,12 @@ FILES_${PN} += "${libdir}/lib*${SOLIBSDEV} \ # Move inference engine samples into a separate package PACKAGES =+ "${PN}-samples ${PN}-vpu-firmware" -FILES_${PN}-samples = "${datadir}/inference_engine \ +FILES:${PN}-samples = "${datadir}/inference_engine \ ${bindir} \ " -FILES_${PN}-vpu-firmware += "${libdir}/*.mvcmd" +FILES:${PN}-vpu-firmware += "${libdir}/*.mvcmd" # Package for inference engine python API PACKAGES =+ "${PN}-${PYTHON_PN}" -FILES_${PN}-${PYTHON_PN} = "${PYTHON_SITEPACKAGES_DIR}/openvino" +FILES:${PN}-${PYTHON_PN} = "${PYTHON_SITEPACKAGES_DIR}/openvino" -- cgit v1.2.3-54-g00ecf