pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-xopen



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Sep  3 08:31:12 UTC 2026

Modified Files:
        pkgsrc/devel/py-xopen: Makefile distinfo

Log Message:
py-xopen: updated to 2.1.0

v2.1.0 (2026-06-03)

Zstandard is now supported by using compression.zstd, which is part of the Python standard library since Python 3.14. On Python versions before 3.14, backports.zstd is used instead.
Zstandard support is no longer optional. That is, it is no longer necessary to install xopen with the zstd extra. The reason Zstandard was optional was that python-zstandard wheels are quite large, 
but backports.zstd wheels are much smaller.
Dropped support for Python 3.8 and 3.9
Started supporting Python 3.13 and 3.14 (including free-threaded)


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 pkgsrc/devel/py-xopen/Makefile
cvs rdiff -u -r1.29 -r1.30 pkgsrc/devel/py-xopen/distinfo

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

Modified files:

Index: pkgsrc/devel/py-xopen/Makefile
diff -u pkgsrc/devel/py-xopen/Makefile:1.35 pkgsrc/devel/py-xopen/Makefile:1.36
--- pkgsrc/devel/py-xopen/Makefile:1.35 Sun Apr 13 06:51:59 2025
+++ pkgsrc/devel/py-xopen/Makefile      Thu Sep  3 08:31:11 2026
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.35 2025/04/13 06:51:59 adam Exp $
+# $NetBSD: Makefile,v 1.36 2026/09/03 08:31:11 adam Exp $
 
-DISTNAME=      xopen-2.0.2
+DISTNAME=      xopen-2.1.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=x/xopen/}
 
@@ -13,14 +12,18 @@ LICENSE=    mit
 
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=6.2:../../devel/py-setuptools_scm
-DEPENDS+=      pbzip2-[0-9]*:../../archivers/pbzip2
-DEPENDS+=      pigz-[0-9]*:../../archivers/pigz
-DEPENDS+=      xz-[0-9]*:../../archivers/xz
+DEPENDS+=      pbzip2>=0:../../archivers/pbzip2
+DEPENDS+=      pigz>=0:../../archivers/pigz
+DEPENDS+=      xz>=0:../../archivers/xz
 DEPENDS+=      ${PYPKGPREFIX}-zlib-ng>=0.4.1:../../archivers/py-zlib-ng
-DEPENDS+=      ${PYPKGPREFIX}-zstandard-[0-9]*:../../archivers/py-zstandard
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-timeout-[0-9]*:../../devel/py-test-timeout
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-timeout>=0:../../devel/py-test-timeout
 
 USE_LANGUAGES= # none
 
+.include "../../lang/python/pyversion.mk"
+.if ${PYTHON_VERSION} < 314
+DEPENDS+=      ${PYPKGPREFIX}-backports.zstd>=0:../../archivers/py-backports.zstd
+.endif
+
 .include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-xopen/distinfo
diff -u pkgsrc/devel/py-xopen/distinfo:1.29 pkgsrc/devel/py-xopen/distinfo:1.30
--- pkgsrc/devel/py-xopen/distinfo:1.29 Thu Feb 13 13:50:00 2025
+++ pkgsrc/devel/py-xopen/distinfo      Thu Sep  3 08:31:11 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.29 2025/02/13 13:50:00 adam Exp $
+$NetBSD: distinfo,v 1.30 2026/09/03 08:31:11 adam Exp $
 
-BLAKE2s (xopen-2.0.2.tar.gz) = da8dd2f41efe362057d79a27b3144c9bd22f4404dc4ade8dce2e03387dc12850
-SHA512 (xopen-2.0.2.tar.gz) = 65e628e4a86281c6fead189a058a5e59107079ba4a74b8b45dbe6afb149644872efdbb118d74a89c1ebf643d93378c72f2c24390a4a05a2e0f4ad0f77fe0bfac
-Size (xopen-2.0.2.tar.gz) = 32224 bytes
+BLAKE2s (xopen-2.1.0.tar.gz) = db9aa0227609ff8e290500b8c9d63d9e3616e451084bae91f448e99939ee702b
+SHA512 (xopen-2.1.0.tar.gz) = 5fcedf25437e488fe40bf3b117e54470ac50db6b903252d8aaef909b56613545049f3dab52fcaac02e5ecc1454453cec930809abe316fe565da0d3e6b1e9db24
+Size (xopen-2.1.0.tar.gz) = 32424 bytes



Home | Main Index | Thread Index | Old Index