From 38928cae57e106d1c3736b52645a5d3d88b6a431 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb <wbx@openadk.org> Date: Mon, 1 Mar 2021 21:55:10 +0100 Subject: ruby: update to 3.0.0 --- .../0001-fix-default-coroutine-selection.patch | 21 +++++++++++++++++++++ package/ruby/patches/patch-configure | 16 ---------------- 2 files changed, 21 insertions(+), 16 deletions(-) create mode 100644 package/ruby/patches/0001-fix-default-coroutine-selection.patch delete mode 100644 package/ruby/patches/patch-configure (limited to 'package/ruby/patches') diff --git a/package/ruby/patches/0001-fix-default-coroutine-selection.patch b/package/ruby/patches/0001-fix-default-coroutine-selection.patch new file mode 100644 index 000000000..ea84aa9bc --- /dev/null +++ b/package/ruby/patches/0001-fix-default-coroutine-selection.patch @@ -0,0 +1,21 @@ +fixed default coroutine selection for musl/uclibc + +https://github.com/ruby/ruby/pull/3567/commits/b570e7de87aaad8c903176d835e8124127f627b3 + +Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> + +diff -Nur ruby-3.0.0.orig/configure.ac ruby-3.0.0/configure.ac +--- ruby-3.0.0.orig/configure.ac 2020-12-25 04:33:01.000000000 +0100 ++++ ruby-3.0.0/configure.ac 2021-02-22 13:00:53.990314464 +0100 +@@ -2441,7 +2441,10 @@ + rb_cv_coroutine=copy + ], + [ +- rb_cv_coroutine=ucontext ++ AC_CHECK_FUNCS([getcontext swapcontext makecontext], ++ [rb_cv_coroutine=ucontext], ++ [rb_cv_coroutine=copy; break] ++ ) + ] + ) + AC_MSG_RESULT(${rb_cv_coroutine}) diff --git a/package/ruby/patches/patch-configure b/package/ruby/patches/patch-configure deleted file mode 100644 index 6a6360320..000000000 --- a/package/ruby/patches/patch-configure +++ /dev/null @@ -1,16 +0,0 @@ ---- ruby-2.4.0.orig/configure 2016-12-23 17:06:46.000000000 +0100 -+++ ruby-2.4.0/configure 2017-01-30 03:08:52.351107663 +0100 -@@ -9412,6 +9412,13 @@ esac - ac_cv_func_isinf=yes - ac_cv_func_isnan=yes - ;; #( -+ linux*) : -+ LIBS="-lm $LIBS" -+ # finite(), isinf() and isnan() are macros on Linux. -+ ac_cv_func_finite=yes -+ ac_cv_func_isinf=yes -+ ac_cv_func_isnan=yes -+ ;; #( - aix*) : - LIBS="-lm $LIBS" - ac_cv_func_round=no -- cgit v1.2.3