pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/archivers/zstd
Module Name: pkgsrc
Committed By: adam
Date: Sun Oct 7 06:25:30 UTC 2018
Modified Files:
pkgsrc/archivers/zstd: Makefile distinfo
pkgsrc/archivers/zstd/patches: patch-Makefile patch-lib_Makefile
Log Message:
zstd: updated to 1.3.6
Zstandard v1.3.6 release is focused on intensive dictionary compression for database scenarios.
This is a new environment we are experimenting. The success of dictionary compression on small data, of which databases tend to store plentiful, led to increased adoption, and we now see scenarios
where literally thousands of dictionaries are being used simultaneously, with permanent generation or update of new dictionaries.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/archivers/zstd/Makefile
cvs rdiff -u -r1.14 -r1.15 pkgsrc/archivers/zstd/distinfo
cvs rdiff -u -r1.7 -r1.8 pkgsrc/archivers/zstd/patches/patch-Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/archivers/zstd/patches/patch-lib_Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/archivers/zstd/Makefile
diff -u pkgsrc/archivers/zstd/Makefile:1.17 pkgsrc/archivers/zstd/Makefile:1.18
--- pkgsrc/archivers/zstd/Makefile:1.17 Tue Jul 3 14:27:59 2018
+++ pkgsrc/archivers/zstd/Makefile Sun Oct 7 06:25:30 2018
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2018/07/03 14:27:59 adam Exp $
+# $NetBSD: Makefile,v 1.18 2018/10/07 06:25:30 adam Exp $
-DISTNAME= zstd-1.3.5
+DISTNAME= zstd-1.3.6
CATEGORIES= archivers
MASTER_SITES= ${MASTER_SITE_GITHUB:=facebook/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/archivers/zstd/distinfo
diff -u pkgsrc/archivers/zstd/distinfo:1.14 pkgsrc/archivers/zstd/distinfo:1.15
--- pkgsrc/archivers/zstd/distinfo:1.14 Tue Jul 3 14:27:59 2018
+++ pkgsrc/archivers/zstd/distinfo Sun Oct 7 06:25:30 2018
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.14 2018/07/03 14:27:59 adam Exp $
+$NetBSD: distinfo,v 1.15 2018/10/07 06:25:30 adam Exp $
-SHA1 (zstd-1.3.5.tar.gz) = c86b937a5534ced79e94dc043af835a6deed1115
-RMD160 (zstd-1.3.5.tar.gz) = 1b09118fdb4bbda0bc637fa6a23cfcc77d481dca
-SHA512 (zstd-1.3.5.tar.gz) = a5347b132d6b79e6a7f39a4546cafc5cf85e8d01b765477011008908035789e914b1093e2b2405c75086f05a7bc87e29b69e10252260d747c5c056ce16f91661
-Size (zstd-1.3.5.tar.gz) = 1706005 bytes
-SHA1 (patch-Makefile) = b7029fdd2890f1180b8f6c6067afe88f5a22256a
-SHA1 (patch-lib_Makefile) = 274abfbb48bb4278049fa67a1a20ce75c3059526
+SHA1 (zstd-1.3.6.tar.gz) = 9b58237274176910537815452a37eb9ab7ded408
+RMD160 (zstd-1.3.6.tar.gz) = fcbbf826ef6061be1593b8b47389dba18dd580f9
+SHA512 (zstd-1.3.6.tar.gz) = 2a0144cab77954f00a8e876747be9c8b9773cde7c22ad9bfea4e44e290beabee9b530a7961ef79d0f21893d48311217369a268d4c4920fa5f840c70a852fe01f
+Size (zstd-1.3.6.tar.gz) = 1823482 bytes
+SHA1 (patch-Makefile) = daf9d1946513ee24a4c4c187ec80878e9a578744
+SHA1 (patch-lib_Makefile) = 7ab83f2ec7f0fe0c2dd2ad06984cf1cd7e182812
Index: pkgsrc/archivers/zstd/patches/patch-Makefile
diff -u pkgsrc/archivers/zstd/patches/patch-Makefile:1.7 pkgsrc/archivers/zstd/patches/patch-Makefile:1.8
--- pkgsrc/archivers/zstd/patches/patch-Makefile:1.7 Tue Jul 3 14:27:59 2018
+++ pkgsrc/archivers/zstd/patches/patch-Makefile Sun Oct 7 06:25:30 2018
@@ -1,18 +1,18 @@
-$NetBSD: patch-Makefile,v 1.7 2018/07/03 14:27:59 adam Exp $
+$NetBSD: patch-Makefile,v 1.8 2018/10/07 06:25:30 adam Exp $
Enable the "install" target on all OS.
---- Makefile.orig 2018-06-28 08:55:26.000000000 +0000
+--- Makefile.orig 2018-10-05 16:34:52.000000000 +0000
+++ Makefile
-@@ -110,7 +110,6 @@ clean:
+@@ -113,7 +113,6 @@ clean:
#------------------------------------------------------------------------------
# make install is validated only for Linux, macOS, Hurd and some BSD targets
#------------------------------------------------------------------------------
--ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD DragonFly NetBSD MSYS_NT))
+-ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD DragonFly NetBSD MSYS_NT Haiku))
HOST_OS = POSIX
- CMAKE_PARAMS = -DZSTD_BUILD_CONTRIB:BOOL=ON -DZSTD_BUILD_STATIC:BOOL=ON -DZSTD_BUILD_TESTS:BOOL=ON -DZSTD_ZLIB_SUPPORT:BOOL=ON -DZSTD_LZMA_SUPPORT:BOOL=ON
-@@ -296,7 +295,6 @@ clang38install:
+ CMAKE_PARAMS = -DZSTD_BUILD_CONTRIB:BOOL=ON -DZSTD_BUILD_STATIC:BOOL=ON -DZSTD_BUILD_TESTS:BOOL=ON -DZSTD_ZLIB_SUPPORT:BOOL=ON -DZSTD_LZMA_SUPPORT:BOOL=ON -DCMAKE_BUILD_TYPE=Release
+@@ -319,7 +318,6 @@ clang38install:
lz4install:
[ -e lz4 ] || git clone https://github.com/lz4/lz4 && sudo $(MAKE) -C lz4 install
Index: pkgsrc/archivers/zstd/patches/patch-lib_Makefile
diff -u pkgsrc/archivers/zstd/patches/patch-lib_Makefile:1.6 pkgsrc/archivers/zstd/patches/patch-lib_Makefile:1.7
--- pkgsrc/archivers/zstd/patches/patch-lib_Makefile:1.6 Tue Jul 3 14:27:59 2018
+++ pkgsrc/archivers/zstd/patches/patch-lib_Makefile Sun Oct 7 06:25:30 2018
@@ -1,19 +1,19 @@
-$NetBSD: patch-lib_Makefile,v 1.6 2018/07/03 14:27:59 adam Exp $
+$NetBSD: patch-lib_Makefile,v 1.7 2018/10/07 06:25:30 adam Exp $
Enable the "install" target on all OS.
Fix pkgconfig installation path.
---- lib/Makefile.orig 2018-06-28 08:55:26.000000000 +0000
+--- lib/Makefile.orig 2018-10-05 16:34:52.000000000 +0000
+++ lib/Makefile
-@@ -154,7 +154,6 @@ clean:
+@@ -166,7 +166,6 @@ clean:
#-----------------------------------------------------------------------------
# make install is validated only for Linux, macOS, BSD, Hurd and Solaris targets
#-----------------------------------------------------------------------------
--ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD DragonFly SunOS))
+-ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD DragonFly SunOS Haiku))
DESTDIR ?=
# directory variables : GNU conventions prefer lowercase
-@@ -168,11 +167,7 @@ LIBDIR ?= $(libdir)
+@@ -180,11 +179,7 @@ LIBDIR ?= $(libdir)
includedir ?= $(PREFIX)/include
INCLUDEDIR ?= $(includedir)
@@ -25,7 +25,7 @@ Fix pkgconfig installation path.
ifneq (,$(filter $(shell uname),SunOS))
INSTALL ?= ginstall
-@@ -232,4 +227,3 @@ uninstall:
+@@ -244,4 +239,3 @@ uninstall:
@$(RM) $(DESTDIR)$(INCLUDEDIR)/zdict.h
@echo zstd libraries successfully uninstalled
Home |
Main Index |
Thread Index |
Old Index