diff options
| author | Chee Yang Lee <chee.yang.lee@intel.com> | 2020-10-30 18:09:59 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-31 08:54:12 +0000 |
| commit | 916c86b9cbbdb6aa0ad1b0f10ab680d2ddf8f78c (patch) | |
| tree | 0d7bc0c16042c7d71c7b6810f0b651a187fb67a2 /meta/recipes-devtools/ruby/ruby_2.7.2.bb | |
| parent | 6fa6afd5329e9c4f80d1fc8a9365a6faacec0ed0 (diff) | |
| download | poky-916c86b9cbbdb6aa0ad1b0f10ab680d2ddf8f78c.tar.gz | |
ruby: update to 2.7.2
updates also fix CVE-2020-25613
(From OE-Core rev: fe588448adec9fb5de374fb8b9c2c548068328e6)
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/ruby/ruby_2.7.2.bb')
| -rw-r--r-- | meta/recipes-devtools/ruby/ruby_2.7.2.bb | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/meta/recipes-devtools/ruby/ruby_2.7.2.bb b/meta/recipes-devtools/ruby/ruby_2.7.2.bb new file mode 100644 index 0000000000..055ea9343f --- /dev/null +++ b/meta/recipes-devtools/ruby/ruby_2.7.2.bb | |||
| @@ -0,0 +1,92 @@ | |||
| 1 | require ruby.inc | ||
| 2 | |||
| 3 | DEPENDS_append_libc-musl = " libucontext" | ||
| 4 | |||
| 5 | SRC_URI += " \ | ||
| 6 | file://remove_has_include_macros.patch \ | ||
| 7 | file://run-ptest \ | ||
| 8 | file://0001-Modify-shebang-of-libexec-y2racc-and-libexec-racc2y.patch \ | ||
| 9 | " | ||
| 10 | |||
| 11 | SRC_URI[md5sum] = "2d4a28dcfa38352a627a597f6057c465" | ||
| 12 | SRC_URI[sha256sum] = "6e5706d0d4ee4e1e2f883db9d768586b4d06567debea353c796ec45e8321c3d4" | ||
| 13 | |||
| 14 | PACKAGECONFIG ??= "" | ||
| 15 | PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}" | ||
| 16 | |||
| 17 | PACKAGECONFIG[valgrind] = "--with-valgrind=yes, --with-valgrind=no, valgrind" | ||
| 18 | PACKAGECONFIG[gmp] = "--with-gmp=yes, --with-gmp=no, gmp" | ||
| 19 | PACKAGECONFIG[ipv6] = "--enable-ipv6, --disable-ipv6," | ||
| 20 | |||
| 21 | EXTRA_OECONF = "\ | ||
| 22 | --disable-versioned-paths \ | ||
| 23 | --disable-rpath \ | ||
| 24 | --disable-dtrace \ | ||
| 25 | --enable-shared \ | ||
| 26 | --enable-load-relative \ | ||
| 27 | --with-pkg-config=pkg-config \ | ||
| 28 | " | ||
| 29 | |||
| 30 | EXTRA_OECONF_append_libc-musl = "\ | ||
| 31 | LIBS='-lucontext' \ | ||
| 32 | ac_cv_func_isnan=yes \ | ||
| 33 | ac_cv_func_isinf=yes \ | ||
| 34 | " | ||
| 35 | |||
| 36 | do_install() { | ||
| 37 | oe_runmake 'DESTDIR=${D}' install | ||
| 38 | } | ||
| 39 | |||
| 40 | do_install_append_class-target () { | ||
| 41 | # Find out rbconfig.rb from .installed.list | ||
| 42 | rbconfig_rb=`grep rbconfig.rb ${B}/.installed.list` | ||
| 43 | # Remove build host directories | ||
| 44 | sed -i -e 's:--sysroot=${STAGING_DIR_TARGET}::g' \ | ||
| 45 | -e s:'--with-libtool-sysroot=${STAGING_DIR_TARGET}'::g \ | ||
| 46 | -e 's|${DEBUG_PREFIX_MAP}||g' \ | ||
| 47 | -e 's:${HOSTTOOLS_DIR}/::g' \ | ||
| 48 | -e 's:${RECIPE_SYSROOT_NATIVE}::g' \ | ||
| 49 | -e 's:${RECIPE_SYSROOT}::g' \ | ||
| 50 | -e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \ | ||
| 51 | ${D}$rbconfig_rb | ||
| 52 | } | ||
| 53 | |||
| 54 | do_install_ptest () { | ||
| 55 | cp -rf ${S}/test ${D}${PTEST_PATH}/ | ||
| 56 | |||
| 57 | install -D ${S}/tool/test/runner.rb ${D}${PTEST_PATH}/tool/test/runner.rb | ||
| 58 | cp -r ${S}/tool/lib ${D}${PTEST_PATH}/tool/ | ||
| 59 | mkdir -p ${D}${PTEST_PATH}/lib | ||
| 60 | cp -r ${S}/lib/did_you_mean ${S}/lib/rdoc ${D}${PTEST_PATH}/lib | ||
| 61 | |||
| 62 | # install test-binaries | ||
| 63 | find $(find ./.ext -path '*/-test-') -name '*.so' -print0 \ | ||
| 64 | | tar --no-recursion --null -T - --no-same-owner --preserve-permissions -cf - \ | ||
| 65 | | tar -C ${D}${libdir}/ruby/${SHRT_VER}.0/ --no-same-owner --preserve-permissions --strip-components=2 -xf - | ||
| 66 | # adjust path to not assume build directory layout | ||
| 67 | sed -e 's|File.expand_path(.*\.\./bin/erb[^)]*|File.expand_path("${bindir}/erb"|g' \ | ||
| 68 | -i ${D}${PTEST_PATH}/test/erb/test_erb_command.rb | ||
| 69 | |||
| 70 | cp -r ${S}/include ${D}/${libdir}/ruby/ | ||
| 71 | test_case_rb=`grep rubygems/test_case.rb ${B}/.installed.list` | ||
| 72 | sed -i -e 's:../../../test/:../../../ptest/test/:g' ${D}/$test_case_rb | ||
| 73 | } | ||
| 74 | |||
| 75 | PACKAGES =+ "${PN}-ri-docs ${PN}-rdoc" | ||
| 76 | |||
| 77 | SUMMARY_${PN}-ri-docs = "ri (Ruby Interactive) documentation for the Ruby standard library" | ||
| 78 | RDEPENDS_${PN}-ri-docs = "${PN}" | ||
| 79 | FILES_${PN}-ri-docs += "${datadir}/ri" | ||
| 80 | |||
| 81 | SUMMARY_${PN}-rdoc = "RDoc documentation generator from Ruby source" | ||
| 82 | RDEPENDS_${PN}-rdoc = "${PN}" | ||
| 83 | FILES_${PN}-rdoc += "${libdir}/ruby/*/rdoc ${bindir}/rdoc" | ||
| 84 | |||
| 85 | FILES_${PN} += "${datadir}/rubygems" | ||
| 86 | |||
| 87 | FILES_${PN}-ptest_append_class-target = "\ | ||
| 88 | ${libdir}/ruby/include \ | ||
| 89 | ${libdir}/ruby/${SHRT_VER}.0/*/-test- \ | ||
| 90 | " | ||
| 91 | |||
| 92 | BBCLASSEXTEND = "native" | ||
