From patchwork Sun May 4 13:17:05 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 8694 Return-Path: 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 web04.haj.ipfire.org (Postfix) with ESMTPS id 4Zr4vT2hT2z3x4T for ; Sun, 4 May 2025 13:17:25 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "E5" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4Zr4vM6SMzz6Vb for ; Sun, 4 May 2025 13:17:19 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4Zr4vM3ZjLz33j5 for ; Sun, 4 May 2025 13:17:19 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 4Zr4vJ42thz33B8 for ; Sun, 4 May 2025 13:17:16 +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 4Zr4vJ0HwBz34K; Sun, 4 May 2025 13:17:16 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1746364636; 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: in-reply-to:in-reply-to:references:references; bh=0/w3KWYEe+bTCjC2958F448mosJkggZy2IatVAlL+Vw=; b=hSE+abNbO60zcSAnetNi+md51LQJe11UIxloTR3aU8sRxC6gXa8PuWzH9xrX0YHddB6KnN CZKqB+9OZaOhZlBg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1746364636; 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: in-reply-to:in-reply-to:references:references; bh=0/w3KWYEe+bTCjC2958F448mosJkggZy2IatVAlL+Vw=; b=rRhzWyg7qTAjCy1G2G5jyI54/HumPMm8shoml5hksIjX0iHOtcLKfk1d3HWSgjv0s4XPl1 37YQcuJJ055u8dxAja+Sp7uDbSYrUe/ifDyTUAW3I3FlUklHE4GPY/anikIqs5nnb+1hJS rLk8xwn3aviNAWh+OdhNjO8W7CHH7GOEJlDaTjUVtLQwb/tSHwjcb1JSI0jexSeDXDN+7t dsixLfIHgZ9gM78cvVWHmd3EkvxW6qRTl4G5tYwwEoEQ4e21ztnyyu1TJovcRucbEMWhUz xAvnHQLyxxqXNkCcNuvpbPDHx4/CfP8GVpmANDhm+xcmUIeA3f64lvd0NnJLFA== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] gawk: Update to version 5.3.2 Date: Sun, 4 May 2025 15:17:05 +0200 Message-ID: <20250504131711.3311134-2-adolf.belka@ipfire.org> In-Reply-To: <20250504131711.3311134-1-adolf.belka@ipfire.org> References: <20250504131711.3311134-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 - Update from version 5.3.1 to 5.3.2 - Update of rootfile - Changelog 5.3.2 1. The pretty printer now produces fewer spurious newlines; at the outermost level it now adds newlines between block comments and the block or function that follows them. The extra final newline is no longer produced. 2. OpenVMS 9.2-2 x86_64 is now supported. 3. On Linux and macos systems, the -no-pie linker flag is no longer required. PMA now works on macos systems with Apple silicon, and not just Intel systems. 4. Still more subtle issues related to uninitialized array elements have been fixed. 5. Associative arrays should now not grow quite as fast as they used to. 6. The code and documentation are now consistent with each other with respect to path searching and adding .awk to the filename. Both are always done, even with --posix and --traditional. 7. As usual, there have been several minor code cleanups and bug fixes. See the ChangeLog for details. Signed-off-by: Adolf Belka --- config/rootfiles/common/gawk | 2 +- lfs/gawk | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/rootfiles/common/gawk b/config/rootfiles/common/gawk index 5cb380ec8..2d4b162e7 100644 --- a/config/rootfiles/common/gawk +++ b/config/rootfiles/common/gawk @@ -1,6 +1,6 @@ usr/bin/awk usr/bin/gawk -usr/bin/gawk-5.3.1 +usr/bin/gawk-5.3.2 usr/bin/gawkbug usr/etc/profile.d usr/etc/profile.d/gawk.csh diff --git a/lfs/gawk b/lfs/gawk index a3671882f..bd61298bb 100644 --- a/lfs/gawk +++ b/lfs/gawk @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team # +# Copyright (C) 2007-2025 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -25,7 +25,7 @@ include Config -VER = 5.3.1 +VER = 5.3.2 THISAPP = gawk-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -49,7 +49,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = be9132324344c0b052e954e004a942ff7c6b14b86b73cda491d7a33485f60341be4d8da1a06d1d7a27445b9b39a528bcce3eee9c2a3f8756de21bdc57a33f54d +$(DL_FILE)_BLAKE2 = 8536777bb45c63d737ef08b3f1b98285cb29ec54400e35b2139c2bc66b464e3ec4950274614d95d94dc7eae18c57333b7c30a44d993855258155fc82b749042a install : $(TARGET)