<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/utils/gawk/Makefile, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git-03.infra.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/'/>
<updated>2025-04-26T14:26:51Z</updated>
<entry>
<title>gawk: update to version 5.3.2</title>
<updated>2025-04-26T14:26:51Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2025-04-26T03:26:26Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=cd8797798438587b25ba0d7f92a1da4be46d0a9b'/>
<id>urn:sha1:cd8797798438587b25ba0d7f92a1da4be46d0a9b</id>
<content type='text'>
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 &lt;daniel@makrotopia.org&gt;
</content>
</entry>
<entry>
<title>gawk: set gawk as an alternative to awk</title>
<updated>2024-08-03T18:51:02Z</updated>
<author>
<name>Christian Svensson</name>
</author>
<published>2024-08-03T15:41:01Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=2664e85a640244e6792df5b9c4edfc69669edf19'/>
<id>urn:sha1:2664e85a640244e6792df5b9c4edfc69669edf19</id>
<content type='text'>
This makes it possible to build without busybox awk.

Signed-off-by: Christian Svensson &lt;blue@cmd.nu&gt;
</content>
</entry>
<entry>
<title>gawk: update to 5.3.0</title>
<updated>2024-02-11T22:14:59Z</updated>
<author>
<name>krant</name>
</author>
<published>2024-02-11T21:13:17Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=71daa758d94a5c4da1b0442f4bca361864086d37'/>
<id>urn:sha1:71daa758d94a5c4da1b0442f4bca361864086d37</id>
<content type='text'>
Signed-off-by: krant &lt;aleksey.vasilenko@gmail.com&gt;
</content>
</entry>
<entry>
<title>gawk: disable mpfr detection</title>
<updated>2023-06-06T16:51:12Z</updated>
<author>
<name>Tianling Shen</name>
</author>
<published>2023-06-01T08:05:11Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=3d9b6df7d8f4ee52721bbd0693795367d987eb7d'/>
<id>urn:sha1:3d9b6df7d8f4ee52721bbd0693795367d987eb7d</id>
<content type='text'>
Disable mpfr detection to fix a build error due to (unncessary)
missing dependency:

```
Package gawk is missing dependencies for the following libraries:
libgmp.so.10
libmpfr.so.6
```

Signed-off-by: Tianling Shen &lt;cnsztl@immortalwrt.org&gt;
</content>
</entry>
<entry>
<title>gawk: update to version 5.2.1</title>
<updated>2022-12-20T01:44:21Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2022-12-19T21:39:38Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=cd62b2332b5d3c891afe950c6c6db5c32334121d'/>
<id>urn:sha1:cd62b2332b5d3c891afe950c6c6db5c32334121d</id>
<content type='text'>
Changes from 5.2.0 to 5.2.1
---------------------------

1. Infrastructure upgrades: PMA version Avon 8.

2. Issues related to the sign of NaN and Inf values on RiscV have
   been fixed; gawk now gives identical results on that platform as
   it does on others.

3. A few issues with the debugger have been fixed.

4. More subtle issues with untyped array elements being passed to
   functions have been fixed.

5. The rwarray extension's readall() function has had some bugs fixed.

6. The PMA allocator is now supported on FreeBSD, OpenBSD and Linux on S/390x.
   Is is now supported also on both Intel and M1 macOS systems.

7. There have been several minor code cleanups and bug fixes. See the
   ChangeLog for details.

Signed-off-by: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
<entry>
<title>gawk: update to version 5.2.0</title>
<updated>2022-10-07T01:11:44Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2022-10-06T15:27:31Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=cd20631bc7db1faf7b543656a265734adad0a6e2'/>
<id>urn:sha1:cd20631bc7db1faf7b543656a265734adad0a6e2</id>
<content type='text'>
For changes see ChangeLog file[1].

[1]: https://git.savannah.gnu.org/cgit/gawk.git/plain/ChangeLog?h=gawk-5.2.0
Signed-off-by: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
<entry>
<title>gawk: update to version 5.1.1</title>
<updated>2021-11-15T02:16:31Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2021-11-15T00:20:58Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=be6099fb7e0cfdacec28cb79b8763b2b73a67803'/>
<id>urn:sha1:be6099fb7e0cfdacec28cb79b8763b2b73a67803</id>
<content type='text'>
Signed-off-by: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
<entry>
<title>gawk: update to version 5.1.0</title>
<updated>2020-06-07T17:19:18Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2020-06-07T17:17:43Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=a9bb4534c9b40d827f625b202e8e91da58bb7fdf'/>
<id>urn:sha1:a9bb4534c9b40d827f625b202e8e91da58bb7fdf</id>
<content type='text'>
Signed-off-by: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
<entry>
<title>gawk: Update to 5.0.1</title>
<updated>2019-11-01T01:09:18Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2019-11-01T01:09:18Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=69a51b6adf191569f7787118275fbb56ce359936'/>
<id>urn:sha1:69a51b6adf191569f7787118275fbb56ce359936</id>
<content type='text'>
Fixed license information.

Small Makefile rearangements for consistency.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>gawk: update to version 5.0.0</title>
<updated>2019-05-10T21:40:36Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2019-05-10T21:40:21Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=8199a4b8ab3105d51c8b6267b59947bf5d3b8d41'/>
<id>urn:sha1:8199a4b8ab3105d51c8b6267b59947bf5d3b8d41</id>
<content type='text'>
Signed-off-by: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
</feed>
