pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/archivers/py-zstandard
Module Name: pkgsrc
Committed By: adam
Date: Tue Feb 21 06:35:49 UTC 2023
Modified Files:
pkgsrc/archivers/py-zstandard: Makefile distinfo
pkgsrc/archivers/py-zstandard/patches: patch-c-ext_backend__c.c
Log Message:
py-zstandard: updated to 0.20.0
0.20.0
Backwards Compatibility Notes
This will likely be the last release officially supporting Python 3.6.
Python 3.6 is end of life as of 2021-12-23.
Changes
Bundled zstd library upgraded from 1.5.2 to 1.5.4.
Use of the deprecated ZSTD_copyDCtx() was removed from the C and
Rust backends.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 pkgsrc/archivers/py-zstandard/Makefile \
pkgsrc/archivers/py-zstandard/distinfo
cvs rdiff -u -r1.4 -r1.5 \
pkgsrc/archivers/py-zstandard/patches/patch-c-ext_backend__c.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/py-zstandard/Makefile
diff -u pkgsrc/archivers/py-zstandard/Makefile:1.24 pkgsrc/archivers/py-zstandard/Makefile:1.25
--- pkgsrc/archivers/py-zstandard/Makefile:1.24 Mon Oct 31 21:40:23 2022
+++ pkgsrc/archivers/py-zstandard/Makefile Tue Feb 21 06:35:49 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.24 2022/10/31 21:40:23 adam Exp $
+# $NetBSD: Makefile,v 1.25 2023/02/21 06:35:49 adam Exp $
-DISTNAME= zstandard-0.19.0
+DISTNAME= zstandard-0.20.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= archivers python
MASTER_SITES= ${MASTER_SITE_PYPI:=z/zstandard/}
Index: pkgsrc/archivers/py-zstandard/distinfo
diff -u pkgsrc/archivers/py-zstandard/distinfo:1.24 pkgsrc/archivers/py-zstandard/distinfo:1.25
--- pkgsrc/archivers/py-zstandard/distinfo:1.24 Mon Oct 31 21:40:23 2022
+++ pkgsrc/archivers/py-zstandard/distinfo Tue Feb 21 06:35:49 2023
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.24 2022/10/31 21:40:23 adam Exp $
+$NetBSD: distinfo,v 1.25 2023/02/21 06:35:49 adam Exp $
-BLAKE2s (zstandard-0.19.0.tar.gz) = a0aa39b4ba482e9649b168f332651a7576af0cde7bacbfb9f3b5886341288e8c
-SHA512 (zstandard-0.19.0.tar.gz) = 6350dc0bd4f1431cf4dbc951c3f7f1a4190938aff6c0ebc4f14d7a7ca82f2f47e201c73d80cd25bf476fc8760ddc99d6aa7dd3353086faedece4aa96608b6ef9
-Size (zstandard-0.19.0.tar.gz) = 633245 bytes
-SHA1 (patch-c-ext_backend__c.c) = 56779ce7c8388f70916c1550062942e976f7c8c4
+BLAKE2s (zstandard-0.20.0.tar.gz) = 6b9f34de561a54916b417244468fcab7154bf21e5fc89dbaef860b323a7c6a72
+SHA512 (zstandard-0.20.0.tar.gz) = 50623300eb6d91fa51311625541647c09b2063f45f0dd507e31e02fc6ce055b3bc5c00730fabf6c1418dbbf1682859573ca45908129215c4b504cbe4fc865756
+Size (zstandard-0.20.0.tar.gz) = 658909 bytes
+SHA1 (patch-c-ext_backend__c.c) = 4bb5f403395a5fe6c30934dbdee0cf975ad2942a
Index: pkgsrc/archivers/py-zstandard/patches/patch-c-ext_backend__c.c
diff -u pkgsrc/archivers/py-zstandard/patches/patch-c-ext_backend__c.c:1.4 pkgsrc/archivers/py-zstandard/patches/patch-c-ext_backend__c.c:1.5
--- pkgsrc/archivers/py-zstandard/patches/patch-c-ext_backend__c.c:1.4 Sat Jul 2 09:13:24 2022
+++ pkgsrc/archivers/py-zstandard/patches/patch-c-ext_backend__c.c Tue Feb 21 06:35:49 2023
@@ -1,4 +1,4 @@
-$NetBSD: patch-c-ext_backend__c.c,v 1.4 2022/07/02 09:13:24 adam Exp $
+$NetBSD: patch-c-ext_backend__c.c,v 1.5 2023/02/21 06:35:49 adam Exp $
Do not use hardcoded version number.
@@ -8,7 +8,7 @@ Do not use hardcoded version number.
PyObject *features = NULL;
PyObject *feature = NULL;
unsigned zstd_ver_no = ZSTD_versionNumber();
-- unsigned our_hardcoded_version = 10502;
+- unsigned our_hardcoded_version = 10504;
- if (ZSTD_VERSION_NUMBER != our_hardcoded_version ||
- zstd_ver_no != our_hardcoded_version) {
+ if (ZSTD_VERSION_NUMBER != zstd_ver_no) {
Home |
Main Index |
Thread Index |
Old Index