pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/archivers/py-zstandard py-zstandard: updated to 0.18.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0e9d54250e5f
branches:  trunk
changeset: 381210:0e9d54250e5f
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Jul 02 09:13:24 2022 +0000

description:
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.

diffstat:

 archivers/py-zstandard/Makefile                         |   4 ++--
 archivers/py-zstandard/distinfo                         |  10 +++++-----
 archivers/py-zstandard/patches/patch-c-ext_backend__c.c |   4 ++--
 3 files changed, 9 insertions(+), 9 deletions(-)

diffs (45 lines):

diff -r 34caa88e7684 -r 0e9d54250e5f archivers/py-zstandard/Makefile
--- a/archivers/py-zstandard/Makefile   Sat Jul 02 09:10:39 2022 +0000
+++ b/archivers/py-zstandard/Makefile   Sat Jul 02 09:13:24 2022 +0000
@@ -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/}
diff -r 34caa88e7684 -r 0e9d54250e5f archivers/py-zstandard/distinfo
--- a/archivers/py-zstandard/distinfo   Sat Jul 02 09:10:39 2022 +0000
+++ b/archivers/py-zstandard/distinfo   Sat Jul 02 09:13:24 2022 +0000
@@ -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
diff -r 34caa88e7684 -r 0e9d54250e5f archivers/py-zstandard/patches/patch-c-ext_backend__c.c
--- a/archivers/py-zstandard/patches/patch-c-ext_backend__c.c   Sat Jul 02 09:10:39 2022 +0000
+++ b/archivers/py-zstandard/patches/patch-c-ext_backend__c.c   Sat Jul 02 09:13:24 2022 +0000
@@ -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 @@
      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