From dae7bbfe6cdbfbc146279f5b8332fe50c7c9b451 Mon Sep 17 00:00:00 2001 From: Luiz Angelo Daros de Luca Date: Mon, 23 Mar 2026 22:19:13 -0300 Subject: [PATCH] ruby: update to 4.0.2 ruby 4.0.2 is a routine update that includes a bugfix in YJIT for NoMethodError on Puma, along with other bugfixes. ruby 4.0.1 includes a bugfix for spurious wakeup from Kernel#sleep when subprocess exits in another thread, along with other bugfixes. Link: https://www.ruby-lang.org/en/news/2026/03/16/ruby-4-0-2-released/ Changelog: https://github.com/ruby/ruby/releases/tag/v4.0.2 Link: https://www.ruby-lang.org/en/news/2026/01/13/ruby-4-0-1-released/ Changelog: https://github.com/ruby/ruby/releases/tag/v4.0.1 Signed-off-by: Luiz Angelo Daros de Luca --- lang/ruby/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/ruby/Makefile b/lang/ruby/Makefile index 3d56cf085f..8b47f3de6e 100644 --- a/lang/ruby/Makefile +++ b/lang/ruby/Makefile @@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ruby -PKG_VERSION:=4.0.0 +PKG_VERSION:=4.0.2 PKG_RELEASE:=1 # First two numbes @@ -19,7 +19,7 @@ PKG_ABI_VERSION:=$(subst $(space),.,$(wordlist 1, 2, $(subst .,$(space),$(PKG_VE PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://cache.ruby-lang.org/pub/ruby/$(PKG_ABI_VERSION)/ -PKG_HASH:=2e8389c8c072cb658c93a1372732d9eac84082c88b065750db1e52a5ac630271 +PKG_HASH:=51502b26b50b68df4963336ca41e368cde92c928faf91654de4c4c1791f82aac PKG_MAINTAINER:=Luiz Angelo Daros de Luca PKG_LICENSE:=BSD-2-Clause PKG_LICENSE_FILES:=COPYING LICENSE LICENSE.txt BSDL