From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4b8H1t1Cl9z30Bx for ; Fri, 30 May 2025 21:49:06 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R10" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4b8H1p4n8yz2ykg for ; Fri, 30 May 2025 21:49:02 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4b8H1n4b4tz34c; Fri, 30 May 2025 21:49:01 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1748641741; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=R++RRwCHE0HRBFlKNdPSjMr4UN3d0IN/y4ClYghdmOA=; b=kmj2KWzrPiimPItHPPr7zuJAkKpd2ovnCSCGxrbNUptbr+gFDncUs9CsV4mKeHYYa/eEPx 5hGKpCa/jfatihDA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1748641741; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=R++RRwCHE0HRBFlKNdPSjMr4UN3d0IN/y4ClYghdmOA=; b=Fk7+7uEsKuq80R9nBrwKIXC5WlSh8O3czyRzyqDxOmEvHICZVIl94Nbj/vgA3fgxpQ/p5J FBE9IfhZH8nxuuQLNYbIB/D+posG5yNvluYZymt6L8voUbmSgzXWto9Ln3aLSRBrTlmpy2 J7qDWYB1O13wiOJTWVTkTxCYHXEzYY68v7sHuY2xdzEBhpRh77YAcXsxc9YMH5uLWV7G9k YfjTIk33w6UJEtUWQo2mGBtd408wm/dOsrt5CaEzovexYmqUNlI79qcaHRAbzPHfv+7qGN S/JwT2KHVdmucUujt4/k5ekI3+nEh7CDNhYdAozhX2i6GFopcAFeY4iu7jxhsg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] ruby: Change archive type from xz to gz Date: Fri, 30 May 2025 23:48:55 +0200 Message-ID: <20250530214855.4086861-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - 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 --- 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.49.0