[oe-commits] [openembedded-core] 08/13: ptest: Optionally strip build host tool info from installed files

git at git.openembedded.org git at git.openembedded.org
Wed Nov 28 22:24:21 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 9ea08264ee866f2c1afbb32d974b2ac18b8c2eba
Author: Douglas Royds <douglas.royds at taitradio.com>
AuthorDate: Wed Nov 28 17:53:10 2018 +1300

    ptest: Optionally strip build host tool info from installed files
    
    Several packages (eg. acl, attr, openssl) install Makefiles or other build host
    configuration files for ptest so that they can run `make check`, for instance.
    These build host files commonly include paths and versions of build host tools,
    (eg. rpm or perl) whose presence and version depends on the build host distro.
    
    Optionally strip lines from installed PTEST_BUILD_HOST_FILES using an
    extended regex pattern defined in PTEST_BUILD_HOST_PATTERN. This has no
    effect on the on-target ptest.
    
    Signed-off-by: Douglas Royds <douglas.royds at taitradio.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/ptest.bbclass | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass
index fa518f6..97865c9 100644
--- a/meta/classes/ptest.bbclass
+++ b/meta/classes/ptest.bbclass
@@ -4,6 +4,7 @@ This package contains a test directory ${PTEST_PATH} for package test purposes."
 
 PTEST_PATH ?= "${libdir}/${BPN}/ptest"
 PTEST_BUILD_HOST_FILES ?= "Makefile"
+PTEST_BUILD_HOST_PATTERN ?= ""
 
 FILES_${PN}-ptest = "${PTEST_PATH}"
 SECTION_${PN}-ptest = "devel"
@@ -56,6 +57,10 @@ do_install_ptest_base() {
                 -e 's#${WORKDIR}/*=#.=#g' \
                 -e 's#${WORKDIR}/*##g' \
                 -i $installed_ptest_file
+            if [ -n "${PTEST_BUILD_HOST_PATTERN}" ]; then
+               sed -E '/${PTEST_BUILD_HOST_PATTERN}/d' \
+                   -i $installed_ptest_file
+            fi
         done
     done
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list