[med-svn] [libzstd] branch upstream updated (2a42322 -> 531170a)

Andreas Tille tille at debian.org
Wed Sep 6 13:49:29 UTC 2017


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

tille pushed a change to branch upstream
in repository libzstd.

      from  2a42322   New upstream version 1.2.0
       new  531170a   New upstream version 1.3.1+dfsg

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:
 .travis.yml                                        |     2 +-
 CONTRIBUTING.md                                    |     2 +-
 COPYING                                            |   339 +
 LICENSE-examples                                   |    11 -
 Makefile                                           |    35 +-
 NEWS                                               |    30 +
 PATENTS                                            |    33 -
 README.md                                          |    23 +-
 appveyor.yml                                       |    23 +-
 build/README.md                                    |     2 +-
 build/VS2008/fullbench/fullbench.vcproj            |    44 +-
 build/VS2010/fullbench/fullbench.vcxproj           |    12 +-
 build/cmake/CMakeLists.txt                         |    10 +
 .../CMakeModules/AddZstdCompilationFlags.cmake     |    25 +-
 build/cmake/lib/CMakeLists.txt                     |    77 +-
 build/cmake/programs/CMakeLists.txt                |    17 +-
 circle.yml                                         |     6 +-
 contrib/VS2005/README.md                           |     3 +
 .../VS2005/fullbench/fullbench.vcproj              |     0
 {build => contrib}/VS2005/fuzzer/fuzzer.vcproj     |     0
 {build => contrib}/VS2005/zstd.sln                 |     0
 {build => contrib}/VS2005/zstd/zstd.vcproj         |     0
 {build => contrib}/VS2005/zstdlib/zstdlib.vcproj   |     0
 contrib/adaptive-compression/Makefile              |    76 +
 contrib/adaptive-compression/README.md             |    91 +
 contrib/adaptive-compression/adapt.c               |  1137 ++
 .../adaptive-compression}/datagencli.c             |    19 +-
 contrib/adaptive-compression/test-correctness.sh   |   252 +
 contrib/adaptive-compression/test-performance.sh   |    59 +
 contrib/linux-kernel/0000-cover-letter.patch       |   122 +
 .../linux-kernel/0001-lib-Add-xxhash-module.patch  |   862 ++
 .../linux-kernel/0002-lib-Add-zstd-modules.patch   | 13301 +++++++++++++++++++
 ...trfs.diff => 0003-btrfs-Add-zstd-support.patch} |   203 +-
 ...s.diff => 0004-squashfs-Add-zstd-support.patch} |   105 +-
 .../0005-crypto-Add-zstd-support.patch             |   424 +
 .../0006-squashfs-tools-Add-zstd-support.patch     |   420 +
 contrib/linux-kernel/COPYING                       |   339 +
 contrib/linux-kernel/README.md                     |    30 +-
 ...rfs-benchmark.sh => btrfs-extract-benchmark.sh} |    85 +-
 contrib/linux-kernel/fs/btrfs/zstd.c               |    47 +-
 contrib/linux-kernel/fs/squashfs/zstd_wrapper.c    |    22 +-
 contrib/linux-kernel/include/linux/xxhash.h        |   236 +
 contrib/linux-kernel/include/linux/zstd.h          |    11 +-
 contrib/linux-kernel/kernelize.sh                  |   110 +
 contrib/linux-kernel/lib/Kconfig.diff              |     6 +-
 contrib/linux-kernel/lib/Makefile.diff             |     4 +-
 contrib/linux-kernel/lib/xxhash.c                  |   500 +
 contrib/linux-kernel/lib/zstd/.clang-format        |    11 +
 contrib/linux-kernel/lib/zstd/Makefile             |    17 +-
 contrib/linux-kernel/lib/zstd/bitstream.h          |   319 +-
 contrib/linux-kernel/lib/zstd/compress.c           |  3544 ++---
 contrib/linux-kernel/lib/zstd/decompress.c         |  2445 ++--
 contrib/linux-kernel/lib/zstd/entropy_common.c     |   246 +-
 contrib/linux-kernel/lib/zstd/error_private.h      |    23 +-
 contrib/linux-kernel/lib/zstd/fse.h                |   283 +-
 contrib/linux-kernel/lib/zstd/fse_compress.c       |   751 +-
 contrib/linux-kernel/lib/zstd/fse_decompress.c     |   296 +-
 contrib/linux-kernel/lib/zstd/huf.h                |   215 +-
 contrib/linux-kernel/lib/zstd/huf_compress.c       |   774 +-
 contrib/linux-kernel/lib/zstd/huf_decompress.c     |   917 +-
 contrib/linux-kernel/lib/zstd/mem.h                |   200 +-
 contrib/linux-kernel/lib/zstd/xxhash.c             |   700 -
 contrib/linux-kernel/lib/zstd/xxhash.h             |   235 -
 contrib/linux-kernel/lib/zstd/zstd_common.c        |    58 +-
 contrib/linux-kernel/lib/zstd/zstd_internal.h      |   293 +-
 contrib/linux-kernel/lib/zstd/zstd_opt.h           |   827 +-
 contrib/linux-kernel/spaces_to_tabs.sh             |    28 -
 contrib/linux-kernel/test/DecompressCrash.c        |    85 +
 contrib/linux-kernel/test/Makefile                 |    26 +-
 contrib/linux-kernel/test/RoundTripCrash.c         |   162 +
 contrib/linux-kernel/test/UserlandTest.cpp         |    15 +-
 contrib/linux-kernel/test/XXHashUserlandTest.cpp   |   166 +
 contrib/linux-kernel/test/include/linux/errno.h    |     6 +
 contrib/linux-kernel/test/include/linux/kernel.h   |     2 +
 contrib/linux-kernel/test/include/linux/math64.h   |    11 +
 contrib/linux-kernel/xxhash_test.c                 |   191 +
 contrib/linux-kernel/zstd_compress_test.c          |   285 +
 contrib/linux-kernel/zstd_decompress_test.c        |   256 +
 contrib/long_distance_matching/Makefile            |    37 +
 contrib/long_distance_matching/README.md           |   102 +
 contrib/long_distance_matching/ldm.c               |   857 ++
 contrib/long_distance_matching/ldm.h               |   197 +
 contrib/long_distance_matching/ldm_common.c        |   109 +
 contrib/long_distance_matching/ldm_params.h        |    12 +
 contrib/long_distance_matching/main.c              |   269 +
 contrib/pzstd/Pzstd.cpp                            |     5 +-
 contrib/seekable_format/examples/.gitignore        |     4 +
 contrib/seekable_format/examples/Makefile          |    42 +
 .../examples/parallel_compression.c                |   214 +
 .../seekable_format/examples/parallel_processing.c |   193 +
 .../examples/seekable_compression.c                |    52 +-
 .../examples/seekable_decompression.c              |    75 +-
 contrib/seekable_format/zstd_seekable.h            |   184 +
 .../zstd_seekable_compression_format.md            |   116 +
 contrib/seekable_format/zstdseek_compress.c        |   366 +
 contrib/seekable_format/zstdseek_decompress.c      |   461 +
 doc/educational_decoder/Makefile                   |    34 +
 doc/educational_decoder/harness.c                  |    11 +-
 doc/educational_decoder/zstd_decompress.c          |   415 +-
 doc/educational_decoder/zstd_decompress.h          |    48 +-
 doc/zstd_compression_format.md                     |    38 +-
 doc/zstd_manual.html                               |   594 +-
 examples/.gitignore                                |    13 -
 examples/Makefile                                  |    75 -
 examples/README.md                                 |    36 -
 examples/dictionary_compression.c                  |   155 -
 examples/dictionary_decompression.c                |   129 -
 examples/multiple_streaming_compression.c          |   163 -
 examples/simple_compression.c                      |   133 -
 examples/simple_decompression.c                    |   108 -
 lib/Makefile                                       |    12 +-
 lib/common/bitstream.h                             |    87 +-
 lib/common/compiler.h                              |    85 +
 lib/common/error_private.c                         |    19 +-
 lib/common/error_private.h                         |     8 +-
 lib/common/fse.h                                   |    16 +-
 lib/common/fse_decompress.c                        |    25 +-
 lib/common/huf.h                                   |    31 +-
 lib/common/mem.h                                   |    26 +-
 lib/common/pool.c                                  |    98 +-
 lib/common/pool.h                                  |    25 +-
 lib/common/threading.c                             |     1 -
 lib/common/threading.h                             |    11 +-
 lib/common/xxhash.c                                |    50 +-
 lib/common/zstd_common.c                           |    51 +-
 lib/common/zstd_errors.h                           |    76 +-
 lib/common/zstd_internal.h                         |   179 +-
 lib/compress/fse_compress.c                        |    26 +-
 lib/compress/huf_compress.c                        |    17 +-
 lib/compress/zstd_compress.c                       |  2135 +--
 lib/compress/zstd_opt.h                            |   275 +-
 lib/compress/zstdmt_compress.c                     |   791 +-
 lib/compress/zstdmt_compress.h                     |    71 +-
 lib/decompress/huf_decompress.c                    |   208 +-
 lib/decompress/zstd_decompress.c                   |   810 +-
 lib/deprecated/zbuff.h                             |     8 +-
 lib/deprecated/zbuff_common.c                      |     9 +-
 lib/deprecated/zbuff_compress.c                    |     8 +-
 lib/deprecated/zbuff_decompress.c                  |     8 +-
 lib/dictBuilder/cover.c                            |    76 +-
 lib/dictBuilder/zdict.c                            |    80 +-
 lib/dictBuilder/zdict.h                            |   207 +-
 lib/legacy/zstd_legacy.h                           |    12 +-
 lib/legacy/zstd_v01.c                              |     8 +-
 lib/legacy/zstd_v01.h                              |     8 +-
 lib/legacy/zstd_v02.c                              |     8 +-
 lib/legacy/zstd_v02.h                              |     8 +-
 lib/legacy/zstd_v03.c                              |     8 +-
 lib/legacy/zstd_v03.h                              |     8 +-
 lib/legacy/zstd_v04.c                              |    31 +-
 lib/legacy/zstd_v04.h                              |     8 +-
 lib/legacy/zstd_v05.c                              |    43 +-
 lib/legacy/zstd_v05.h                              |     8 +-
 lib/legacy/zstd_v06.c                              |    35 +-
 lib/legacy/zstd_v06.h                              |     8 +-
 lib/legacy/zstd_v07.c                              |    35 +-
 lib/legacy/zstd_v07.h                              |     8 +-
 lib/zstd.h                                         |   683 +-
 programs/.gitignore                                |     4 +
 programs/Makefile                                  |    69 +-
 programs/README.md                                 |    53 +-
 programs/bench.c                                   |    76 +-
 programs/bench.h                                   |     8 +-
 programs/datagen.c                                 |     8 +-
 programs/datagen.h                                 |    10 +-
 programs/dibio.c                                   |    44 +-
 programs/dibio.h                                   |    10 +-
 programs/fileio.c                                  |  1025 +-
 programs/fileio.h                                  |     9 +-
 programs/platform.h                                |    12 +-
 programs/util.h                                    |    16 +-
 programs/windres/zstd32.res                        |   Bin 1044 -> 1044 bytes
 programs/windres/zstd64.res                        |   Bin 1044 -> 1044 bytes
 programs/zstd.1                                    |    18 +-
 programs/zstd.1.md                                 |    21 +-
 programs/zstdcli.c                                 |   140 +-
 tests/Makefile                                     |   105 +-
 tests/datagencli.c                                 |    27 +-
 tests/decodecorpus.c                               |   404 +-
 tests/files/huffman-compressed-larger              |   Bin 0 -> 143 bytes
 tests/fullbench.c                                  |   191 +-
 tests/fuzz/Makefile                                |   108 +
 tests/fuzz/README.md                               |    34 +
 tests/fuzz/fuzz.h                                  |    52 +
 tests/fuzz/fuzz_helpers.h                          |    70 +
 tests/fuzz/regression_driver.c                     |    69 +
 tests/fuzz/simple_decompress.c                     |    46 +
 tests/fuzz/simple_round_trip.c                     |    81 +
 tests/fuzz/stream_decompress.c                     |    85 +
 tests/fuzz/stream_round_trip.c                     |   153 +
 tests/fuzzer.c                                     |   522 +-
 tests/invalidDictionaries.c                        |     9 +
 tests/legacy.c                                     |    11 +-
 tests/longmatch.c                                  |    10 +
 tests/namespaceTest.c                              |     8 +-
 tests/paramgrill.c                                 |    42 +-
 tests/playTests.sh                                 |   140 +-
 tests/{pool.c => poolTests.c}                      |    41 +-
 tests/roundTripCrash.c                             |    23 +-
 tests/symbols.c                                    |    19 +-
 tests/zbufftest.c                                  |     8 +-
 tests/zstreamtest.c                                |   591 +-
 zlibWrapper/Makefile                               |    15 +-
 zlibWrapper/examples/zwrapbench.c                  |    14 +-
 zlibWrapper/gzcompatibility.h                      |    16 +-
 zlibWrapper/gzlib.c                                |     2 +-
 zlibWrapper/gzread.c                               |     4 +-
 zlibWrapper/gzwrite.c                              |     4 +-
 zlibWrapper/zstd_zlibwrapper.c                     |   587 +-
 zlibWrapper/zstd_zlibwrapper.h                     |    18 +-
 210 files changed, 37850 insertions(+), 11419 deletions(-)
 create mode 100644 COPYING
 delete mode 100644 LICENSE-examples
 delete mode 100644 PATENTS
 create mode 100644 contrib/VS2005/README.md
 rename {build => contrib}/VS2005/fullbench/fullbench.vcproj (100%)
 rename {build => contrib}/VS2005/fuzzer/fuzzer.vcproj (100%)
 rename {build => contrib}/VS2005/zstd.sln (100%)
 rename {build => contrib}/VS2005/zstd/zstd.vcproj (100%)
 rename {build => contrib}/VS2005/zstdlib/zstdlib.vcproj (100%)
 create mode 100644 contrib/adaptive-compression/Makefile
 create mode 100644 contrib/adaptive-compression/README.md
 create mode 100644 contrib/adaptive-compression/adapt.c
 copy {tests => contrib/adaptive-compression}/datagencli.c (89%)
 create mode 100755 contrib/adaptive-compression/test-correctness.sh
 create mode 100755 contrib/adaptive-compression/test-performance.sh
 create mode 100644 contrib/linux-kernel/0000-cover-letter.patch
 create mode 100644 contrib/linux-kernel/0001-lib-Add-xxhash-module.patch
 create mode 100644 contrib/linux-kernel/0002-lib-Add-zstd-modules.patch
 rename contrib/linux-kernel/{btrfs.diff => 0003-btrfs-Add-zstd-support.patch} (72%)
 rename contrib/linux-kernel/{squashfs.diff => 0004-squashfs-Add-zstd-support.patch} (64%)
 create mode 100644 contrib/linux-kernel/0005-crypto-Add-zstd-support.patch
 create mode 100644 contrib/linux-kernel/0006-squashfs-tools-Add-zstd-support.patch
 create mode 100644 contrib/linux-kernel/COPYING
 copy contrib/linux-kernel/{btrfs-benchmark.sh => btrfs-extract-benchmark.sh} (60%)
 create mode 100644 contrib/linux-kernel/include/linux/xxhash.h
 create mode 100755 contrib/linux-kernel/kernelize.sh
 create mode 100644 contrib/linux-kernel/lib/xxhash.c
 create mode 100644 contrib/linux-kernel/lib/zstd/.clang-format
 delete mode 100644 contrib/linux-kernel/lib/zstd/xxhash.c
 delete mode 100644 contrib/linux-kernel/lib/zstd/xxhash.h
 delete mode 100755 contrib/linux-kernel/spaces_to_tabs.sh
 create mode 100644 contrib/linux-kernel/test/DecompressCrash.c
 create mode 100644 contrib/linux-kernel/test/RoundTripCrash.c
 create mode 100644 contrib/linux-kernel/test/XXHashUserlandTest.cpp
 create mode 100644 contrib/linux-kernel/test/include/linux/errno.h
 create mode 100644 contrib/linux-kernel/test/include/linux/math64.h
 create mode 100644 contrib/linux-kernel/xxhash_test.c
 create mode 100644 contrib/linux-kernel/zstd_compress_test.c
 create mode 100644 contrib/linux-kernel/zstd_decompress_test.c
 create mode 100644 contrib/long_distance_matching/Makefile
 create mode 100644 contrib/long_distance_matching/README.md
 create mode 100644 contrib/long_distance_matching/ldm.c
 create mode 100644 contrib/long_distance_matching/ldm.h
 create mode 100644 contrib/long_distance_matching/ldm_common.c
 create mode 100644 contrib/long_distance_matching/ldm_params.h
 create mode 100644 contrib/long_distance_matching/main.c
 create mode 100644 contrib/seekable_format/examples/.gitignore
 create mode 100644 contrib/seekable_format/examples/Makefile
 create mode 100644 contrib/seekable_format/examples/parallel_compression.c
 create mode 100644 contrib/seekable_format/examples/parallel_processing.c
 rename examples/streaming_compression.c => contrib/seekable_format/examples/seekable_compression.c (63%)
 rename examples/streaming_decompression.c => contrib/seekable_format/examples/seekable_decompression.c (54%)
 create mode 100644 contrib/seekable_format/zstd_seekable.h
 create mode 100644 contrib/seekable_format/zstd_seekable_compression_format.md
 create mode 100644 contrib/seekable_format/zstdseek_compress.c
 create mode 100644 contrib/seekable_format/zstdseek_decompress.c
 create mode 100644 doc/educational_decoder/Makefile
 delete mode 100644 examples/.gitignore
 delete mode 100644 examples/Makefile
 delete mode 100644 examples/README.md
 delete mode 100644 examples/dictionary_compression.c
 delete mode 100644 examples/dictionary_decompression.c
 delete mode 100644 examples/multiple_streaming_compression.c
 delete mode 100644 examples/simple_compression.c
 delete mode 100644 examples/simple_decompression.c
 create mode 100644 lib/common/compiler.h
 create mode 100644 tests/files/huffman-compressed-larger
 create mode 100644 tests/fuzz/Makefile
 create mode 100644 tests/fuzz/README.md
 create mode 100644 tests/fuzz/fuzz.h
 create mode 100644 tests/fuzz/fuzz_helpers.h
 create mode 100644 tests/fuzz/regression_driver.c
 create mode 100644 tests/fuzz/simple_decompress.c
 create mode 100644 tests/fuzz/simple_round_trip.c
 create mode 100644 tests/fuzz/stream_decompress.c
 create mode 100644 tests/fuzz/stream_round_trip.c
 rename tests/{pool.c => poolTests.c} (62%)

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