* [meta-ruby][PATCH] ruby: Update to 2.2.2
@ 2015-04-15 0:46 Armin Kuster
2015-05-01 12:22 ` Martin Jansa
0 siblings, 1 reply; 3+ messages in thread
From: Armin Kuster @ 2015-04-15 0:46 UTC (permalink / raw)
To: openembedded-devel
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>
---
meta-ruby/recipes-devtools/ruby/{ruby_2.2.1.bb => ruby_2.2.2.bb} | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
rename meta-ruby/recipes-devtools/ruby/{ruby_2.2.1.bb => ruby_2.2.2.bb} (77%)
diff --git a/meta-ruby/recipes-devtools/ruby/ruby_2.2.1.bb b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
similarity index 77%
rename from meta-ruby/recipes-devtools/ruby/ruby_2.2.1.bb
rename to meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
index 29f2291..c463525 100644
--- a/meta-ruby/recipes-devtools/ruby/ruby_2.2.1.bb
+++ b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
@@ -1,7 +1,7 @@
require ruby.inc
-SRC_URI[md5sum] = "b49fc67a834e4f77249eb73eecffb1c9"
-SRC_URI[sha256sum] = "5a4de38068eca8919cb087d338c0c2e3d72c9382c804fb27ab746e6c7819ab28"
+SRC_URI[md5sum] = "326e99ddc75381c7b50c85f7089f3260"
+SRC_URI[sha256sum] = "5ffc0f317e429e6b29d4a98ac521c3ce65481bfd22a8cf845fa02a7b113d9b44"
# 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
@@ -9,11 +9,13 @@ SRC_URI[sha256sum] = "5a4de38068eca8919cb087d338c0c2e3d72c9382c804fb27ab746e6c78
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 = "\
- --enable-wide-getaddrinfo \
--disable-versioned-paths \
--disable-rpath \
--enable-shared \
--
2.3.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-ruby][PATCH] ruby: Update to 2.2.2
2015-04-15 0:46 [meta-ruby][PATCH] ruby: Update to 2.2.2 Armin Kuster
@ 2015-05-01 12:22 ` Martin Jansa
2015-05-01 23:55 ` akuster808
0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2015-05-01 12:22 UTC (permalink / raw)
To: openembedded-devel
On Tue, Apr 14, 2015 at 05:46:36PM -0700, Armin Kuster wrote:
> 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
Hi,
both 2.2.1 and 2.2.2 are failing on some hosts native builds with:
| linking miniruby
| load.o: In function `rb_f_load':
| load.c:(.text+0x3af): undefined reference to `RUBY_DTRACE_LOAD_ENTRY_ENABLED'
| load.c:(.text+0x428): undefined reference to `RUBY_DTRACE_LOAD_RETURN_ENABLED'
| load.c:(.text+0x452): undefined reference to `RUBY_DTRACE_LOAD_RETURN'
| load.c:(.text+0x492): undefined reference to `RUBY_DTRACE_LOAD_ENTRY'
| load.o: In function `rb_require_internal':
..
any idea what's causing it?
I'll add --disable-dtrace to see if it resolves the issue.
>
> 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>
> ---
> meta-ruby/recipes-devtools/ruby/{ruby_2.2.1.bb => ruby_2.2.2.bb} | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
> rename meta-ruby/recipes-devtools/ruby/{ruby_2.2.1.bb => ruby_2.2.2.bb} (77%)
>
> diff --git a/meta-ruby/recipes-devtools/ruby/ruby_2.2.1.bb b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
> similarity index 77%
> rename from meta-ruby/recipes-devtools/ruby/ruby_2.2.1.bb
> rename to meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
> index 29f2291..c463525 100644
> --- a/meta-ruby/recipes-devtools/ruby/ruby_2.2.1.bb
> +++ b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
> @@ -1,7 +1,7 @@
> require ruby.inc
>
> -SRC_URI[md5sum] = "b49fc67a834e4f77249eb73eecffb1c9"
> -SRC_URI[sha256sum] = "5a4de38068eca8919cb087d338c0c2e3d72c9382c804fb27ab746e6c7819ab28"
> +SRC_URI[md5sum] = "326e99ddc75381c7b50c85f7089f3260"
> +SRC_URI[sha256sum] = "5ffc0f317e429e6b29d4a98ac521c3ce65481bfd22a8cf845fa02a7b113d9b44"
>
> # 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
> @@ -9,11 +9,13 @@ SRC_URI[sha256sum] = "5a4de38068eca8919cb087d338c0c2e3d72c9382c804fb27ab746e6c78
> 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 = "\
> - --enable-wide-getaddrinfo \
> --disable-versioned-paths \
> --disable-rpath \
> --enable-shared \
> --
> 2.3.5
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-ruby][PATCH] ruby: Update to 2.2.2
2015-05-01 12:22 ` Martin Jansa
@ 2015-05-01 23:55 ` akuster808
0 siblings, 0 replies; 3+ messages in thread
From: akuster808 @ 2015-05-01 23:55 UTC (permalink / raw)
To: openembedded-devel
On 05/01/2015 05:22 AM, Martin Jansa wrote:
> On Tue, Apr 14, 2015 at 05:46:36PM -0700, Armin Kuster wrote:
>> 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
>
> Hi,
>
> both 2.2.1 and 2.2.2 are failing on some hosts native builds with:
> | linking miniruby
> | load.o: In function `rb_f_load':
> | load.c:(.text+0x3af): undefined reference to `RUBY_DTRACE_LOAD_ENTRY_ENABLED'
> | load.c:(.text+0x428): undefined reference to `RUBY_DTRACE_LOAD_RETURN_ENABLED'
> | load.c:(.text+0x452): undefined reference to `RUBY_DTRACE_LOAD_RETURN'
> | load.c:(.text+0x492): undefined reference to `RUBY_DTRACE_LOAD_ENTRY'
> | load.o: In function `rb_require_internal':
>
> ..
>
> any idea what's causing it?
>
> I'll add --disable-dtrace to see if it resolves the issue.
I thought I added that.. Oh, wait I forgot I sent a 2.2.2 update out.. I
have a v2 then.
- armin
>
>>
>> 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>
>> ---
>> meta-ruby/recipes-devtools/ruby/{ruby_2.2.1.bb => ruby_2.2.2.bb} | 8 +++++---
>> 1 file changed, 5 insertions(+), 3 deletions(-)
>> rename meta-ruby/recipes-devtools/ruby/{ruby_2.2.1.bb => ruby_2.2.2.bb} (77%)
>>
>> diff --git a/meta-ruby/recipes-devtools/ruby/ruby_2.2.1.bb b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
>> similarity index 77%
>> rename from meta-ruby/recipes-devtools/ruby/ruby_2.2.1.bb
>> rename to meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
>> index 29f2291..c463525 100644
>> --- a/meta-ruby/recipes-devtools/ruby/ruby_2.2.1.bb
>> +++ b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
>> @@ -1,7 +1,7 @@
>> require ruby.inc
>>
>> -SRC_URI[md5sum] = "b49fc67a834e4f77249eb73eecffb1c9"
>> -SRC_URI[sha256sum] = "5a4de38068eca8919cb087d338c0c2e3d72c9382c804fb27ab746e6c7819ab28"
>> +SRC_URI[md5sum] = "326e99ddc75381c7b50c85f7089f3260"
>> +SRC_URI[sha256sum] = "5ffc0f317e429e6b29d4a98ac521c3ce65481bfd22a8cf845fa02a7b113d9b44"
>>
>> # 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
>> @@ -9,11 +9,13 @@ SRC_URI[sha256sum] = "5a4de38068eca8919cb087d338c0c2e3d72c9382c804fb27ab746e6c78
>> 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 = "\
>> - --enable-wide-getaddrinfo \
>> --disable-versioned-paths \
>> --disable-rpath \
>> --enable-shared \
>> --
>> 2.3.5
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-05-01 23:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-15 0:46 [meta-ruby][PATCH] ruby: Update to 2.2.2 Armin Kuster
2015-05-01 12:22 ` Martin Jansa
2015-05-01 23:55 ` akuster808
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.