IABSD.fr/ports/lang/mawk

Branch :


Log

Author Commit Date CI Message
3064c1f0 2025-02-02 19:00:32 Update to mawk-1.3.4.20250131
2a6c94f1 2024-11-06 09:52:28 Update to mawk-1.3.4.20240905
1da58cb5 2024-11-04 11:06:41 Explain why we tell mawk not to seed the PRNG by default
9e8240a3 2024-11-04 11:04:46 Fix up srand(value) and make its outcome deterministic Upstream decided to avoid using arc4random() for random numbers, noting that is wasn't possible to get a deterministic output by using awk's srand(value). But on our system, all of the C srandom / srand etc functions will ignore their argument. You need to call srandom_deterministic / srand_deterministic instead. So: - use srandom_deterministic() to implement mawk's srand(value) and get reproducible output where useful. - stop mawk from initializing the PRNG at startup, so that it can benefit from our default initialization which is stronger than mawk's seeding with Unix epoch. This brings mawk in line with base awk(1) and still respects POSIX.
2fe2bfbc 2024-11-04 10:28:03 Update to mawk-1.3.4-20240827
74a36b15 2024-06-23 20:17:23 Bugfix update to mawk-1.3.4-20240622
3e6c5ce3 2024-01-26 20:46:14 Update to mawk-1.3.4-20240123
17c916ab 2023-11-29 22:11:18 Update to mawk-1.3.4.20231126
ee09ce84 2023-11-03 13:25:34 update to mawk-1.3.4.20231102, fixes segfault seen with files of >256K in a pipeline. ok jca@
51acb673 2023-09-26 12:02:00 MASTER_SITES->SITES (apart from modules)