[med-svn] [libzstd] 02/05: Merge tag 'upstream/1.1.1'

Kevin Murray daube-guest at moszumanska.debian.org
Sun Nov 13 23:00:45 UTC 2016


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

daube-guest pushed a commit to branch master
in repository libzstd.

commit 223ad9063d6106e17fbe6b8cce8843ce4378115a
Merge: 8834c0a ff91ed1
Author: Kevin Murray <spam at kdmurray.id.au>
Date:   Sun Nov 13 23:03:41 2016 +1100

    Merge tag 'upstream/1.1.1'
    
    Upstream version 1.1.1

 .gitignore                                         |   3 +-
 .travis.yml                                        |  20 +-
 Makefile                                           |  21 +-
 NEWS                                               |  11 +
 README.md                                          |  33 +-
 appveyor.yml                                       |   5 +-
 build/VS2005/fullbench/fullbench.vcproj            |   6 +-
 build/VS2005/fuzzer/fuzzer.vcproj                  |   6 +-
 build/VS2005/zstd/zstd.vcproj                      |   6 +-
 build/VS2005/zstdlib/zstdlib.vcproj                |   6 +-
 build/VS2008/fullbench/fullbench.vcproj            |   6 +-
 build/VS2008/fuzzer/fuzzer.vcproj                  |   6 +-
 build/VS2008/zstd/zstd.vcproj                      |   6 +-
 build/VS2008/zstdlib/zstdlib.vcproj                |   6 +-
 build/VS2010/fullbench/fullbench.vcxproj           |   2 +
 build/VS2010/fuzzer/fuzzer.vcxproj                 |   2 +
 build/VS2010/zstd/generate_res/generate_res.bat    |   3 -
 build/VS2010/zstd/generate_res/verrsrc.h           | 172 -------
 build/VS2010/zstd/generate_res/zstd32.res          | Bin 948 -> 0 bytes
 build/VS2010/zstd/generate_res/zstd64.res          | Bin 948 -> 0 bytes
 build/VS2010/zstd/zstd.rc                          |   6 +-
 build/VS2010/zstd/zstd.vcxproj                     |   4 +-
 build/VS2010/zstdlib/zstdlib.vcxproj               |   5 +-
 build/cmake/lib/CMakeLists.txt                     |   3 +-
 contrib/gen_html/Makefile                          |  36 ++
 contrib/gen_html/README.md                         |  31 ++
 contrib/gen_html/gen-zstd-manual.sh                |   9 +
 contrib/gen_html/gen_html.cpp                      | 216 +++++++++
 contrib/pzstd/Logging.h                            |  72 +++
 contrib/pzstd/Makefile                             | 301 ++++++++----
 contrib/pzstd/Options.cpp                          |  11 +-
 contrib/pzstd/Pzstd.cpp                            | 161 +++----
 contrib/pzstd/Pzstd.h                              |  64 ++-
 contrib/pzstd/README.md                            |   2 +-
 contrib/pzstd/test/Makefile                        |  48 --
 contrib/pzstd/test/OptionsTest.cpp                 |   6 -
 contrib/pzstd/utils/ResourcePool.h                 |  96 ++++
 contrib/pzstd/utils/ThreadPool.h                   |   2 +-
 contrib/pzstd/utils/WorkQueue.h                    |  13 +-
 contrib/pzstd/utils/test/Makefile                  |  42 --
 contrib/pzstd/utils/test/ResourcePoolTest.cpp      |  72 +++
 contrib/pzstd/utils/test/WorkQueueTest.cpp         |  23 +-
 {images => doc/images}/Cspeed4.png                 | Bin
 {images => doc/images}/DCspeed5.png                | Bin
 {images => doc/images}/Dspeed4.png                 | Bin
 {images => doc/images}/smallData.png               | Bin
 .../zstd_compression_format.md                     |   0
 doc/zstd_manual.html                               | 531 +++++++++++++++++++++
 examples/.gitignore                                |   1 +
 examples/Makefile                                  |  41 +-
 examples/README.md                                 |   5 +
 examples/multiple_streaming_compression.c          | 163 +++++++
 examples/simple_decompression.c                    |   2 +-
 examples/streaming_decompression.c                 |   5 +-
 lib/Makefile                                       |  20 +-
 lib/common/entropy_common.c                        |   5 +-
 lib/common/{error_private.h => error_private.c}    |  71 +--
 lib/common/error_private.h                         |  32 +-
 lib/common/fse.h                                   |  14 +-
 lib/common/{error_public.h => zstd_errors.h}       |   7 +-
 lib/common/zstd_internal.h                         |  10 +
 lib/compress/huf_compress.c                        |   9 +-
 lib/compress/zstd_compress.c                       | 173 +++++--
 lib/compress/zstd_opt.h                            |  94 ++--
 lib/decompress/zstd_decompress.c                   | 167 +++++--
 lib/dictBuilder/zdict.c                            |  20 +-
 lib/legacy/zstd_v01.c                              |   7 +-
 lib/legacy/zstd_v02.c                              |   5 +-
 lib/legacy/zstd_v03.c                              |   5 +-
 lib/legacy/zstd_v04.c                              |  10 +-
 lib/legacy/zstd_v05.c                              |  44 +-
 lib/legacy/zstd_v06.c                              |  27 +-
 lib/legacy/zstd_v07.c                              |  26 +-
 lib/zstd.h                                         | 202 ++++----
 programs/Makefile                                  |  62 ++-
 programs/fileio.c                                  |  11 +-
 programs/fileio.h                                  |   2 +-
 programs/windres/generate_res.bat                  |  11 +
 programs/windres/verrsrc.h                         |   8 +
 {build/VS2010/zstd => programs/windres}/zstd.rc    |   6 +-
 programs/windres/zstd32.res                        | Bin 0 -> 1044 bytes
 programs/windres/zstd64.res                        | Bin 0 -> 1044 bytes
 programs/zstd.1                                    | 162 ++++++-
 programs/zstdcli.c                                 |  99 ++--
 tests/Makefile                                     |  29 +-
 tests/fullbench.c                                  |  97 ++--
 tests/fuzzer.c                                     |   4 +-
 tests/paramgrill.c                                 |   7 +-
 tests/playTests.sh                                 |  16 +
 tests/test-zstd-speed.py                           |  49 +-
 tests/zstreamtest.c                                |  49 +-
 zlibWrapper/.gitignore                             |  26 +-
 zlibWrapper/Makefile                               |  21 +-
 zlibWrapper/README.md                              |   4 +-
 94 files changed, 2765 insertions(+), 1137 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