[med-svn] [libzstd] branch master updated (9d83d56 -> e245e02)
Sascha Steinbiss
satta at debian.org
Fri Jan 13 14:49:59 UTC 2017
This is an automated email from the git hooks/post-receive script.
satta pushed a change to branch master
in repository libzstd.
from 9d83d56 Release 1.1.1-1 to unstable
new 9981856 New upstream version 1.1.2
new f251a0e Merge tag 'upstream/1.1.2'
new 217ce05 new upstream version, adapt patches
new 1d9d242 make sure fprintf() gets proper parameters
new 3842889 address embedded zlib
new 522ed1e add license mentioning M. Adler (for gz*.c)
new e245e02 reset target to UNRELEASED
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.coverity.yml | 5 -
.gitignore | 3 +
.travis.yml | 105 ++--
Makefile | 37 +-
NEWS | 17 +
appveyor.yml | 49 +-
build/.gitignore | 19 +-
build/README.md | 33 ++
build/VS2005/fullbench/fullbench.vcproj | 12 -
build/VS2005/fuzzer/fuzzer.vcproj | 4 -
build/VS2005/zstd/zstd.vcproj | 16 -
build/VS2005/zstdlib/zstdlib.vcproj | 8 +-
build/VS2008/fullbench/fullbench.vcproj | 12 -
build/VS2008/fuzzer/fuzzer.vcproj | 4 -
build/VS2008/zstd/zstd.vcproj | 16 -
build/VS2008/zstdlib/zstdlib.vcproj | 16 -
build/VS2010/datagen/datagen.vcxproj | 5 +-
.../fullbench-dll.vcxproj} | 53 +-
build/VS2010/fullbench/fullbench.vcxproj | 8 +-
build/VS2010/fuzzer/fuzzer.vcxproj | 6 +-
.../zstdlib.rc => libzstd-dll/libzstd-dll.rc} | 4 +-
.../libzstd-dll.vcxproj} | 27 +-
.../zstdlib.vcxproj => libzstd/libzstd.vcxproj} | 34 +-
build/VS2010/zstd.sln | 41 +-
build/VS2010/zstd/zstd.vcxproj | 8 +-
build/cmake/lib/CMakeLists.txt | 30 +-
build/cmake/tests/CMakeLists.txt | 3 -
contrib/gen_html/.gitignore | 3 +
contrib/gen_html/gen_html.cpp | 48 +-
contrib/pzstd/Makefile | 21 +-
contrib/pzstd/Options.cpp | 10 +-
contrib/pzstd/Pzstd.cpp | 17 +-
contrib/pzstd/Pzstd.h | 12 +-
contrib/pzstd/README.md | 5 +-
debian/changelog | 7 +
debian/copyright | 6 +
debian/patches/0001-Skip-long-running-tests.patch | 14 +-
debian/patches/0002-Build-lib-by-default.patch | 10 +-
...-Ensure-CPPFLAGS-makes-it-to-the-compiler.patch | 83 ++-
debian/patches/0007-Fix-use-of-fprintf.patch | 44 ++
debian/patches/0008-Address-embedded-zlib.patch | 45 ++
debian/patches/series | 2 +
doc/zstd_compression_format.md | 3 +-
doc/zstd_manual.html | 104 ++--
examples/simple_compression.c | 21 +-
examples/streaming_compression.c | 10 +-
lib/Makefile | 68 ++-
lib/README.md | 22 +-
lib/common/bitstream.h | 8 +-
lib/common/entropy_common.c | 10 +-
lib/common/fse.h | 58 +-
lib/common/fse_decompress.c | 36 +-
lib/common/huf.h | 46 +-
lib/common/mem.h | 4 +-
lib/common/zstd_common.c | 8 +-
lib/common/zstd_internal.h | 5 +-
lib/compress/fse_compress.c | 204 ++++---
lib/compress/huf_compress.c | 184 ++++--
lib/compress/zbuff_compress.c | 319 ----------
lib/compress/zstd_compress.c | 85 ++-
lib/compress/zstd_opt.h | 59 +-
lib/decompress/huf_decompress.c | 14 +-
lib/decompress/zbuff_decompress.c | 252 --------
lib/decompress/zstd_decompress.c | 438 ++++++++++++--
lib/{common => deprecated}/zbuff.h | 97 +--
lib/deprecated/zbuff_compress.c | 145 +++++
lib/deprecated/zbuff_decompress.c | 74 +++
lib/dictBuilder/zdict.c | 14 +-
lib/dll/example/Makefile | 47 ++
lib/dll/example/README.md | 69 +++
lib/dll/example/build_package.bat | 17 +
lib/dll/example/fullbench-dll.sln | 25 +
.../dll/example/fullbench-dll.vcxproj | 61 +-
lib/dll/libzstd.def | 86 +++
lib/legacy/zstd_v01.c | 6 +-
lib/legacy/zstd_v02.c | 20 +-
lib/legacy/zstd_v03.c | 20 +-
lib/legacy/zstd_v04.c | 24 +-
lib/legacy/zstd_v05.c | 28 +-
lib/legacy/zstd_v06.c | 26 +-
lib/legacy/zstd_v07.c | 24 +-
lib/libzstd.pc.in | 10 +-
lib/zstd.h | 125 ++--
programs/Makefile | 73 ++-
programs/bench.c | 186 +++---
programs/bench.h | 7 +-
programs/fileio.c | 221 ++++---
programs/fileio.h | 4 +-
programs/util.h | 74 ++-
programs/windres/generate_res.bat | 4 +-
programs/windres/zstd32.res | Bin 1044 -> 1044 bytes
programs/windres/zstd64.res | Bin 1044 -> 1044 bytes
programs/zstd.1 | 2 +-
programs/zstdcli.c | 100 ++--
programs/zstdgrep | 124 ++++
programs/zstdless | 1 +
tests/.gitignore | 1 +
tests/Makefile | 105 ++--
tests/fullbench.c | 29 +-
tests/fuzzer.c | 22 +-
tests/longmatch.c | 90 +++
tests/playTests.sh | 31 +-
tests/zbufftest.c | 10 +-
tests/zstreamtest.c | 64 +-
zlibWrapper/.gitignore | 11 +-
zlibWrapper/Makefile | 76 ++-
zlibWrapper/README.md | 24 +-
zlibWrapper/examples/example.c | 14 +-
zlibWrapper/examples/fitblk.c | 13 +-
zlibWrapper/examples/minigzip.c | 654 +++++++++++++++++++++
zlibWrapper/examples/zwrapbench.c | 31 +-
zlibWrapper/gzclose.c | 28 +
zlibWrapper/gzcompatibility.h | 45 ++
zlibWrapper/gzguts.h | 218 +++++++
zlibWrapper/gzlib.c | 637 ++++++++++++++++++++
zlibWrapper/gzread.c | 612 +++++++++++++++++++
zlibWrapper/gzwrite.c | 580 ++++++++++++++++++
zlibWrapper/zstd_zlibwrapper.c | 248 +-------
zlibWrapper/zstd_zlibwrapper.h | 7 +-
119 files changed, 5919 insertions(+), 2205 deletions(-)
delete mode 100644 .coverity.yml
copy build/VS2010/{fullbench/fullbench.vcxproj => fullbench-dll/fullbench-dll.vcxproj} (80%)
rename build/VS2010/{zstdlib/zstdlib.rc => libzstd-dll/libzstd-dll.rc} (92%)
copy build/VS2010/{zstdlib/zstdlib.vcxproj => libzstd-dll/libzstd-dll.vcxproj} (93%)
rename build/VS2010/{zstdlib/zstdlib.vcxproj => libzstd/libzstd.vcxproj} (92%)
create mode 100644 contrib/gen_html/.gitignore
create mode 100644 debian/patches/0007-Fix-use-of-fprintf.patch
create mode 100644 debian/patches/0008-Address-embedded-zlib.patch
delete mode 100644 lib/compress/zbuff_compress.c
delete mode 100644 lib/decompress/zbuff_decompress.c
rename lib/{common => deprecated}/zbuff.h (66%)
create mode 100644 lib/deprecated/zbuff_compress.c
create mode 100644 lib/deprecated/zbuff_decompress.c
create mode 100644 lib/dll/example/Makefile
create mode 100644 lib/dll/example/README.md
create mode 100644 lib/dll/example/build_package.bat
create mode 100644 lib/dll/example/fullbench-dll.sln
copy build/VS2010/fullbench/fullbench.vcxproj => lib/dll/example/fullbench-dll.vcxproj (77%)
create mode 100644 lib/dll/libzstd.def
create mode 100755 programs/zstdgrep
create mode 100755 programs/zstdless
create mode 100644 tests/longmatch.c
create mode 100644 zlibWrapper/examples/minigzip.c
create mode 100644 zlibWrapper/gzclose.c
create mode 100644 zlibWrapper/gzcompatibility.h
create mode 100644 zlibWrapper/gzguts.h
create mode 100644 zlibWrapper/gzlib.c
create mode 100644 zlibWrapper/gzread.c
create mode 100644 zlibWrapper/gzwrite.c
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/libzstd.git
More information about the debian-med-commit
mailing list