[med-svn] [libzstd] branch master updated (887ca6c -> e58f93d)
Olivier Sallou
osallou at debian.org
Wed May 24 11:46:18 UTC 2017
This is an automated email from the git hooks/post-receive script.
osallou pushed a change to branch master
in repository libzstd.
from 887ca6c dch -r
new 2a42322 New upstream version 1.2.0
new 97e4820 Merge tag 'upstream/1.2.0'
new e58f93d new upstream release 1.2.0
The 3 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:
.buckconfig | 9 +
.buckversion | 1 +
.gitattributes | 3 +
.gitignore | 10 +-
.travis.yml | 179 +-
Makefile | 219 +-
NEWS | 54 +
README.md | 72 +-
TESTING.md | 44 +
appveyor.yml | 282 +-
build/.gitignore | 2 +-
build/VS2005/fuzzer/fuzzer.vcproj | 28 +
build/VS2005/zstd/zstd.vcproj | 28 +-
build/VS2005/zstdlib/zstdlib.vcproj | 40 +-
build/VS2008/fuzzer/fuzzer.vcproj | 36 +-
build/VS2008/zstd/zstd.vcproj | 52 +-
build/VS2008/zstdlib/zstdlib.vcproj | 36 +-
build/VS2010/fullbench-dll/fullbench-dll.vcxproj | 2 +
build/VS2010/fuzzer/fuzzer.vcxproj | 15 +-
build/VS2010/libzstd-dll/libzstd-dll.rc | 6 +-
build/VS2010/libzstd-dll/libzstd-dll.vcxproj | 18 +-
build/VS2010/libzstd/libzstd.vcxproj | 18 +-
build/VS2010/zstd/zstd.vcxproj | 25 +-
build/cmake/.gitignore | 3 +-
build/cmake/CMakeLists.txt | 49 +-
.../CMakeModules/AddExtraCompilationFlags.cmake | 331 --
.../CMakeModules/AddZstdCompilationFlags.cmake | 86 +
.../cmake/CMakeModules/GetZstdLibraryVersion.cmake | 9 +
build/cmake/contrib/CMakeLists.txt | 17 +
build/cmake/contrib/gen_html/CMakeLists.txt | 33 +
build/cmake/contrib/pzstd/CMakeLists.txt | 35 +
build/cmake/lib/.gitignore | 2 +
build/cmake/lib/CMakeLists.txt | 168 +-
build/cmake/{ => lib}/cmake_uninstall.cmake.in | 0
build/cmake/lib/pkgconfig.cmake | 1 +
build/cmake/programs/.gitignore | 2 +
build/cmake/programs/CMakeLists.txt | 110 +-
build/cmake/tests/CMakeLists.txt | 11 +-
circle.yml | 75 +
contrib/cleanTabs | 2 +
contrib/gen_html/Makefile | 25 +-
contrib/gen_html/gen_html.cpp | 12 +-
contrib/linux-kernel/.gitignore | 4 +
contrib/linux-kernel/README.md | 89 +
contrib/linux-kernel/btrfs-benchmark.sh | 104 +
contrib/linux-kernel/btrfs.diff | 633 ++++
contrib/linux-kernel/fs/btrfs/zstd.c | 415 +++
contrib/linux-kernel/fs/squashfs/zstd_wrapper.c | 149 +
contrib/linux-kernel/include/linux/zstd.h | 1150 +++++++
contrib/linux-kernel/lib/Kconfig.diff | 17 +
contrib/linux-kernel/lib/Makefile.diff | 13 +
contrib/linux-kernel/lib/zstd/Makefile | 9 +
.../linux-kernel/lib/zstd}/bitstream.h | 277 +-
contrib/linux-kernel/lib/zstd/compress.c | 3384 ++++++++++++++++++++
contrib/linux-kernel/lib/zstd/decompress.c | 2377 ++++++++++++++
contrib/linux-kernel/lib/zstd/entropy_common.c | 217 ++
.../linux-kernel/lib/zstd}/error_private.h | 38 +-
.../common => contrib/linux-kernel/lib/zstd}/fse.h | 326 +-
contrib/linux-kernel/lib/zstd/fse_compress.c | 788 +++++
contrib/linux-kernel/lib/zstd/fse_decompress.c | 292 ++
.../common => contrib/linux-kernel/lib/zstd}/huf.h | 117 +-
contrib/linux-kernel/lib/zstd/huf_compress.c | 644 ++++
contrib/linux-kernel/lib/zstd/huf_decompress.c | 835 +++++
contrib/linux-kernel/lib/zstd/mem.h | 209 ++
contrib/linux-kernel/lib/zstd/xxhash.c | 700 ++++
.../linux-kernel/lib/zstd}/xxhash.h | 154 +-
contrib/linux-kernel/lib/zstd/zstd_common.c | 69 +
.../linux-kernel/lib/zstd}/zstd_internal.h | 234 +-
contrib/linux-kernel/lib/zstd/zstd_opt.h | 921 ++++++
contrib/linux-kernel/spaces_to_tabs.sh | 28 +
contrib/linux-kernel/squashfs-benchmark.sh | 39 +
contrib/linux-kernel/squashfs.diff | 245 ++
contrib/linux-kernel/test/.gitignore | 1 +
contrib/linux-kernel/test/Makefile | 27 +
contrib/linux-kernel/test/UserlandTest.cpp | 554 ++++
contrib/linux-kernel/test/include/asm/unaligned.h | 177 +
contrib/linux-kernel/test/include/linux/compiler.h | 12 +
contrib/linux-kernel/test/include/linux/kernel.h | 14 +
contrib/linux-kernel/test/include/linux/module.h | 10 +
contrib/linux-kernel/test/include/linux/string.h | 1 +
contrib/linux-kernel/test/include/linux/types.h | 2 +
contrib/meson/README | 3 +
contrib/meson/meson.build | 79 +
contrib/meson/meson_options.txt | 2 +
contrib/pzstd/BUCK | 72 +
contrib/pzstd/Makefile | 23 +-
contrib/pzstd/Options.cpp | 24 +-
contrib/pzstd/Options.h | 2 +-
contrib/pzstd/Pzstd.cpp | 6 +-
contrib/pzstd/Pzstd.h | 4 +-
contrib/pzstd/main.cpp | 5 -
contrib/pzstd/test/BUCK | 37 +
contrib/pzstd/test/PzstdTest.cpp | 64 +-
contrib/pzstd/utils/BUCK | 75 +
contrib/pzstd/utils/test/BUCK | 35 +
contrib/pzstd/utils/test/ThreadPoolTest.cpp | 6 +-
contrib/pzstd/utils/test/WorkQueueTest.cpp | 7 +
debian/changelog | 6 +
debian/control | 1 +
debian/patches/0009-Add-shebang-for-scripts.patch | 7 +-
debian/patches/series | 8 +-
doc/README.md | 20 +
doc/educational_decoder/README.md | 29 +
doc/educational_decoder/harness.c | 120 +
doc/educational_decoder/zstd_decompress.c | 2358 ++++++++++++++
doc/educational_decoder/zstd_decompress.h | 16 +
doc/images/Cspeed4.png | Bin 35361 -> 71276 bytes
doc/images/Dspeed4.png | Bin 8984 -> 24692 bytes
doc/images/dict-cr.png | Bin 0 -> 90047 bytes
doc/images/dict-cs.png | Bin 0 -> 93837 bytes
doc/images/dict-ds.png | Bin 0 -> 89590 bytes
doc/images/smallData.png | Bin 36133 -> 0 bytes
doc/zstd_compression_format.md | 1231 +++----
doc/zstd_manual.html | 364 ++-
examples/Makefile | 17 +-
examples/dictionary_decompression.c | 9 +-
examples/simple_compression.c | 11 +-
examples/simple_decompression.c | 44 +-
examples/streaming_compression.c | 3 +-
examples/streaming_decompression.c | 3 +-
lib/BUCK | 186 ++
lib/Makefile | 112 +-
lib/README.md | 8 +
lib/common/bitstream.h | 86 +-
lib/common/entropy_common.c | 32 +-
lib/common/error_private.c | 3 +-
lib/common/fse.h | 80 +-
lib/common/fse_decompress.c | 1 -
lib/common/huf.h | 83 +-
lib/common/mem.h | 33 +-
lib/common/pool.c | 194 ++
lib/common/pool.h | 56 +
lib/common/threading.c | 80 +
lib/common/threading.h | 104 +
lib/common/xxhash.c | 4 +-
lib/common/xxhash.h | 26 +-
lib/common/zstd_common.c | 6 +-
lib/common/zstd_errors.h | 19 +-
lib/common/zstd_internal.h | 18 +-
lib/compress/fse_compress.c | 45 +-
lib/compress/huf_compress.c | 131 +-
lib/compress/zstd_compress.c | 891 ++++--
lib/compress/zstd_opt.h | 24 +-
lib/compress/zstdmt_compress.c | 751 +++++
lib/compress/zstdmt_compress.h | 78 +
lib/decompress/huf_decompress.c | 37 +-
lib/decompress/zstd_decompress.c | 894 ++++--
lib/deprecated/zbuff.h | 4 +-
lib/deprecated/zbuff_common.c | 26 +
lib/dictBuilder/cover.c | 1050 ++++++
lib/dictBuilder/zdict.c | 160 +-
lib/dictBuilder/zdict.h | 128 +-
lib/dll/example/README.md | 10 +-
lib/dll/example/build_package.bat | 2 +
lib/dll/example/fullbench-dll.vcxproj | 2 +
lib/dll/libzstd.def | 2 +
lib/legacy/zstd_legacy.h | 129 +-
lib/legacy/zstd_v01.c | 33 +-
lib/legacy/zstd_v01.h | 8 +
lib/legacy/zstd_v02.c | 79 +-
lib/legacy/zstd_v02.h | 8 +
lib/legacy/zstd_v03.c | 77 +-
lib/legacy/zstd_v03.h | 8 +
lib/legacy/zstd_v04.c | 73 +-
lib/legacy/zstd_v04.h | 8 +
lib/legacy/zstd_v05.c | 39 +-
lib/legacy/zstd_v05.h | 7 +
lib/legacy/zstd_v06.c | 37 +-
lib/legacy/zstd_v06.h | 7 +
lib/legacy/zstd_v07.c | 56 +-
lib/legacy/zstd_v07.h | 8 +
lib/zstd.h | 294 +-
programs/.gitignore | 1 +
programs/BUCK | 63 +
programs/Makefile | 218 +-
programs/README.md | 50 +-
programs/bench.c | 180 +-
programs/bench.h | 15 +-
programs/datagen.c | 21 +-
programs/dibio.c | 111 +-
programs/dibio.h | 4 +-
programs/fileio.c | 757 ++++-
programs/fileio.h | 25 +-
programs/platform.h | 154 +
programs/util.h | 460 ++-
programs/windres/zstd32.res | Bin 1044 -> 1044 bytes
programs/windres/zstd64.res | Bin 1044 -> 1044 bytes
programs/zstd.1 | 583 ++--
programs/zstd.1.md | 343 ++
programs/zstdcli.c | 391 ++-
programs/zstdless | 3 +-
tests/.gitignore | 10 +
tests/Makefile | 174 +-
tests/README.md | 26 +-
tests/decodecorpus.c | 1449 +++++++++
tests/fullbench.c | 32 +-
tests/fuzzer.c | 419 ++-
tests/gzip/Makefile | 44 +
tests/gzip/gzip-env.sh | 46 +
tests/gzip/helin-segv.sh | 31 +
tests/gzip/help-version.sh | 270 ++
tests/gzip/hufts-segv.gz | Bin 0 -> 425 bytes
tests/gzip/hufts.sh | 34 +
tests/gzip/init.cfg | 5 +
tests/gzip/init.sh | 616 ++++
tests/gzip/keep.sh | 51 +
tests/gzip/list.sh | 31 +
tests/gzip/memcpy-abuse.sh | 34 +
tests/gzip/mixed.sh | 68 +
tests/gzip/null-suffix-clobber.sh | 35 +
tests/gzip/stdin.sh | 31 +
tests/gzip/test-driver.sh | 150 +
tests/gzip/trailing-nul.sh | 37 +
tests/gzip/unpack-invalid.sh | 36 +
tests/gzip/z-suffix.sh | 30 +
tests/gzip/zdiff.sh | 48 +
tests/gzip/zgrep-context.sh | 47 +
tests/gzip/zgrep-f.sh | 43 +
tests/gzip/zgrep-signal.sh | 64 +
tests/gzip/znew-k.sh | 40 +
tests/invalidDictionaries.c | 51 +
tests/legacy.c | 229 ++
tests/paramgrill.c | 82 +-
tests/playTests.sh | 331 +-
tests/pool.c | 70 +
tests/symbols.c | 148 +
tests/test-zstd-speed.py | 18 +-
tests/zbufftest.c | 2 +-
tests/zstreamtest.c | 594 +++-
zlibWrapper/.gitignore | 3 +
zlibWrapper/BUCK | 22 +
zlibWrapper/examples/fitblk.c | 4 +-
zlibWrapper/examples/zwrapbench.c | 36 +-
zlibWrapper/gzcompatibility.h | 22 +
zlibWrapper/gzguts.h | 23 +-
zlibWrapper/gzlib.c | 39 +-
zlibWrapper/gzread.c | 186 +-
zlibWrapper/gzwrite.c | 342 +-
zlibWrapper/zstd_zlibwrapper.c | 99 +-
zlibWrapper/zstd_zlibwrapper.h | 14 +-
240 files changed, 33260 insertions(+), 4688 deletions(-)
create mode 100644 .buckconfig
create mode 100644 .buckversion
create mode 100644 TESTING.md
delete mode 100644 build/cmake/CMakeModules/AddExtraCompilationFlags.cmake
create mode 100644 build/cmake/CMakeModules/AddZstdCompilationFlags.cmake
create mode 100644 build/cmake/CMakeModules/GetZstdLibraryVersion.cmake
create mode 100644 build/cmake/contrib/CMakeLists.txt
create mode 100644 build/cmake/contrib/gen_html/CMakeLists.txt
create mode 100644 build/cmake/contrib/pzstd/CMakeLists.txt
create mode 100644 build/cmake/lib/.gitignore
rename build/cmake/{ => lib}/cmake_uninstall.cmake.in (100%)
create mode 100644 build/cmake/lib/pkgconfig.cmake
create mode 100644 circle.yml
create mode 100755 contrib/cleanTabs
create mode 100644 contrib/linux-kernel/.gitignore
create mode 100644 contrib/linux-kernel/README.md
create mode 100755 contrib/linux-kernel/btrfs-benchmark.sh
create mode 100644 contrib/linux-kernel/btrfs.diff
create mode 100644 contrib/linux-kernel/fs/btrfs/zstd.c
create mode 100644 contrib/linux-kernel/fs/squashfs/zstd_wrapper.c
create mode 100644 contrib/linux-kernel/include/linux/zstd.h
create mode 100644 contrib/linux-kernel/lib/Kconfig.diff
create mode 100644 contrib/linux-kernel/lib/Makefile.diff
create mode 100644 contrib/linux-kernel/lib/zstd/Makefile
copy {lib/common => contrib/linux-kernel/lib/zstd}/bitstream.h (58%)
create mode 100644 contrib/linux-kernel/lib/zstd/compress.c
create mode 100644 contrib/linux-kernel/lib/zstd/decompress.c
create mode 100644 contrib/linux-kernel/lib/zstd/entropy_common.c
copy {lib/common => contrib/linux-kernel/lib/zstd}/error_private.h (56%)
copy {lib/common => contrib/linux-kernel/lib/zstd}/fse.h (65%)
create mode 100644 contrib/linux-kernel/lib/zstd/fse_compress.c
create mode 100644 contrib/linux-kernel/lib/zstd/fse_decompress.c
copy {lib/common => contrib/linux-kernel/lib/zstd}/huf.h (69%)
create mode 100644 contrib/linux-kernel/lib/zstd/huf_compress.c
create mode 100644 contrib/linux-kernel/lib/zstd/huf_decompress.c
create mode 100644 contrib/linux-kernel/lib/zstd/mem.h
create mode 100644 contrib/linux-kernel/lib/zstd/xxhash.c
copy {lib/common => contrib/linux-kernel/lib/zstd}/xxhash.h (63%)
create mode 100644 contrib/linux-kernel/lib/zstd/zstd_common.c
copy {lib/common => contrib/linux-kernel/lib/zstd}/zstd_internal.h (55%)
create mode 100644 contrib/linux-kernel/lib/zstd/zstd_opt.h
create mode 100755 contrib/linux-kernel/spaces_to_tabs.sh
create mode 100755 contrib/linux-kernel/squashfs-benchmark.sh
create mode 100644 contrib/linux-kernel/squashfs.diff
create mode 100644 contrib/linux-kernel/test/.gitignore
create mode 100644 contrib/linux-kernel/test/Makefile
create mode 100644 contrib/linux-kernel/test/UserlandTest.cpp
create mode 100644 contrib/linux-kernel/test/include/asm/unaligned.h
create mode 100644 contrib/linux-kernel/test/include/linux/compiler.h
create mode 100644 contrib/linux-kernel/test/include/linux/kernel.h
create mode 100644 contrib/linux-kernel/test/include/linux/module.h
create mode 100644 contrib/linux-kernel/test/include/linux/string.h
create mode 100644 contrib/linux-kernel/test/include/linux/types.h
create mode 100644 contrib/meson/README
create mode 100644 contrib/meson/meson.build
create mode 100644 contrib/meson/meson_options.txt
create mode 100644 contrib/pzstd/BUCK
create mode 100644 contrib/pzstd/test/BUCK
create mode 100644 contrib/pzstd/utils/BUCK
create mode 100644 contrib/pzstd/utils/test/BUCK
create mode 100644 doc/README.md
create mode 100644 doc/educational_decoder/README.md
create mode 100644 doc/educational_decoder/harness.c
create mode 100644 doc/educational_decoder/zstd_decompress.c
create mode 100644 doc/educational_decoder/zstd_decompress.h
create mode 100644 doc/images/dict-cr.png
create mode 100644 doc/images/dict-cs.png
create mode 100644 doc/images/dict-ds.png
delete mode 100644 doc/images/smallData.png
create mode 100644 lib/BUCK
create mode 100644 lib/common/pool.c
create mode 100644 lib/common/pool.h
create mode 100644 lib/common/threading.c
create mode 100644 lib/common/threading.h
create mode 100644 lib/compress/zstdmt_compress.c
create mode 100644 lib/compress/zstdmt_compress.h
create mode 100644 lib/deprecated/zbuff_common.c
create mode 100644 lib/dictBuilder/cover.c
create mode 100644 programs/BUCK
create mode 100644 programs/platform.h
create mode 100644 programs/zstd.1.md
create mode 100644 tests/decodecorpus.c
create mode 100644 tests/gzip/Makefile
create mode 100755 tests/gzip/gzip-env.sh
create mode 100644 tests/gzip/helin-segv.sh
create mode 100644 tests/gzip/help-version.sh
create mode 100644 tests/gzip/hufts-segv.gz
create mode 100644 tests/gzip/hufts.sh
create mode 100644 tests/gzip/init.cfg
create mode 100644 tests/gzip/init.sh
create mode 100644 tests/gzip/keep.sh
create mode 100644 tests/gzip/list.sh
create mode 100644 tests/gzip/memcpy-abuse.sh
create mode 100644 tests/gzip/mixed.sh
create mode 100644 tests/gzip/null-suffix-clobber.sh
create mode 100644 tests/gzip/stdin.sh
create mode 100644 tests/gzip/test-driver.sh
create mode 100644 tests/gzip/trailing-nul.sh
create mode 100644 tests/gzip/unpack-invalid.sh
create mode 100644 tests/gzip/z-suffix.sh
create mode 100644 tests/gzip/zdiff.sh
create mode 100644 tests/gzip/zgrep-context.sh
create mode 100644 tests/gzip/zgrep-f.sh
create mode 100644 tests/gzip/zgrep-signal.sh
create mode 100644 tests/gzip/znew-k.sh
create mode 100644 tests/invalidDictionaries.c
create mode 100644 tests/legacy.c
create mode 100644 tests/pool.c
create mode 100644 tests/symbols.c
create mode 100644 zlibWrapper/BUCK
--
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