[med-svn] [libzstd] 02/04: Merge tag 'upstream/1.1.0'
Kevin Murray
daube-guest at moszumanska.debian.org
Sun Oct 16 07:31:23 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 e1b77ce09014173ec431e3b7ec046f927c602dd2
Merge: 2f0940f c3f5428
Author: Kevin Murray <spam at kdmurray.id.au>
Date: Sun Oct 16 15:56:53 2016 +1100
Merge tag 'upstream/1.1.0'
Upstream version 1.1.0
.gitattributes | 2 +-
.gitignore | 2 +
.travis.yml | 61 +-
Makefile | 18 +-
NEWS | 19 +-
README.md | 53 +-
appveyor.yml | 131 ++-
{projects => build}/.gitignore | 2 +-
{projects => build}/README.md | 4 +-
.../VS2005/fullbench/fullbench.vcproj | 0
{projects => build}/VS2005/fuzzer/fuzzer.vcproj | 0
{projects => build}/VS2005/zstd.sln | 0
{projects => build}/VS2005/zstd/zstd.vcproj | 8 +-
{projects => build}/VS2005/zstdlib/zstdlib.vcproj | 44 +-
.../VS2008/fullbench/fullbench.vcproj | 0
{projects => build}/VS2008/fuzzer/fuzzer.vcproj | 0
{projects => build}/VS2008/zstd.sln | 0
{projects => build}/VS2008/zstd/zstd.vcproj | 8 +-
{projects => build}/VS2008/zstdlib/zstdlib.vcproj | 44 +-
{projects => build}/VS2010/CompileAsCpp.props | 0
{projects => build}/VS2010/datagen/datagen.vcxproj | 0
.../VS2010/fullbench/fullbench.vcxproj | 0
{projects => build}/VS2010/fuzzer/fuzzer.vcxproj | 0
{projects => build}/VS2010/zstd.sln | 0
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 0 -> 948 bytes
build/VS2010/zstd/generate_res/zstd64.res | Bin 0 -> 948 bytes
.../zstdlib.rc => build/VS2010/zstd/zstd.rc | 102 +-
{projects => build}/VS2010/zstd/zstd.vcxproj | 13 +-
{projects => build}/VS2010/zstdlib/zstdlib.rc | 102 +-
{projects => build}/VS2010/zstdlib/zstdlib.vcxproj | 23 +-
{projects/build => build/VS_scripts}/README.md | 0
.../build => build/VS_scripts}/build.VS2010.cmd | 0
.../build => build/VS_scripts}/build.VS2012.cmd | 0
.../build => build/VS_scripts}/build.VS2013.cmd | 0
.../build => build/VS_scripts}/build.VS2015.cmd | 0
.../build => build/VS_scripts}/build.generic.cmd | 0
{projects => build}/cmake/.gitignore | 0
build/cmake/CMakeLists.txt | 36 +
.../CMakeModules/AddExtraCompilationFlags.cmake | 0
{projects => build}/cmake/cmake_uninstall.cmake.in | 0
{projects => build}/cmake/lib/CMakeLists.txt | 2 +-
{projects => build}/cmake/programs/.gitignore | 0
{projects => build}/cmake/programs/CMakeLists.txt | 0
{projects => build}/cmake/tests/.gitignore | 0
{projects => build}/cmake/tests/CMakeLists.txt | 0
contrib/pzstd/.gitignore | 2 +
contrib/pzstd/ErrorHolder.h | 54 ++
contrib/pzstd/Makefile | 118 +++
contrib/pzstd/Options.cpp | 426 +++++++++
contrib/pzstd/Options.h | 68 ++
contrib/pzstd/Pzstd.cpp | 641 +++++++++++++
contrib/pzstd/Pzstd.h | 96 ++
contrib/pzstd/README.md | 55 ++
contrib/pzstd/SkippableFrame.cpp | 30 +
contrib/pzstd/SkippableFrame.h | 64 ++
contrib/pzstd/images/Cspeed.png | Bin 0 -> 69804 bytes
contrib/pzstd/images/Dspeed.png | Bin 0 -> 26335 bytes
contrib/pzstd/main.cpp | 32 +
contrib/pzstd/test/Makefile | 48 +
contrib/pzstd/test/OptionsTest.cpp | 542 +++++++++++
contrib/pzstd/test/PzstdTest.cpp | 155 +++
contrib/pzstd/test/RoundTrip.h | 86 ++
contrib/pzstd/test/RoundTripTest.cpp | 86 ++
contrib/pzstd/utils/Buffer.h | 99 ++
contrib/pzstd/utils/FileSystem.h | 94 ++
contrib/pzstd/utils/Likely.h | 28 +
contrib/pzstd/utils/Range.h | 131 +++
contrib/pzstd/utils/ScopeGuard.h | 50 +
contrib/pzstd/utils/ThreadPool.h | 58 ++
contrib/pzstd/utils/WorkQueue.h | 184 ++++
contrib/pzstd/utils/test/BufferTest.cpp | 89 ++
contrib/pzstd/utils/test/Makefile | 42 +
contrib/pzstd/utils/test/RangeTest.cpp | 82 ++
contrib/pzstd/utils/test/ScopeGuardTest.cpp | 28 +
contrib/pzstd/utils/test/ThreadPoolTest.cpp | 67 ++
contrib/pzstd/utils/test/WorkQueueTest.cpp | 262 +++++
examples/Makefile | 13 +-
examples/README.md | 23 +-
examples/dictionary_compression.c | 10 +-
examples/dictionary_decompression.c | 4 +-
examples/simple_compression.c | 4 +-
examples/simple_decompression.c | 4 +-
examples/streaming_compression.c | 17 +-
examples/streaming_decompression.c | 36 +-
lib/Makefile | 12 +-
lib/common/fse_decompress.c | 13 +-
lib/common/xxhash.c | 2 +-
lib/common/zstd_internal.h | 35 +-
lib/compress/fse_compress.c | 13 +-
lib/compress/huf_compress.c | 16 -
lib/compress/zstd_compress.c | 346 +++----
lib/decompress/huf_decompress.c | 8 -
lib/decompress/zstd_decompress.c | 532 +++++++----
lib/dictBuilder/zdict.c | 83 +-
lib/dictBuilder/zdict.h | 2 +-
lib/legacy/zstd_v01.c | 185 ++--
lib/legacy/zstd_v02.c | 77 +-
lib/legacy/zstd_v03.c | 80 +-
lib/legacy/zstd_v04.c | 214 +----
lib/legacy/zstd_v05.c | 218 +----
lib/legacy/zstd_v06.c | 238 +----
lib/legacy/zstd_v06.h | 68 +-
lib/legacy/zstd_v07.c | 265 +-----
lib/legacy/zstd_v07.h | 59 +-
lib/libzstd.pc.in | 2 +-
lib/zstd.h | 105 +-
programs/.gitignore | 1 +
programs/Makefile | 23 +-
programs/bench.c | 3 +-
programs/datagen.c | 5 +-
programs/datagen.h | 5 +-
programs/fileio.c | 110 +--
programs/fileio.h | 6 +-
programs/util.h | 96 +-
programs/zstd.1 | 6 +-
programs/zstdcli.c | 85 +-
projects/cmake/CMakeLists.txt | 60 --
tests/Makefile | 6 +-
tests/datagencli.c | 2 +-
tests/fullbench.c | 6 +-
tests/fuzzer.c | 21 +-
tests/playTests.sh | 32 +-
tests/test-zstd-speed.py | 83 +-
tests/test-zstd-versions.py | 2 +-
tests/zbufftest.c | 52 +-
tests/zstreamtest.c | 197 ++--
zlibWrapper/.gitignore | 2 +-
zlibWrapper/Makefile | 79 +-
zlibWrapper/README.md | 74 +-
zlibWrapper/examples/example.c | 16 +-
zlibWrapper/examples/fitblk.c | 253 +++++
zlibWrapper/examples/fitblk_original.c | 233 +++++
zlibWrapper/examples/zwrapbench.c | 1002 ++++++++++++++++++++
zlibWrapper/zstd_zlibwrapper.c | 829 ++++++++++------
zlibWrapper/zstd_zlibwrapper.h | 44 +-
zstd.rb | 18 -
zstd_compression_format.md | 242 ++++-
139 files changed, 8183 insertions(+), 2660 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