gzip: Update to 1.15
* Noteworthy changes in release 1.15 (2026-09-20) [stable]
** Bug fixes
gzip no longer can mistakenly remove the wrong file if some other
process simultaneously renames a gzip destination's ancestor.
[bug present since the beginning]
gzip -d no longer rejects PKZIP signatures, local header, and data
descriptors. These can appear in well-formed streamed zip files.
[bug present since the beginning]
gzip diagnostics now quote file names containing unusual characters.
[bug present since the beginning]
A use of uninitialized memory on some malformed inputs has been fixed.
[bug present since the beginning]
[44 lines not shown]
Miniz is a lossless, high performance data compression library in
a single source file that implements the zlib (RFC 1950) and Deflate
(RFC 1951) compressed data format specification standards. It
supports the most commonly used functions exported by the zlib
library, but is a completely independent implementation so zlib's
licensing requirements do not apply. Miniz also contains simple to
use functions for writing .PNG format image files and
reading/writing/appending .ZIP format archives. Miniz's compression
speed has been tuned to be comparable to zlib's, and it also has
a specialized real-time compressor function designed to compare
well against fastlz/minilzo.
doctest is a new C++ testing framework but is by far the fastest
both in compile times (by orders of magnitude) and runtime compared
to other feature-rich alternatives. It brings the ability of compiled
languages such as D / Rust / Nim to have tests written directly in
the production code thanks to a fast, transparent and flexible test
runner with a clean interface.
textproc: Import harper-2.11.0 as textproc/harper
Harper is an English grammar checker designed to be just right.
I created it after years of dealing with the shortcomings of the
competition.
mips: tag all the stub functions as __noubsan
When built with UBSAN the stub functions change to the point that the
mips_fixup_addr code doesn't understand the instructions involved.
Apply __nousbsan to avoid this.
PR//60779: Kernel complains about unexpected mips insn on boot...