diff options
| author | Armin Kuster <akuster808@gmail.com> | 2015-04-14 17:46:36 -0700 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-05-11 10:27:28 +0200 |
| commit | 86835b4ac5ee593e8bd5b142504194370df71728 (patch) | |
| tree | 731b4cfd79efcae50a82bfda4d04a66d0eac648d /meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb | |
| parent | 923d50b719ca23be85bef450821a82d99ad26f6f (diff) | |
| download | meta-openembedded-86835b4ac5ee593e8bd5b142504194370df71728.tar.gz | |
ruby: Update to 2.2.2
Includes among other things: CVE-2015-1855: Ruby OpenSSL Hostname Verification
for more info see:
http://svn.ruby-lang.org/repos/ruby/tags/v2_2_2/ChangeLog
also, fixed runtime error.
only include "enable-wide-getaddrinfo" if IVP6 is enabled in disto feature
otherwise 'gem install rails' throws an error for the missing symbol 'getipnodebyname'.
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb')
| -rw-r--r-- | meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb new file mode 100644 index 0000000000..c463525c22 --- /dev/null +++ b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | require ruby.inc | ||
| 2 | |||
| 3 | SRC_URI[md5sum] = "326e99ddc75381c7b50c85f7089f3260" | ||
| 4 | SRC_URI[sha256sum] = "5ffc0f317e429e6b29d4a98ac521c3ce65481bfd22a8cf845fa02a7b113d9b44" | ||
| 5 | |||
| 6 | # it's unknown to configure script, but then passed to extconf.rb | ||
| 7 | # maybe it's not really needed as we're hardcoding the result with | ||
| 8 | # 0001-socket-extconf-hardcode-wide-getaddr-info-test-outco.patch | ||
| 9 | UNKNOWN_CONFIGURE_WHITELIST += "--enable-wide-getaddrinfo" | ||
| 10 | |||
| 11 | PACKAGECONFIG ??= "" | ||
| 12 | PACKAGECONFIG += "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}" | ||
| 13 | |||
| 14 | PACKAGECONFIG[valgrind] = "--with-valgrind=yes, --with-valgrind=no, valgrind" | ||
| 15 | PACKAGECONFIG[gpm] = "--with-gmp=yes, --with-gmp=no, gmp" | ||
| 16 | PACKAGECONFIG[ipv6] = ",--enable-wide-getaddrinfo," | ||
| 17 | |||
| 18 | EXTRA_OECONF = "\ | ||
| 19 | --disable-versioned-paths \ | ||
| 20 | --disable-rpath \ | ||
| 21 | --enable-shared \ | ||
| 22 | --enable-load-relative \ | ||
| 23 | " | ||
| 24 | |||
| 25 | EXTRA_OEMAKE = " \ | ||
| 26 | LIBRUBYARG='-lruby-static' \ | ||
| 27 | " | ||
| 28 | |||
| 29 | do_install() { | ||
| 30 | oe_runmake 'DESTDIR=${D}' install | ||
| 31 | } | ||
| 32 | |||
| 33 | FILES_${PN} += "${datadir}/rubygems \ | ||
| 34 | ${datadir}/ri" | ||
| 35 | |||
| 36 | FILES_${PN}-dbg += "${libdir}/ruby/*/.debug \ | ||
| 37 | ${libdir}/ruby/*/*/.debug \ | ||
| 38 | ${libdir}/ruby/*/*/*/.debug \ | ||
| 39 | ${libdir}/ruby/*/*/*/*/.debug" | ||
| 40 | |||
| 41 | BBCLASSEXTEND = "native" | ||
