head 1.3; access; symbols pkgsrc-2026Q1:1.3.0.4 pkgsrc-2026Q1-base:1.3 pkgsrc-2025Q4:1.3.0.2 pkgsrc-2025Q4-base:1.3 pkgsrc-2025Q3:1.2.0.4 pkgsrc-2025Q3-base:1.2 pkgsrc-2025Q2:1.2.0.2 pkgsrc-2025Q2-base:1.2 pkgsrc-2025Q1:1.1.0.2 pkgsrc-2025Q1-base:1.1; locks; strict; comment @# @; 1.3 date 2025.10.07.09.02.53; author adam; state Exp; branches; next 1.2; commitid RkzV3EYhuxyMiCdG; 1.2 date 2025.04.13.08.06.23; author adam; state Exp; branches; next 1.1; commitid 1KPxoziZCPpdGRQF; 1.1 date 2025.02.13.13.10.20; author adam; state Exp; branches; next ; commitid IMDdCH08a9w1gjJF; desc @@ 1.3 log @py-zlib-ng: updated to 1.0.0 1.0.0 The library has been running without issues as a dependency in quite a few projects and is now stable enough for the first major version. + Updated bundled zlib-ng to 2.2.5. + Python 3.14 is supported. + Python 3.8 and 3.9 are no longer supported. + Fix an issue where flushing using igzip_threaded caused a gzip end of stream and started a new gzip stream. In essence creating a concatenated gzip stream. Now it is in concordance with how single threaded gzip streams are flushed using Z_SYNC_FLUSH. + Switched to setuptools-scm for building the package rather than versioningit. + Test files are added to the source distribution. + Fix an issue where some tests failed because they ignored PYTHONPATH. @ text @# $NetBSD: Makefile,v 1.2 2025/04/13 08:06:23 adam Exp $ DISTNAME= zlib_ng-1.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} CATEGORIES= archivers python MASTER_SITES= ${MASTER_SITE_PYPI:=z/zlib-ng/} MAINTAINER= pkgsrc-users@@NetBSD.org HOMEPAGE= https://github.com/pycompression/python-zlib-ng COMMENT= Drop-in replacement for zlib and gzip modules using zlib-ng LICENSE= python-software-foundation TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=8:../../devel/py-setuptools_scm MAKE_ENV+= PYTHON_ZLIB_NG_LINK_DYNAMIC=1 .include "../../archivers/zlib-ng/buildlink3.mk" .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" @ 1.2 log @Fix PLIST after py-setuptools update; bump depends and revision @ text @d1 1 a1 1 # $NetBSD: Makefile,v 1.1 2025/02/13 13:10:20 adam Exp $ d3 1 a3 1 DISTNAME= zlib_ng-0.5.1 a4 1 PKGREVISION= 1 d14 1 a14 1 TOOL_DEPENDS+= ${PYPKGPREFIX}-versioningit>=1.1.0:../../devel/py-versioningit @ 1.1 log @py-zlib-ng: added version 0.5.1 Faster zlib and gzip compatible compression and decompression by providing Python bindings for the zlib-ng library. This package provides Python bindings for the zlib-ng library. python-zlib-ng provides the bindings by offering three modules: * zlib_ng: A drop-in replacement for the zlib module that uses zlib-ng to accelerate its performance. * gzip_ng: A drop-in replacement for the gzip module that uses zlib_ng instead of zlib to perform its compression and checksum tasks, which improves performance. * gzip_ng_threaded offers an open function which returns buffered read or write streams that can be used to read and write large files while escaping the GIL using one or multiple threads. This functionality only works for streaming, seeking is not supported. @ text @d1 1 a1 1 # $NetBSD$ d5 1 d14 1 a14 1 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=64:../../devel/py-setuptools @