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 4b8bvZ4vg9z30Gr for ; Sat, 31 May 2025 10:29:46 +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 4b8bvZ4npWz2yHY for ; Sat, 31 May 2025 10:29:46 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [172.28.1.161]) (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 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "people01.haj.ipfire.org", Issuer "E6" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4b8bvZ2SzHz62 for ; Sat, 31 May 2025 10:29:46 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1748687386; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=KV59s/t4aZVUYdGKbo0TuOZoQcCDY2/NEpYEngNjLqk=; b=LITTRjugGbml966bcG9cEgQWp5EcElsGyYSZwegDe0XbADms7sofVK72y7V1g3F7P9i/di SIH27k7oPVCLC0Dg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1748687386; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=KV59s/t4aZVUYdGKbo0TuOZoQcCDY2/NEpYEngNjLqk=; b=VSthFCLeGZTxSjB86vQH9lCJWCkOcHM7bSBp3JV55eT0PuXNFahe8UjaeGMgQcKrpUeUJT 7JdooXaLKWwCtMUpAbhAw0rxxhY8JatPAzkhr2kaY7hwhKHFvICgyOvmVTj5uc4IyWJ/UG NReGuXm0eBSyTcYcrZfOIhG8I0yR9vw9A53fE5NChLEJrS4reSyJlGm/hN2QomAUCJI8wb cEhQyQWzvOnBrRF6ypTq2xBeTLSDfYbDjYhjviEsXVnxlLo7IRXczsD0ab2YwnTkJg4yPC ZsWPne6mBZ7Ei+elKQIxuBTH7z7YUcGphrKxlYYq/1ZRTeV/VPrH3Apzilf2yA== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4b8bvY6db1z2xcq; Sat, 31 May 2025 10:29:45 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 90efa0bd3645699224c2ccad6a83e9b9cbd87759 X-Git-Refname: refs/heads/next X-Git-Reftype: branch X-Git-Oldrev: 151616b2809972dd77e56c361cd3516242422677 X-Git-Newrev: 90efa0bd3645699224c2ccad6a83e9b9cbd87759 Message-Id: <4b8bvY6db1z2xcq@people01.haj.ipfire.org> Date: Sat, 31 May 2025 10:29:45 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via 90efa0bd3645699224c2ccad6a83e9b9cbd87759 (commit) from 151616b2809972dd77e56c361cd3516242422677 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 90efa0bd3645699224c2ccad6a83e9b9cbd87759 Author: Adolf Belka Date: Fri May 30 23:48:55 2025 +0200 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 ----------------------------------------------------------------------- Summary of changes: lfs/ruby | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Difference in files: 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__ hooks/post-receive -- IPFire 2.x development tree