mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 01:40:07 +00:00
ruby: Upgrade to 2.2.5
This is latest in 2.2 series, helps with compile using clang (From OE-Core rev: 9f1a8cc84105b077cb5896997b220f1f583075b5) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
require ruby.inc
|
||||
|
||||
SRC_URI[md5sum] = "bd8e349d4fb2c75d90817649674f94be"
|
||||
SRC_URI[sha256sum] = "30c4b31697a4ca4ea0c8db8ad30cf45e6690a0f09687e5d483c933c03ca335e3"
|
||||
|
||||
# it's unknown to configure script, but then passed to extconf.rb
|
||||
# maybe it's not really needed as we're hardcoding the result with
|
||||
# 0001-socket-extconf-hardcode-wide-getaddr-info-test-outco.patch
|
||||
UNKNOWN_CONFIGURE_WHITELIST += "--enable-wide-getaddrinfo"
|
||||
|
||||
PACKAGECONFIG ??= ""
|
||||
PACKAGECONFIG += "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
|
||||
|
||||
PACKAGECONFIG[valgrind] = "--with-valgrind=yes, --with-valgrind=no, valgrind"
|
||||
PACKAGECONFIG[gpm] = "--with-gmp=yes, --with-gmp=no, gmp"
|
||||
PACKAGECONFIG[ipv6] = ",--enable-wide-getaddrinfo,"
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--disable-versioned-paths \
|
||||
--disable-rpath \
|
||||
--disable-dtrace \
|
||||
--enable-shared \
|
||||
--enable-load-relative \
|
||||
"
|
||||
|
||||
do_install() {
|
||||
oe_runmake 'DESTDIR=${D}' install
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-ri-docs ${PN}-rdoc"
|
||||
|
||||
SUMMARY_${PN}-ri-docs = "ri (Ruby Interactive) documentation for the Ruby standard library"
|
||||
RDEPENDS_${PN}-ri-docs = "${PN}"
|
||||
FILES_${PN}-ri-docs += "${datadir}/ri"
|
||||
|
||||
SUMMARY_${PN}-rdoc = "RDoc documentation generator from Ruby source"
|
||||
RDEPENDS_${PN}-rdoc = "${PN}"
|
||||
FILES_${PN}-rdoc += "${libdir}/ruby/*/rdoc ${bindir}/rdoc"
|
||||
|
||||
FILES_${PN} += "${datadir}/rubygems"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
Reference in New Issue
Block a user