From d35f088e41029b0015de74ddad9ac43598b3e177 Mon Sep 17 00:00:00 2001 From: David Seifert Date: Fri, 12 May 2023 11:48:34 +0200 Subject: dev-lang/ruby: drop 2.7.7, 2.7.8-r3 Signed-off-by: David Seifert --- .../files/2.7/902-hppa-pthread-stack-size.patch | 54 ---------------------- 1 file changed, 54 deletions(-) delete mode 100644 dev-lang/ruby/files/2.7/902-hppa-pthread-stack-size.patch (limited to 'dev-lang/ruby/files/2.7/902-hppa-pthread-stack-size.patch') diff --git a/dev-lang/ruby/files/2.7/902-hppa-pthread-stack-size.patch b/dev-lang/ruby/files/2.7/902-hppa-pthread-stack-size.patch deleted file mode 100644 index ae834d6e657f..000000000000 --- a/dev-lang/ruby/files/2.7/902-hppa-pthread-stack-size.patch +++ /dev/null @@ -1,54 +0,0 @@ -https://bugs.gentoo.org/701494 - -From cfac4ee59d09d72820bf220713615cf11211dad2 Mon Sep 17 00:00:00 2001 -From: Sam James -Date: Fri, 7 Apr 2023 11:46:12 +0100 -Subject: [PATCH] thread_pthread: Grow main_stack if required (fixes tests on - HPPA) - -On HPPA, test_insns.rb fails (along with various Ruby gems) with -'stack level too deep (SystemStackError)'. This turns out to be because HPPA -defaults to a small(er) stack. - -With this change, most of Ruby's test suite now passes on HPPA. - -Thanks to both Dave and Helge for the investigation and coming up with the -patch. - -Bug: https://bugs.gentoo.org/701494 -Bug: https://bugs.debian.org/881773 -Bug: https://bugs.debian.org/881772 (for PPC64) -Bug: https://github.com/rack/rack/issues/1640 -Thanks-to: John David Anglin -Thanks-to: Helge Deller -Signed-off-by: Sam James ---- a/thread_pthread.c -+++ b/thread_pthread.c -@@ -656,8 +656,22 @@ size_t pthread_get_stacksize_np(pthread_t); - # define MAINSTACKADDR_AVAILABLE 0 - # endif - #endif --#if MAINSTACKADDR_AVAILABLE && !defined(get_main_stack) --# define get_main_stack(addr, size) get_stack(addr, size) -+#if MAINSTACKADDR_AVAILABLE -+static int get_stack(void **, size_t *); -+static int -+get_main_stack(void **addr, size_t *size) -+{ -+ int ret = get_stack(addr, size); -+ -+#ifdef __hppa__ -+ /* On some architectures, the initial stack size may be too small, but fortunately, -+ it's growable. Bump it up to the minimum needed if it is too small. */ -+ if (*size < RUBY_VM_THREAD_VM_STACK_SIZE) -+ *size = RUBY_VM_THREAD_VM_STACK_SIZE; -+#endif -+ -+ return ret; -+} - #endif - - #ifdef STACKADDR_AVAILABLE --- -2.40.0 - -- cgit v1.2.3-65-gdbad