[med-svn] [libzstd] branch upstream updated (80d5757 -> 4608c07)

Kevin Murray daube-guest at moszumanska.debian.org
Sun Sep 4 12:16:08 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  80d5757   Imported Upstream version 0.8.0
      adds  4608c07   Imported Upstream version 1.0.0

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |  24 +-
 .travis.yml                                        |  93 +--
 CONTRIBUTING.md                                    |  42 ++
 lib/LICENSE => LICENSE                             |  22 +-
 LICENSE-examples                                   |  11 +
 Makefile                                           |  98 +--
 NEWS                                               |  18 +
 PATENTS                                            |  33 +
 README.md                                          |  21 +-
 appveyor.yml                                       |  65 +-
 examples/.gitignore                                |   2 +
 examples/Makefile                                  |  21 +-
 examples/dictionary_compression.c                  |  78 ++-
 examples/dictionary_decompression.c                |  72 +--
 examples/simple_compression.c                      |  33 +-
 examples/simple_decompression.c                    |  33 +-
 examples/streaming_compression.c                   | 127 ++++
 examples/streaming_decompression.c                 | 100 +++
 images/Dspeed4.png                                 | Bin 9927 -> 8984 bytes
 lib/Makefile                                       |  49 +-
 lib/README.md                                      |  16 +-
 lib/common/error_private.h                         |  43 +-
 lib/common/error_public.h                          |  46 +-
 lib/common/fse.h                                   |   2 +-
 lib/common/fse_decompress.c                        |  17 +-
 lib/common/mem.h                                   |  53 +-
 lib/common/xxhash.c                                |  47 +-
 lib/common/xxhash.h                                | 106 ++--
 lib/common/zbuff.h                                 |  47 +-
 lib/common/zstd_common.c                           |  56 +-
 lib/common/zstd_internal.h                         |  84 +--
 lib/compress/.debug/zstd_stats.h                   | 162 -----
 lib/compress/huf_compress.c                        |   7 +-
 lib/compress/zbuff_compress.c                      |  41 +-
 lib/compress/zstd_compress.c                       | 610 +++++++++++++------
 lib/compress/zstd_opt.h                            | 240 ++------
 lib/decompress/huf_decompress.c                    |  61 +-
 lib/decompress/zbuff_decompress.c                  |  65 +-
 lib/decompress/zstd_decompress.c                   | 447 +++++++++++---
 lib/dictBuilder/divsufsort.h                       |  10 +-
 lib/dictBuilder/zdict.c                            | 151 +++--
 lib/dictBuilder/zdict.h                            |  64 +-
 lib/legacy/zstd_legacy.h                           | 213 +++++--
 lib/legacy/zstd_v01.c                              |  93 +--
 lib/legacy/zstd_v01.h                              |  44 +-
 lib/legacy/zstd_v02.c                              | 240 ++------
 lib/legacy/zstd_v02.h                              |  44 +-
 lib/legacy/zstd_v03.c                              | 239 ++------
 lib/legacy/zstd_v03.h                              |  44 +-
 lib/legacy/zstd_v04.c                              | 149 ++---
 lib/legacy/zstd_v04.h                              |  46 +-
 lib/legacy/zstd_v05.c                              | 163 ++---
 lib/legacy/zstd_v05.h                              |  40 +-
 lib/legacy/zstd_v06.c                              | 241 +-------
 lib/legacy/zstd_v06.h                              |  40 +-
 lib/legacy/zstd_v07.c                              | 217 +------
 lib/legacy/zstd_v07.h                              |  40 +-
 lib/zstd.h                                         | 233 +++++--
 programs/.gitignore                                |  25 -
 programs/COPYING                                   | 339 -----------
 programs/Makefile                                  | 199 ++----
 programs/README.md                                 |  94 +++
 programs/bench.c                                   | 117 ++--
 programs/bench.h                                   |  29 +-
 programs/datagen.c                                 |  36 +-
 programs/datagen.h                                 |  32 +-
 programs/dibio.c                                   |  39 +-
 programs/dibio.h                                   |  31 +-
 programs/fileio.c                                  | 150 ++---
 programs/fileio.h                                  |  29 +-
 programs/legacy/fileio_legacy.c                    | 673 ---------------------
 programs/legacy/fileio_legacy.h                    |  48 --
 programs/util.h                                    |  50 +-
 programs/zstd.1                                    |   2 +-
 programs/zstdcli.c                                 |  76 ++-
 projects/.gitignore                                |  13 +-
 projects/README.md                                 |  25 +-
 .../{VS2008 => VS2005}/fullbench/fullbench.vcproj  |  13 +-
 projects/{VS2008 => VS2005}/fuzzer/fuzzer.vcproj   |  13 +-
 projects/{VS2008 => VS2005}/zstd.sln               |   5 +-
 projects/{VS2008 => VS2005}/zstd/zstd.vcproj       |  15 +-
 projects/{VS2008 => VS2005}/zstdlib/zstdlib.vcproj |   3 +-
 projects/VS2008/fullbench/fullbench.vcproj         |  10 +-
 projects/VS2008/fuzzer/fuzzer.vcproj               |  10 +-
 projects/VS2008/zstd/zstd.vcproj                   |  12 +-
 projects/VS2010/CompileAsCpp.props                 |   8 +
 projects/VS2010/datagen/datagen.vcxproj            |  12 +-
 projects/VS2010/fullbench/fullbench.vcxproj        |  12 +-
 projects/VS2010/fuzzer/fuzzer.vcxproj              |  12 +-
 projects/VS2010/zstd/zstd.vcxproj                  |  10 +-
 projects/VS2010/zstdlib/zstdlib.vcxproj            |   3 +-
 projects/build/README.md                           |   3 +
 projects/cmake/CMakeLists.txt                      |   1 +
 projects/cmake/programs/.gitignore                 |   5 -
 projects/cmake/programs/CMakeLists.txt             |  18 +-
 projects/cmake/{programs => tests}/.gitignore      |   3 +-
 projects/cmake/{programs => tests}/CMakeLists.txt  |  28 +-
 tests/.gitignore                                   |  40 ++
 tests/Makefile                                     | 207 ++++++-
 tests/README.md                                    |  19 +-
 {programs => tests}/datagencli.c                   |  34 +-
 {programs => tests}/fullbench.c                    |  30 +-
 {programs => tests}/fuzzer.c                       |  51 +-
 tests/namespaceTest.c                              |  23 +
 {programs => tests}/paramgrill.c                   |  31 +-
 {programs => tests}/playTests.sh                   |  34 +-
 {programs => tests}/roundTripCrash.c               |  30 +-
 tests/test-zstd-speed.py                           |  58 +-
 tests/test-zstd-versions.py                        |  16 +-
 {programs => tests}/zbufftest.c                    |  32 +-
 programs/zbufftest.c => tests/zstreamtest.c        | 343 ++++++-----
 zlibWrapper/README.md                              |   2 +-
 zlibWrapper/examples/example.c                     |  25 +-
 zlibWrapper/examples/example_original.c            |  21 +-
 zlibWrapper/zstd_zlibwrapper.c                     |  92 ++-
 zlibWrapper/zstd_zlibwrapper.h                     |  40 +-
 zstd.rb                                            |   4 +-
 zstd_compression_format.md                         | 670 ++++++++++----------
 118 files changed, 3958 insertions(+), 5450 deletions(-)
 create mode 100644 CONTRIBUTING.md
 rename lib/LICENSE => LICENSE (59%)
 create mode 100644 LICENSE-examples
 create mode 100644 PATENTS
 create mode 100644 examples/streaming_compression.c
 create mode 100644 examples/streaming_decompression.c
 delete mode 100644 lib/compress/.debug/zstd_stats.h
 delete mode 100644 programs/COPYING
 create mode 100644 programs/README.md
 delete mode 100644 programs/legacy/fileio_legacy.c
 delete mode 100644 programs/legacy/fileio_legacy.h
 copy projects/{VS2008 => VS2005}/fullbench/fullbench.vcproj (97%)
 copy projects/{VS2008 => VS2005}/fuzzer/fuzzer.vcproj (96%)
 copy projects/{VS2008 => VS2005}/zstd.sln (97%)
 copy projects/{VS2008 => VS2005}/zstd/zstd.vcproj (96%)
 copy projects/{VS2008 => VS2005}/zstdlib/zstdlib.vcproj (99%)
 create mode 100644 projects/VS2010/CompileAsCpp.props
 copy projects/cmake/{programs => tests}/.gitignore (79%)
 copy projects/cmake/{programs => tests}/CMakeLists.txt (63%)
 rename {programs => tests}/datagencli.c (80%)
 rename {programs => tests}/fullbench.c (95%)
 rename {programs => tests}/fuzzer.c (97%)
 create mode 100644 tests/namespaceTest.c
 rename {programs => tests}/paramgrill.c (97%)
 rename {programs => tests}/playTests.sh (90%)
 rename {programs => tests}/roundTripCrash.c (85%)
 copy {programs => tests}/zbufftest.c (96%)
 rename programs/zbufftest.c => tests/zstreamtest.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