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: Thu Sep 19 16:50:58 UTC 2019
Modified Files:
pkgsrc/archivers/py-zstandard: Makefile distinfo
pkgsrc/archivers/py-zstandard/patches: patch-zstd.c
Removed Files:
pkgsrc/archivers/py-zstandard/patches: patch-c-ext_compressionparams.c
patch-zstandard_cffi.py patch-zstd_compress_zstd__compress.c
Log Message:
py-zstandard: updated to 0.12.0
0.12.0:
Backwards Compatibility Notes
* Support for Python 3.4 has been dropped since Python 3.4 is no longer
a supported Python version upstream. (But it will likely continue to
work until Python 2.7 support is dropped and we port to Python 3.5+
APIs.)
Bug Fixes
* Fix ``ZstdDecompressor.__init__`` on 64-bit big-endian systems.
* Fix memory leak in ``ZstdDecompressionReader.seek()``.
Changes
* CI transitioned to Azure Pipelines (from AppVeyor and Travis CI).
* Switched to ``pytest`` for running tests (from ``nose``).
* Bundled zstandard library upgraded from 1.3.8 to 1.4.3.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/archivers/py-zstandard/Makefile \
pkgsrc/archivers/py-zstandard/distinfo
cvs rdiff -u -r1.1 -r0 \
pkgsrc/archivers/py-zstandard/patches/patch-c-ext_compressionparams.c \
pkgsrc/archivers/py-zstandard/patches/patch-zstandard_cffi.py \
pkgsrc/archivers/py-zstandard/patches/patch-zstd_compress_zstd__compress.c
cvs rdiff -u -r1.2 -r1.3 pkgsrc/archivers/py-zstandard/patches/patch-zstd.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.11 pkgsrc/archivers/py-zstandard/Makefile:1.12
--- pkgsrc/archivers/py-zstandard/Makefile:1.11 Wed May 15 09:09:49 2019
+++ pkgsrc/archivers/py-zstandard/Makefile Thu Sep 19 16:50:57 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2019/05/15 09:09:49 adam Exp $
+# $NetBSD: Makefile,v 1.12 2019/09/19 16:50:57 adam Exp $
-DISTNAME= zstandard-0.11.1
+DISTNAME= zstandard-0.12.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.11 pkgsrc/archivers/py-zstandard/distinfo:1.12
--- pkgsrc/archivers/py-zstandard/distinfo:1.11 Wed May 15 09:09:49 2019
+++ pkgsrc/archivers/py-zstandard/distinfo Thu Sep 19 16:50:57 2019
@@ -1,10 +1,7 @@
-$NetBSD: distinfo,v 1.11 2019/05/15 09:09:49 adam Exp $
+$NetBSD: distinfo,v 1.12 2019/09/19 16:50:57 adam Exp $
-SHA1 (zstandard-0.11.1.tar.gz) = 8e292694c584566754370c04444f8636abe71406
-RMD160 (zstandard-0.11.1.tar.gz) = 52dda103a4e290f5719cab8e363876f446dd2b4a
-SHA512 (zstandard-0.11.1.tar.gz) = 78cdc5e839ed97cdeb67a4790dddde0b45fe70cef85d96a48688a0daebbf15dfcd74891222a63b1ae6d011b5a74cb5024e877eb1a9c55818fff7122a7139051d
-Size (zstandard-0.11.1.tar.gz) = 641453 bytes
-SHA1 (patch-c-ext_compressionparams.c) = f9b2674e9e0816ef8ba23cf3cb77294a6b2008f7
-SHA1 (patch-zstandard_cffi.py) = f6d0f070160d9e977701d4d1fb26878d75e19898
-SHA1 (patch-zstd.c) = ee9e8d349759fcc0dd43bcd68fefdf3390feca6c
-SHA1 (patch-zstd_compress_zstd__compress.c) = 94c28e6b9bd594693656eac9e7cbdacc04a24c70
+SHA1 (zstandard-0.12.0.tar.gz) = b6b81d4af12dd16f7d830de2b769c569f5a23a9a
+RMD160 (zstandard-0.12.0.tar.gz) = c5ed78145c3057cc83893977f59eda68b4b63e29
+SHA512 (zstandard-0.12.0.tar.gz) = ebf896a77ce5cdc82a1edb658a0b96bcf99deee7aa031163879fc21fe3d03623061182fd2c11840a5a46a8ad0a08b98b802b4703b963d448a25c0b52685d3b64
+Size (zstandard-0.12.0.tar.gz) = 648827 bytes
+SHA1 (patch-zstd.c) = 0d2a52f1adae7ed1768974533ae92440954cf03e
Index: pkgsrc/archivers/py-zstandard/patches/patch-zstd.c
diff -u pkgsrc/archivers/py-zstandard/patches/patch-zstd.c:1.2 pkgsrc/archivers/py-zstandard/patches/patch-zstd.c:1.3
--- pkgsrc/archivers/py-zstandard/patches/patch-zstd.c:1.2 Tue Feb 26 06:42:27 2019
+++ pkgsrc/archivers/py-zstandard/patches/patch-zstd.c Thu Sep 19 16:50:57 2019
@@ -1,14 +1,14 @@
-$NetBSD: patch-zstd.c,v 1.2 2019/02/26 06:42:27 adam Exp $
+$NetBSD: patch-zstd.c,v 1.3 2019/09/19 16:50:57 adam Exp $
Allow newer zstd.
---- zstd.c.orig 2019-02-26 00:17:23.000000000 +0000
+--- zstd.c.orig 2019-09-16 01:27:27.000000000 +0000
+++ zstd.c
@@ -210,10 +210,6 @@ void zstd_module_init(PyObject* m) {
We detect this mismatch here and refuse to load the module if this
scenario is detected.
*/
-- if (ZSTD_VERSION_NUMBER != 10308 || ZSTD_versionNumber() != 10308) {
+- if (ZSTD_VERSION_NUMBER != 10403 || ZSTD_versionNumber() != 10403) {
- PyErr_SetString(PyExc_ImportError, "zstd C API mismatch; Python bindings not compiled against expected zstd version");
- return;
- }
Home |
Main Index |
Thread Index |
Old Index