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:           Sat Jul  2 09:13:24 UTC 2022

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.18.0

0.18.0
Bundled zstd library upgraded from 1.5.1 to 1.5.2.
ZstdDecompressionObj now has an unused_data attribute. It will contain data beyond the fully decoded zstd frame data if said data exists.
ZstdDecompressionObj now has an unconsumed_tail attribute. This attribute currently always returns the empty bytes value (b"").
ZstdDecompressionObj now has an eof attribute returning whether the compressed data has been fully read.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/archivers/py-zstandard/Makefile \
    pkgsrc/archivers/py-zstandard/distinfo
cvs rdiff -u -r1.3 -r1.4 \
    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.22 pkgsrc/archivers/py-zstandard/Makefile:1.23
--- pkgsrc/archivers/py-zstandard/Makefile:1.22 Wed Jan 19 06:04:35 2022
+++ pkgsrc/archivers/py-zstandard/Makefile      Sat Jul  2 09:13:24 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2022/01/19 06:04:35 adam Exp $
+# $NetBSD: Makefile,v 1.23 2022/07/02 09:13:24 adam Exp $
 
-DISTNAME=      zstandard-0.17.0
+DISTNAME=      zstandard-0.18.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.22 pkgsrc/archivers/py-zstandard/distinfo:1.23
--- pkgsrc/archivers/py-zstandard/distinfo:1.22 Wed Jan 19 06:04:35 2022
+++ pkgsrc/archivers/py-zstandard/distinfo      Sat Jul  2 09:13:24 2022
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.22 2022/01/19 06:04:35 adam Exp $
+$NetBSD: distinfo,v 1.23 2022/07/02 09:13:24 adam Exp $
 
-BLAKE2s (zstandard-0.17.0.tar.gz) = 2de7fb51d6844b307bbff7e1f46369ad781b68cf454e73104f641a68cdcc6e82
-SHA512 (zstandard-0.17.0.tar.gz) = 312aa02c7309fac64cf70ca901942118d4b3f12f27d20cc18dcaba5ce155ad81ea8d7657501a33a5fb6cdc8bcca11f91141ea9d6c3fc09c28a84d698b9050391
-Size (zstandard-0.17.0.tar.gz) = 629456 bytes
-SHA1 (patch-c-ext_backend__c.c) = e66030166a04c355b941e0d524af59882ec70bb4
+BLAKE2s (zstandard-0.18.0.tar.gz) = ada018d33df493d851f50efcf1e6194edbc1c3ff2a715a92ae4e49004de7f1b4
+SHA512 (zstandard-0.18.0.tar.gz) = 62b21a20b39b0ce3e247f1df91208c41cdcdda9006261c6cad4683586a14f7d45d4a9c764246666418d5cf44d6028c086be712ab72db95bb6cf3da019eb32e91
+Size (zstandard-0.18.0.tar.gz) = 631544 bytes
+SHA1 (patch-c-ext_backend__c.c) = 56779ce7c8388f70916c1550062942e976f7c8c4

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.3 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.3  Wed Jan 19 06:04:35 2022
+++ pkgsrc/archivers/py-zstandard/patches/patch-c-ext_backend__c.c      Sat Jul  2 09:13:24 2022
@@ -1,4 +1,4 @@
-$NetBSD: patch-c-ext_backend__c.c,v 1.3 2022/01/19 06:04:35 adam Exp $
+$NetBSD: patch-c-ext_backend__c.c,v 1.4 2022/07/02 09:13:24 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 = 10501;
+-    unsigned our_hardcoded_version = 10502;
 -    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