From cd8797798438587b25ba0d7f92a1da4be46d0a9b Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Sat, 26 Apr 2025 04:26:26 +0100 Subject: [PATCH] gawk: update to version 5.3.2 Changes from 5.3.1 to 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. Changes from 5.3.0 to 5.3.1 --------------------------- 1. More subtle issues related to uninitialized array elements have been fixed. 2. A number of bugs in the debugger related to handling of arrays have been fixed. 3. Some subtle bugs in the API have been fixed. 4. Use of MPFR is now possible again on 32-bit Power PC Mac systems. 5. Race conditions around broken pipes for system() and read and write pipes should now be closed off. 6. Support for OSF/1 has been removed. 7. The never-documented --nostalgia option has been removed. It was causing bug reports. 8. The implementation of printf/sprintf has been thoroughly reworked in order to make the code more maintainable and to fix a goodly number of corner cases. 9. As usual, there have been several minor code cleanups and bug fixes. See the ChangeLog for details. Signed-off-by: Daniel Golle --- utils/gawk/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/gawk/Makefile b/utils/gawk/Makefile index a2cef3d5f6..7900659e1f 100644 --- a/utils/gawk/Makefile +++ b/utils/gawk/Makefile @@ -5,12 +5,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gawk -PKG_VERSION:=5.3.0 -PKG_RELEASE:=2 +PKG_VERSION:=5.3.2 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNU/gawk -PKG_HASH:=ca9c16d3d11d0ff8c69d79dc0b47267e1329a69b39b799895604ed447d3ca90b +PKG_HASH:=f8c3486509de705192138b00ef2c00bbbdd0e84c30d5c07d23fc73a9dc4cc9cc PKG_MAINTAINER:=Daniel Golle PKG_LICENSE:=GPL-3.0-or-later