[med-svn] [libzstd] branch upstream updated (c3f5428 -> ff91ed1)
Kevin Murray
daube-guest at moszumanska.debian.org
Sun Nov 13 23:00:47 UTC 2016
This is an automated email from the git hooks/post-receive script.
daube-guest pushed a change to branch upstream
in repository libzstd.
from c3f5428 New upstream version 1.1.0
new ff91ed1 New upstream version 1.1.1
The 1 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:
.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(-)
delete mode 100644 build/VS2010/zstd/generate_res/generate_res.bat
delete mode 100644 build/VS2010/zstd/generate_res/verrsrc.h
delete mode 100644 build/VS2010/zstd/generate_res/zstd32.res
delete mode 100644 build/VS2010/zstd/generate_res/zstd64.res
create mode 100644 contrib/gen_html/Makefile
create mode 100644 contrib/gen_html/README.md
create mode 100755 contrib/gen_html/gen-zstd-manual.sh
create mode 100644 contrib/gen_html/gen_html.cpp
create mode 100644 contrib/pzstd/Logging.h
delete mode 100644 contrib/pzstd/test/Makefile
create mode 100644 contrib/pzstd/utils/ResourcePool.h
delete mode 100644 contrib/pzstd/utils/test/Makefile
create mode 100644 contrib/pzstd/utils/test/ResourcePoolTest.cpp
rename {images => doc/images}/Cspeed4.png (100%)
rename {images => doc/images}/DCspeed5.png (100%)
rename {images => doc/images}/Dspeed4.png (100%)
rename {images => doc/images}/smallData.png (100%)
rename zstd_compression_format.md => doc/zstd_compression_format.md (100%)
create mode 100644 doc/zstd_manual.html
create mode 100644 examples/multiple_streaming_compression.c
copy lib/common/{error_private.h => error_private.c} (50%)
rename lib/common/{error_public.h => zstd_errors.h} (91%)
create mode 100644 programs/windres/generate_res.bat
create mode 100644 programs/windres/verrsrc.h
copy {build/VS2010/zstd => programs/windres}/zstd.rc (82%)
create mode 100644 programs/windres/zstd32.res
create mode 100644 programs/windres/zstd64.res
--
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