[oe-commits] [openembedded-core] 02/11: ruby: install required files for ptest

git at git.openembedded.org git at git.openembedded.org
Tue Feb 25 13:31:55 UTC 2020


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 bdc121b2fb418b786f954e6649b451169fad1ab0
Author: Kai Kang <kai.kang at windriver.com>
AuthorDate: Tue Feb 25 17:06:19 2020 +0800

    ruby: install required files for ptest
    
    After update to 2.7.0, it fails to start ptest of ruby with errors:
    
    | ./test/runner.rb:11:in `require_relative': cannot load such file --
        /usr/lib64/ruby/ptest/tool/test/runner (LoadError)
    
    and
    
    | test/rdoc/test_rdoc_attr.rb: cannot load such file -- rdoc/version
    | test/did_you_mean/spell_checking/test_key_name_check.rb: cannot load
        such file -- /usr/lib64/ruby/ptest/lib/did_you_mean
    
    Install the required files for the ptest.
    
    Signed-off-by: Kai Kang <kai.kang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/ruby/ruby_2.7.0.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/recipes-devtools/ruby/ruby_2.7.0.bb b/meta/recipes-devtools/ruby/ruby_2.7.0.bb
index c796318..268b4be 100644
--- a/meta/recipes-devtools/ruby/ruby_2.7.0.bb
+++ b/meta/recipes-devtools/ruby/ruby_2.7.0.bb
@@ -45,6 +45,12 @@ do_install_append_class-target () {
 
 do_install_ptest () {
     cp -rf ${S}/test ${D}${PTEST_PATH}/
+
+    install -D ${S}/tool/test/runner.rb ${D}${PTEST_PATH}/tool/test/runner.rb
+    cp -r ${S}/tool/lib ${D}${PTEST_PATH}/tool/
+    mkdir -p ${D}${PTEST_PATH}/lib
+    cp -r ${S}/lib/did_you_mean ${S}/lib/rdoc ${D}${PTEST_PATH}/lib
+
     # install test-binaries
     find $(find ./.ext -path '*/-test-') -name '*.so' -print0 \
         | tar --no-recursion --null -T - --no-same-owner --preserve-permissions -cf - \

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


More information about the Openembedded-commits mailing list