summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzhilarasan <ezhilarasanx.s@intel.com>2022-03-17 14:40:16 +0530
committerAnuj Mittal <anuj.mittal@intel.com>2022-03-21 21:42:52 +0800
commit39027f7038598a72ed3ad2a4865713717629320b (patch)
tree0572ce201569180033852b44eabf3a71c1f75ab4
parentcc62d49dd968cf7aa154323165bf401424c79e30 (diff)
downloadmeta-intel-39027f7038598a72ed3ad2a4865713717629320b.tar.gz
oidn: upgrade 1.4.1 -> 1.4.3
License-Update: copyright years refreshed Release notes: https://github.com/OpenImageDenoise/oidn/releases/tag/v1.4.3 Signed-off-by: Ezhilarasan <ezhilarasanx.s@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r--dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn/0001-remove-redundant-RPATH.patch37
-rw-r--r--dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn_1.4.3.bb (renamed from dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn_1.4.1.bb)10
2 files changed, 43 insertions, 4 deletions
diff --git a/dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn/0001-remove-redundant-RPATH.patch b/dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn/0001-remove-redundant-RPATH.patch
new file mode 100644
index 00000000..0f39a581
--- /dev/null
+++ b/dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn/0001-remove-redundant-RPATH.patch
@@ -0,0 +1,37 @@
1From 46b7de8c4ae0cc34805c2a11356c5a730fb8760a Mon Sep 17 00:00:00 2001
2From: Ezhilarasan <ezhilarasanx.s@intel.com>
3Date: Fri, 4 Mar 2022 21:04:47 +0530
4Subject: [PATCH] remove-redundant-RPATH
5
6Error Log:
7ERROR: oidn-1.4.3-r0 do_package_qa: QA Issue: oidn: /usr/lib/libOpenImageDenoise.so.1.4.3 contains probably-redundant RPATH /usr/lib
8oidn: /usr/bin/oidnTest contains probably-redundant RPATH /usr/lib
9oidn: /usr/bin/oidnDenoise contains probably-redundant RPATH /usr/lib
10oidn: /usr/bin/oidnBenchmark contains probably-redundant RPATH /usr/lib [useless-rpaths]
11ERROR: oidn-1.4.3-r0 do_package_qa: Fatal QA errors were found, failing task.
12
13Remove the redundant RPATH
14
15Upstream-Status: Inappropriate
16
17Signed-off-by: Ezhilarasan <ezhilarasanx.s@intel.com>
18---
19 cmake/oidn_package.cmake | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22diff --git a/cmake/oidn_package.cmake b/cmake/oidn_package.cmake
23index 1f76af8..46c0854 100644
24--- a/cmake/oidn_package.cmake
25+++ b/cmake/oidn_package.cmake
26@@ -29,7 +29,7 @@ if(OIDN_ZIP_MODE)
27 set(CMAKE_INSTALL_RPATH "$ORIGIN/../${CMAKE_INSTALL_LIBDIR}")
28 endif()
29 else()
30- set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_FULL_LIBDIR}")
31+# set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_FULL_LIBDIR}")
32 endif()
33
34 ## -----------------------------------------------------------------------------
35--
362.17.1
37
diff --git a/dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn_1.4.1.bb b/dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn_1.4.3.bb
index 24ead8c6..8e055a57 100644
--- a/dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn_1.4.1.bb
+++ b/dynamic-layers/openembedded-layer/recipes-oneapi/oidn/oidn_1.4.3.bb
@@ -7,13 +7,15 @@ HOMEPAGE = "https://www.openimagedenoise.org/"
7 7
8LICENSE = "Apache-2.0 & BSD-3-Clause" 8LICENSE = "Apache-2.0 & BSD-3-Clause"
9LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57 \ 9LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57 \
10 file://mkl-dnn/LICENSE;md5=3c6ff4426dbd618bcfd552ac4a7c1c56 \ 10 file://mkl-dnn/LICENSE;md5=8e17c0f9656ebaf0c380d9b22707c846 \
11 file://mkl-dnn/src/cpu/x64/xbyak/COPYRIGHT;md5=3b9bf048d063d54cdb28964db558bcc7 \ 11 file://mkl-dnn/src/cpu/x64/xbyak/COPYRIGHT;md5=3b9bf048d063d54cdb28964db558bcc7 \
12 file://mkl-dnn/src/cpu/x64/jit_utils/jitprofiling/LICENSE.BSD;md5=e671ff178b24a95a382ba670503c66fb \ 12 file://mkl-dnn/src/common/ittnotify/LICENSE.BSD;md5=e671ff178b24a95a382ba670503c66fb \
13 file://weights/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" 13 file://weights/LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
14 14
15SRC_URI = "https://github.com/OpenImageDenoise/${BPN}/releases/download/v${PV}/${BP}.src.tar.gz" 15SRC_URI = "https://github.com/OpenImageDenoise/${BPN}/releases/download/v${PV}/${BP}.src.tar.gz\
16SRC_URI[sha256sum] = "9088966685a78adf24b8de075d66e4c0019bd7b2b9d29c6e45aaf35d294e3f6f" 16 file://0001-remove-redundant-RPATH.patch \
17 "
18SRC_URI[sha256sum] = "3276e252297ebad67a999298d8f0c30cfb221e166b166ae5c955d88b94ad062a"
17 19
18inherit cmake 20inherit cmake
19 21