From 90efa0bd3645699224c2ccad6a83e9b9cbd87759 Mon Sep 17 00:00:00 2001 From: Adolf Belka Date: Fri, 30 May 2025 23:48:55 +0200 Subject: [PATCH] ruby: Change archive type from xz to gz - The gz archive has an sha256 sum for comparison. Th xz archive has nothing. - Changed the source location to the one with gz file and sha256sum. Signed-off-by: Adolf Belka Signed-off-by: Michael Tremer --- lfs/ruby | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/ruby b/lfs/ruby index 7175a1792..cb1b1c74b 100644 --- a/lfs/ruby +++ b/lfs/ruby @@ -27,12 +27,12 @@ include Config VER = 3.4.4 THISAPP = ruby-$(VER) -DL_FILE = $(THISAPP).tar.xz +DL_FILE = $(THISAPP).tar.gz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) -# https://mirror.cyberbits.eu/ruby/ +# https://www.ruby-lang.org/en/downloads/ CFLAGS += -DRUBY_FUNCTION_NAME_STRING=__FUNCTION__ -- 2.39.5