pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/archivers/minizip-ng



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Jan 25 08:32:53 UTC 2026

Modified Files:
        pkgsrc/archivers/minizip-ng: Makefile distinfo
Added Files:
        pkgsrc/archivers/minizip-ng/patches: patch-mz__strm__os__posix.c

Log Message:
minizip-ng: updated to 4.1.0

4.1.0

Apply Clang format
align bzip and lzma streams for 64-bit platforms
Revert: Make pattern in mz_zip_reader dynamically assigned
Mark handle as unused.
doc: compression -> decompression
Updage usage of Buffered Stream
zstd: add MZ_STREAM_PROP_COMPRESS_THREADS
fix stack overrun in mz_os_utf8_string_create
harden mz_zip_writer_add_file against link following
refactor: passing reader, writer, zip instead of handle
zip_rw: validate the handle in each getter/setter
cmake: better zlib-ng / zlib handling
fix missing const at r/o buffers
Drop documents that are not freely distributable
Removing superfluous const
mz_stream_zstd_set_prop_int64: Implicit conversion loses integer precision: 'int64_t' (aka 'long long') to 'int'
Fix allocating negative size
Bump GoogleTest to 1.16
Avoid ruby codeql failure
fix 915: headers should not include there dependencies
Remove build-src-dir in Actions
Compatible with systems without symbolic links
Add workflow_dispatch to all workflows
Fix modified_date when zipping


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/archivers/minizip-ng/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/archivers/minizip-ng/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/archivers/minizip-ng/patches/patch-mz__strm__os__posix.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/archivers/minizip-ng/Makefile
diff -u pkgsrc/archivers/minizip-ng/Makefile:1.9 pkgsrc/archivers/minizip-ng/Makefile:1.10
--- pkgsrc/archivers/minizip-ng/Makefile:1.9    Mon Oct 13 00:00:59 2025
+++ pkgsrc/archivers/minizip-ng/Makefile        Sun Jan 25 08:32:53 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2025/10/13 00:00:59 mrg Exp $
+# $NetBSD: Makefile,v 1.10 2026/01/25 08:32:53 adam Exp $
 
-DISTNAME=      minizip-ng-4.0.10
+DISTNAME=      minizip-ng-4.1.0
 CATEGORIES=    archivers
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=zlib-ng/}
 GITHUB_PROJECT=        minizip-ng

Index: pkgsrc/archivers/minizip-ng/distinfo
diff -u pkgsrc/archivers/minizip-ng/distinfo:1.6 pkgsrc/archivers/minizip-ng/distinfo:1.7
--- pkgsrc/archivers/minizip-ng/distinfo:1.6    Mon May  5 08:26:10 2025
+++ pkgsrc/archivers/minizip-ng/distinfo        Sun Jan 25 08:32:53 2026
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.6 2025/05/05 08:26:10 adam Exp $
+$NetBSD: distinfo,v 1.7 2026/01/25 08:32:53 adam Exp $
 
-BLAKE2s (minizip-ng-4.0.10.tar.gz) = 62910dec9074545e69d9c8c50fab6222e57cf1d3f51540d2be0f199fb1b4e1cd
-SHA512 (minizip-ng-4.0.10.tar.gz) = a74386e2cf89f63d7fc9bf53527c8203ac78c46f2511e4883d17d949ec4e7d1b6c3707bcb13c3fc7cc4db8255b5f50ddb61bedba10e683acb18d112470676f62
-Size (minizip-ng-4.0.10.tar.gz) = 773269 bytes
+BLAKE2s (minizip-ng-4.1.0.tar.gz) = 841ec846421d9c2a3547686caca786facaf4d82d428776e68b42dc5a591c492d
+SHA512 (minizip-ng-4.1.0.tar.gz) = 9ea5dde14acd2f7d1efd0e38b11017b679d3aaabac61552f9c5f4c7f45f2563543e0fbb2d74429c6b1b9c37d8728ebc4f1cf0efad5f71807c11bb8a2a681a556
+Size (minizip-ng-4.1.0.tar.gz) = 601158 bytes
+SHA1 (patch-mz__strm__os__posix.c) = 5cf1cfbf245771bc8eb2a6ed382a5b969572f983

Added files:

Index: pkgsrc/archivers/minizip-ng/patches/patch-mz__strm__os__posix.c
diff -u /dev/null pkgsrc/archivers/minizip-ng/patches/patch-mz__strm__os__posix.c:1.1
--- /dev/null   Sun Jan 25 08:32:53 2026
+++ pkgsrc/archivers/minizip-ng/patches/patch-mz__strm__os__posix.c     Sun Jan 25 08:32:53 2026
@@ -0,0 +1,17 @@
+$NetBSD: patch-mz__strm__os__posix.c,v 1.1 2026/01/25 08:32:53 adam Exp $
+
+Fix build on BSD.
+https://github.com/zlib-ng/minizip-ng/issues/941
+
+--- mz_strm_os_posix.c.orig    2026-01-25 08:28:26.034235124 +0000
++++ mz_strm_os_posix.c
+@@ -21,6 +21,9 @@
+ #include <errno.h>
+ #include <unistd.h>  // open, close, ...
+ #include <fcntl.h>   // O_NOFOLLOW, ...
++#if defined(__FreeBSD__) || defined(__NetBSD__)
++#include <sys/stat.h>
++#endif
+ 
+ /***************************************************************************/
+ 



Home | Main Index | Thread Index | Old Index