Add do_install:append function to fix QA Issue like "File /usr/share/doc/orc/html/assets/js/search/hotdoc_fragments/orctarget.html-enum (unnamed at /work/x86-64-v3-poky-linux/orc/0.4.42/sources/orc-0.4.42/orc/orctarget.h:39:1).fragment in package orc-doc contains reference to TMPDIR [buildpaths]"
Signed-off-by: Liu Yiding <[email protected]> --- meta/recipes-devtools/orc/orc_0.4.42.bb | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/meta/recipes-devtools/orc/orc_0.4.42.bb b/meta/recipes-devtools/orc/orc_0.4.42.bb index f56b9058c2..02f431dc0f 100644 --- a/meta/recipes-devtools/orc/orc_0.4.42.bb +++ b/meta/recipes-devtools/orc/orc_0.4.42.bb @@ -9,6 +9,8 @@ SRC_URI[sha256sum] = "7ec912ab59af3cc97874c456a56a8ae1eec520c385ec447e8a102b2bd1 inherit meson pkgconfig +DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation', 'hotdoc-native', '', d)}" + # distinguish from apache:orc CVE_PRODUCT = "gstreamer:orc" @@ -27,3 +29,13 @@ python populate_packages:prepend () { do_compile:prepend:class-native () { sed -i -e 's#/tmp#.#g' ${S}/orc/orccodemem.c } + +#Add this function to deal with QA Issue like File /usr/share/doc/orc/html/assets/js/search/hotdoc_fragments/orctarget.html-enum (unnamed at /work/x86-64-v3-poky-linux/orc/0.4.42/sources/orc-0.4.42/orc/orctarget.h:39:1).fragment in package orc-doc contains reference to TMPDIR [buildpaths] +do_install:append:class-target () { + if ${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation', 'true', 'false', d)}; then + rm -rf ${D}${docdir}/${PN}/html/assets/js/search/hotdoc_fragments/*unnamed* + for ss in $(find ${D}${docdir}/${PN}/html -type f); do + sed -i 's,${S},,g' "$ss" + done + fi +} -- 2.43.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#231739): https://lists.openembedded.org/g/openembedded-core/message/231739 Mute This Topic: https://lists.openembedded.org/mt/117971120/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
