diff options
Diffstat (limited to 'meta/recipes-devtools/ruby/ruby_2.4.2.bb')
| -rw-r--r-- | meta/recipes-devtools/ruby/ruby_2.4.2.bb | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/meta/recipes-devtools/ruby/ruby_2.4.2.bb b/meta/recipes-devtools/ruby/ruby_2.4.2.bb new file mode 100644 index 0000000000..b471154a22 --- /dev/null +++ b/meta/recipes-devtools/ruby/ruby_2.4.2.bb | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | require ruby.inc | ||
| 2 | |||
| 3 | SRC_URI += " \ | ||
| 4 | file://ruby-CVE-2017-9224.patch \ | ||
| 5 | file://ruby-CVE-2017-9226.patch \ | ||
| 6 | file://ruby-CVE-2017-9227.patch \ | ||
| 7 | file://ruby-CVE-2017-9228.patch \ | ||
| 8 | file://ruby-CVE-2017-9229.patch \ | ||
| 9 | " | ||
| 10 | |||
| 11 | SRC_URI[md5sum] = "fe106eed9738c4e03813ab904f8d891c" | ||
| 12 | SRC_URI[sha256sum] = "93b9e75e00b262bc4def6b26b7ae8717efc252c47154abb7392e54357e6c8c9c" | ||
| 13 | |||
| 14 | # it's unknown to configure script, but then passed to extconf.rb | ||
| 15 | # maybe it's not really needed as we're hardcoding the result with | ||
| 16 | # 0001-socket-extconf-hardcode-wide-getaddr-info-test-outco.patch | ||
| 17 | UNKNOWN_CONFIGURE_WHITELIST += "--enable-wide-getaddrinfo" | ||
| 18 | |||
| 19 | PACKAGECONFIG ??= "" | ||
| 20 | PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}" | ||
| 21 | |||
| 22 | PACKAGECONFIG[valgrind] = "--with-valgrind=yes, --with-valgrind=no, valgrind" | ||
| 23 | PACKAGECONFIG[gpm] = "--with-gmp=yes, --with-gmp=no, gmp" | ||
| 24 | PACKAGECONFIG[ipv6] = ",--enable-wide-getaddrinfo," | ||
| 25 | |||
| 26 | EXTRA_AUTORECONF += "--exclude=aclocal" | ||
| 27 | |||
| 28 | EXTRA_OECONF = "\ | ||
| 29 | --disable-versioned-paths \ | ||
| 30 | --disable-rpath \ | ||
| 31 | --disable-dtrace \ | ||
| 32 | --enable-shared \ | ||
| 33 | --enable-load-relative \ | ||
| 34 | " | ||
| 35 | |||
| 36 | do_install() { | ||
| 37 | oe_runmake 'DESTDIR=${D}' install | ||
| 38 | } | ||
| 39 | |||
| 40 | PACKAGES =+ "${PN}-ri-docs ${PN}-rdoc" | ||
| 41 | |||
| 42 | SUMMARY_${PN}-ri-docs = "ri (Ruby Interactive) documentation for the Ruby standard library" | ||
| 43 | RDEPENDS_${PN}-ri-docs = "${PN}" | ||
| 44 | FILES_${PN}-ri-docs += "${datadir}/ri" | ||
| 45 | |||
| 46 | SUMMARY_${PN}-rdoc = "RDoc documentation generator from Ruby source" | ||
| 47 | RDEPENDS_${PN}-rdoc = "${PN}" | ||
| 48 | FILES_${PN}-rdoc += "${libdir}/ruby/*/rdoc ${bindir}/rdoc" | ||
| 49 | |||
| 50 | FILES_${PN} += "${datadir}/rubygems" | ||
| 51 | |||
| 52 | BBCLASSEXTEND = "native" | ||
