[med-svn] [libzstd] 02/07: Merge tag 'upstream/1.1.2'

Sascha Steinbiss satta at debian.org
Fri Jan 13 14:50:00 UTC 2017


This is an automated email from the git hooks/post-receive script.

satta pushed a commit to branch master
in repository libzstd.

commit f251a0e08d123a03fd3248a1c43b4595d7dd6105
Merge: 9d83d56 9981856
Author: Sascha Steinbiss <satta at debian.org>
Date:   Fri Jan 13 12:48:35 2017 +0000

    Merge tag 'upstream/1.1.2'
    
    Upstream version 1.1.2

 .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 +-
 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 +-
 111 files changed, 5770 insertions(+), 2143 deletions(-)

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