Path to this page:
Subject: CVS commit: pkgsrc/archivers/hs-zip-archive
From: Masatake Daimon
Date: 2024-04-29 06:04:12
Message id: 20240429040412.B7D48FA2C@cvs.NetBSD.org
Log Message:
archivers/hs-zip-archive: Update to 0.4.3.2
zip-archive 0.4.3.2
* readEntry: Fix computation of modification time (#67).
It should be a UNIX time (seconds since UNIX epoch), but
computed relative to the local time zone, not UTC.
zip-archive 0.4.3.1
* Use streaming decompress to identify extent of compressed data (#66).
This fixes a problem that arises for local files with bit 3
of the general purpose bit flag set. In this case, we don't
get information up front about the size of the compressed
data. So how do we know where the compressed data ends?
Previously, we tried to determine this by looking for the
signature of the data descriptor. But the data descriptor doesn't
always HAVE a signature, and it is also possible for signatures to
occur accidentally in the compressed data itself (#65).
Instead, we now use the streaming decompression interface from
zlib's Internal module to identify where the compressed data
ends. Fixes both #65 and #25.
Files: