[med-svn] [libzstd] branch master updated (83b1bfe -> 72d4799)

Kevin Murray daube-guest at moszumanska.debian.org
Fri Aug 12 02:46:33 UTC 2016


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

daube-guest pushed a change to branch master
in repository libzstd.

      from  83b1bfe   Bump standards version
       new  80d5757   Imported Upstream version 0.8.0
       new  fe4ea2f   Merge tag 'upstream/0.8.0'
       new  72d4799   Bump upstream release No after import

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:
 .coverity.yml                                      |    5 +
 .gitignore                                         |    7 +
 Makefile                                           |   27 +-
 NEWS                                               |   37 +
 README.md                                          |   17 +-
 appveyor.yml                                       |    5 +-
 debian/changelog                                   |    2 +-
 examples/.gitignore                                |   10 +
 examples/Makefile                                  |   59 +
 examples/README.md                                 |   18 +
 examples/dictionary_compression.c                  |  163 +
 examples/dictionary_decompression.c                |  136 +
 examples/simple_compression.c                      |  142 +
 examples/simple_decompression.c                    |  119 +
 images/Cspeed4.png                                 |  Bin 47294 -> 35361 bytes
 lib/.gitignore                                     |    2 +
 lib/Makefile                                       |   18 +-
 lib/README.md                                      |   72 +-
 lib/common/entropy_common.c                        |   67 +-
 lib/common/error_public.h                          |    6 +-
 lib/common/huf.h                                   |    2 +-
 lib/common/mem.h                                   |   26 +-
 lib/common/zbuff.h                                 |   29 +-
 lib/common/zstd_internal.h                         |   74 +-
 lib/compress/fse_compress.c                        |    2 +-
 lib/compress/huf_compress.c                        |   79 +-
 lib/compress/zbuff_compress.c                      |   59 +-
 lib/compress/zstd_compress.c                       | 1297 ++++---
 lib/compress/zstd_opt.h                            |  109 +-
 lib/decompress/zbuff_decompress.c                  |   51 +-
 lib/decompress/zstd_decompress.c                   |  674 ++--
 lib/dictBuilder/zdict.c                            |  286 +-
 lib/dictBuilder/zdict.h                            |   79 +-
 lib/legacy/zstd_legacy.h                           |   61 +-
 lib/legacy/zstd_v02.c                              |    2 +-
 lib/legacy/zstd_v04.c                              |   61 +-
 lib/legacy/zstd_v05.c                              |   28 +-
 lib/legacy/zstd_v06.c                              |    4 +-
 lib/legacy/zstd_v06.h                              |    2 +-
 lib/legacy/{zstd_v06.c => zstd_v07.c}              | 4053 +++++++++++---------
 lib/legacy/{zstd_v06.h => zstd_v07.h}              |  161 +-
 lib/{common => }/zstd.h                            |  274 +-
 programs/.gitignore                                |    2 +
 programs/Makefile                                  |   61 +-
 programs/bench.c                                   |   46 +-
 programs/datagen.c                                 |   30 +-
 programs/datagencli.c                              |    8 +-
 programs/dibio.c                                   |   70 +-
 programs/fileio.c                                  |  145 +-
 programs/fileio.h                                  |    1 -
 programs/fullbench.c                               |   30 +-
 programs/fuzzer.c                                  |  120 +-
 programs/legacy/fileio_legacy.c                    |   83 +
 programs/paramgrill.c                              |  360 +-
 programs/playTests.sh                              |   21 +-
 programs/util.h                                    |    7 +
 programs/zbufftest.c                               |   21 +-
 programs/zstd.1                                    |   30 +-
 programs/zstdcli.c                                 |  315 +-
 projects/README.md                                 |    3 +-
 projects/VS2008/fullbench/fullbench.vcproj         |   10 +-
 projects/VS2008/fuzzer/fuzzer.vcproj               |   10 +-
 projects/VS2008/zstd/zstd.vcproj                   |   18 +-
 projects/VS2008/zstdlib/zstdlib.vcproj             |   10 +-
 projects/VS2010/datagen/datagen.vcxproj.filters    |   26 -
 projects/VS2010/fullbench/fullbench.vcxproj        |   12 +-
 .../VS2010/fullbench/fullbench.vcxproj.filters     |   86 -
 projects/VS2010/fuzzer/fuzzer.vcxproj              |   12 +-
 projects/VS2010/fuzzer/fuzzer.vcxproj.filters      |   92 -
 projects/VS2010/zstd/zstd.vcxproj                  |   16 +-
 projects/VS2010/zstd/zstd.vcxproj.filters          |  158 -
 projects/VS2010/zstdlib/zstdlib.vcxproj            |   12 +-
 projects/VS2010/zstdlib/zstdlib.vcxproj.filters    |   95 -
 projects/cmake/lib/CMakeLists.txt                  |   14 +-
 projects/cmake/programs/CMakeLists.txt             |    2 +-
 tests/.gitignore                                   |    4 +
 tests/test-zstd-speed.py                           |  163 +-
 zlibWrapper/Makefile                               |    4 +-
 zstd.rb                                            |   18 +
 zstd_compression_format.md                         | 1149 ++++++
 80 files changed, 6827 insertions(+), 4762 deletions(-)
 create mode 100644 .coverity.yml
 create mode 100644 examples/.gitignore
 create mode 100644 examples/Makefile
 create mode 100644 examples/README.md
 create mode 100644 examples/dictionary_compression.c
 create mode 100644 examples/dictionary_decompression.c
 create mode 100644 examples/simple_compression.c
 create mode 100644 examples/simple_decompression.c
 create mode 100644 lib/.gitignore
 copy lib/legacy/{zstd_v06.c => zstd_v07.c} (57%)
 copy lib/legacy/{zstd_v06.h => zstd_v07.h} (52%)
 rename lib/{common => }/zstd.h (58%)
 delete mode 100644 projects/VS2010/datagen/datagen.vcxproj.filters
 delete mode 100644 projects/VS2010/fullbench/fullbench.vcxproj.filters
 delete mode 100644 projects/VS2010/fuzzer/fuzzer.vcxproj.filters
 delete mode 100644 projects/VS2010/zstd/zstd.vcxproj.filters
 delete mode 100644 projects/VS2010/zstdlib/zstdlib.vcxproj.filters
 create mode 100644 zstd.rb
 create mode 100644 zstd_compression_format.md

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