[med-svn] [libzstd] branch master updated (73cb715 -> 83b1bfe)

Kevin Murray daube-guest at moszumanska.debian.org
Thu Jul 21 02:46:56 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  73cb715   update copyright for 0.5.1-1
      adds  5bf43b6   Imported Upstream version 0.5.1
       new  6837d46   Imported Upstream version 0.7.1
       new  61101f9   Merge branch 'upstream'
       new  cfaac28   Fix failed merge of upstream code
       new  ba600d2   Bump changelog
       new  6807b73   Refresh patches
       new  869e4d5   Override upstream's installation PREFIX
       new  83b1bfe   Bump standards version

The 7 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:
 .gitattributes                                     |   10 +-
 .gitignore                                         |   39 +-
 .travis.yml                                        |  109 +-
 Makefile                                           |  154 +-
 NEWS                                               |   42 +-
 README.md                                          |   89 +-
 appveyor.yml                                       |  104 +
 debian/changelog                                   |    6 +
 debian/control                                     |    2 +-
 debian/patches/0001-Skip-long-running-tests.patch  |   10 +-
 debian/patches/0002-Build-lib-by-default.patch     |    6 +-
 .../0003-Use-prefix-of-usr-not-usr-local.patch     |   31 -
 .../0005-Append-to-CPPFLAGS-don-t-overwrite.patch  |   35 -
 debian/patches/series                              |    2 -
 debian/rules                                       |    3 +
 images/Cspeed4.png                                 |  Bin 47376 -> 47294 bytes
 images/DCspeed5.png                                |  Bin 69388 -> 69278 bytes
 images/Dspeed4.png                                 |  Bin 9499 -> 9927 bytes
 images/smallData.png                               |  Bin 0 -> 36133 bytes
 lib/Makefile                                       |   40 +-
 lib/README.md                                      |   69 +-
 lib/{ => common}/bitstream.h                       |  233 +-
 lib/common/entropy_common.c                        |  231 +
 lib/{ => common}/error_private.h                   |   25 +-
 lib/{ => common}/error_public.h                    |    8 +-
 lib/common/fse.h                                   |  628 +++
 lib/common/fse_decompress.c                        |  331 ++
 lib/common/huf.h                                   |  228 +
 lib/{ => common}/mem.h                             |  161 +-
 {programs => lib/common}/xxhash.c                  |  613 ++-
 {programs => lib/common}/xxhash.h                  |   97 +-
 lib/{ => common}/zbuff.h                           |   70 +-
 lib/common/zstd.h                                  |  446 ++
 lib/common/zstd_common.c                           |   91 +
 lib/common/zstd_internal.h                         |  238 +
 lib/compress/.debug/zstd_stats.h                   |  162 +
 lib/{fse.c => compress/fse_compress.c}             |  547 +--
 lib/compress/huf_compress.c                        |  576 +++
 lib/compress/zbuff_compress.c                      |  329 ++
 lib/compress/zstd_compress.c                       | 2774 ++++++++++++
 lib/compress/zstd_opt.h                            | 1041 +++++
 lib/decompress/huf_decompress.c                    |  894 ++++
 lib/decompress/zbuff_decompress.c                  |  294 ++
 lib/decompress/zstd_decompress.c                   | 1346 ++++++
 lib/{ => dictBuilder}/divsufsort.c                 |    0
 lib/{ => dictBuilder}/divsufsort.h                 |    0
 lib/{ => dictBuilder}/zdict.c                      |  407 +-
 lib/{zdict_static.h => dictBuilder/zdict.h}        |   60 +-
 lib/fse.h                                          |  295 --
 lib/fse_static.h                                   |  336 --
 lib/huff0.c                                        | 1728 --------
 lib/huff0.h                                        |   97 -
 lib/huff0_static.h                                 |  139 -
 lib/legacy/zstd_legacy.h                           |   72 +-
 lib/legacy/zstd_v01.c                              |    4 +-
 lib/legacy/zstd_v02.c                              |    4 +-
 lib/legacy/zstd_v03.c                              |  364 +-
 lib/legacy/zstd_v04.c                              |  361 +-
 lib/legacy/zstd_v04.h                              |    2 +-
 lib/legacy/{zstd_v04.c => zstd_v05.c}              | 3319 +++++++-------
 lib/legacy/zstd_v05.h                              |  171 +
 lib/legacy/zstd_v06.c                              | 4583 ++++++++++++++++++++
 lib/legacy/zstd_v06.h                              |  185 +
 lib/zbuff.c                                        |  548 ---
 lib/zdict.h                                        |   67 -
 lib/zstd.h                                         |  149 -
 lib/zstd_compress.c                                | 2394 ----------
 lib/zstd_decompress.c                              | 1166 -----
 lib/zstd_internal.h                                |  182 -
 lib/zstd_opt.h                                     | 1125 -----
 lib/zstd_static.h                                  |  249 --
 programs/.gitignore                                |   22 +
 programs/Makefile                                  |  142 +-
 programs/bench.c                                   |  509 +--
 programs/bench.h                                   |   18 +-
 programs/datagen.c                                 |  179 +-
 programs/datagencli.c                              |   80 +-
 programs/dibio.c                                   |  162 +-
 programs/dibio.h                                   |    3 +-
 programs/fileio.c                                  |  438 +-
 programs/fileio.h                                  |   11 +-
 programs/fullbench.c                               |  482 +-
 programs/fuzzer.c                                  |  897 ++--
 programs/legacy/fileio_legacy.c                    |  247 +-
 programs/legacy/fileio_legacy.h                    |    4 +-
 programs/paramgrill.c                              |  284 +-
 programs/playTests.sh                              |  199 +-
 programs/roundTripCrash.c                          |  193 +
 programs/util.h                                    |  401 ++
 programs/zbufftest.c                               |  515 ++-
 programs/zstd.1                                    |   25 +-
 programs/zstdcli.c                                 |  280 +-
 projects/.gitignore                                |    2 +
 projects/README.md                                 |    9 +
 projects/VS2008/fullbench/fullbench.vcproj         |  449 ++
 projects/VS2008/fuzzer/fuzzer.vcproj               |  461 ++
 projects/VS2008/zstd.sln                           |   56 +
 projects/VS2008/zstd/zstd.vcproj                   |  545 +++
 projects/VS2008/zstdlib/zstdlib.vcproj             |  495 +++
 .../VS2010/datagen/datagen.vcxproj                 |  351 +-
 projects/VS2010/datagen/datagen.vcxproj.filters    |   26 +
 .../VS2010}/fullbench/fullbench.vcxproj            |  371 +-
 .../VS2010/fullbench/fullbench.vcxproj.filters     |   86 +
 .../2013 => projects/VS2010}/fuzzer/fuzzer.vcxproj |  379 +-
 projects/VS2010/fuzzer/fuzzer.vcxproj.filters      |   92 +
 {visual/2013 => projects/VS2010}/zstd.sln          |  124 +-
 {visual/2013 => projects/VS2010}/zstd/zstd.vcxproj |  429 +-
 projects/VS2010/zstd/zstd.vcxproj.filters          |  158 +
 projects/VS2010/zstdlib/zstdlib.rc                 |   51 +
 .../VS2010}/zstdlib/zstdlib.vcxproj                |  426 +-
 projects/VS2010/zstdlib/zstdlib.vcxproj.filters    |   95 +
 projects/build/README.md                           |   51 +
 projects/build/build.VS2010.cmd                    |    7 +
 projects/build/build.VS2012.cmd                    |    6 +
 projects/build/build.VS2013.cmd                    |    7 +
 projects/build/build.VS2015.cmd                    |    7 +
 projects/build/build.generic.cmd                   |   52 +
 projects/cmake/.gitignore                          |    6 +
 {contrib => projects}/cmake/CMakeLists.txt         |   12 +-
 .../CMakeModules/AddExtraCompilationFlags.cmake    |    0
 .../cmake/cmake_uninstall.cmake.in                 |    0
 {contrib => projects}/cmake/lib/CMakeLists.txt     |   96 +-
 projects/cmake/programs/.gitignore                 |    8 +
 .../cmake/programs/CMakeLists.txt                  |   24 +-
 tests/.gitignore                                   |    4 +
 tests/Makefile                                     |   41 +
 tests/README.md                                    |   55 +
 tests/test-zstd-speed.py                           |  265 ++
 tests/test-zstd-versions.py                        |  266 ++
 visual/2013/fullbench/fullbench.vcxproj.filters    |   72 -
 visual/2013/fuzzer/fuzzer.vcxproj.filters          |   90 -
 visual/2013/zstd/zstd.vcxproj.filters              |  150 -
 visual/2013/zstdlib/resource.h                     |  Bin 812 -> 0 bytes
 visual/2013/zstdlib/zstdlib.rc                     |  Bin 5204 -> 0 bytes
 visual/2013/zstdlib/zstdlib.vcxproj.filters        |   83 -
 {programs => zlibWrapper}/.gitignore               |   22 +-
 zlibWrapper/Makefile                               |   61 +
 zlibWrapper/README.md                              |  105 +
 zlibWrapper/examples/example.c                     |  610 +++
 zlibWrapper/examples/example_original.c            |  601 +++
 zlibWrapper/zstd_zlibwrapper.c                     |  981 +++++
 .../zstd_zlibwrapper.h                             |   39 +-
 142 files changed, 27566 insertions(+), 15972 deletions(-)
 create mode 100644 appveyor.yml
 delete mode 100644 debian/patches/0003-Use-prefix-of-usr-not-usr-local.patch
 delete mode 100644 debian/patches/0005-Append-to-CPPFLAGS-don-t-overwrite.patch
 create mode 100644 images/smallData.png
 rename lib/{ => common}/bitstream.h (57%)
 create mode 100644 lib/common/entropy_common.c
 rename lib/{ => common}/error_private.h (86%)
 rename lib/{ => common}/error_public.h (91%)
 create mode 100644 lib/common/fse.h
 create mode 100644 lib/common/fse_decompress.c
 create mode 100644 lib/common/huf.h
 rename lib/{ => common}/mem.h (72%)
 rename {programs => lib/common}/xxhash.c (63%)
 rename {programs => lib/common}/xxhash.h (71%)
 rename lib/{ => common}/zbuff.h (75%)
 create mode 100644 lib/common/zstd.h
 create mode 100644 lib/common/zstd_common.c
 create mode 100644 lib/common/zstd_internal.h
 create mode 100644 lib/compress/.debug/zstd_stats.h
 rename lib/{fse.c => compress/fse_compress.c} (62%)
 create mode 100644 lib/compress/huf_compress.c
 create mode 100644 lib/compress/zbuff_compress.c
 create mode 100644 lib/compress/zstd_compress.c
 create mode 100644 lib/compress/zstd_opt.h
 create mode 100644 lib/decompress/huf_decompress.c
 create mode 100644 lib/decompress/zbuff_decompress.c
 create mode 100644 lib/decompress/zstd_decompress.c
 rename lib/{ => dictBuilder}/divsufsort.c (100%)
 rename lib/{ => dictBuilder}/divsufsort.h (100%)
 rename lib/{ => dictBuilder}/zdict.c (71%)
 rename lib/{zdict_static.h => dictBuilder/zdict.h} (54%)
 delete mode 100644 lib/fse.h
 delete mode 100644 lib/fse_static.h
 delete mode 100644 lib/huff0.c
 delete mode 100644 lib/huff0.h
 delete mode 100644 lib/huff0_static.h
 copy lib/legacy/{zstd_v04.c => zstd_v05.c} (53%)
 create mode 100644 lib/legacy/zstd_v05.h
 create mode 100644 lib/legacy/zstd_v06.c
 create mode 100644 lib/legacy/zstd_v06.h
 delete mode 100644 lib/zbuff.c
 delete mode 100644 lib/zdict.h
 delete mode 100644 lib/zstd.h
 delete mode 100644 lib/zstd_compress.c
 delete mode 100644 lib/zstd_decompress.c
 delete mode 100644 lib/zstd_internal.h
 delete mode 100644 lib/zstd_opt.h
 delete mode 100644 lib/zstd_static.h
 create mode 100644 programs/roundTripCrash.c
 create mode 100644 programs/util.h
 create mode 100644 projects/.gitignore
 create mode 100644 projects/README.md
 create mode 100644 projects/VS2008/fullbench/fullbench.vcproj
 create mode 100644 projects/VS2008/fuzzer/fuzzer.vcproj
 create mode 100644 projects/VS2008/zstd.sln
 create mode 100644 projects/VS2008/zstd/zstd.vcproj
 create mode 100644 projects/VS2008/zstdlib/zstdlib.vcproj
 copy visual/2013/fullbench/fullbench.vcxproj => projects/VS2010/datagen/datagen.vcxproj (69%)
 create mode 100644 projects/VS2010/datagen/datagen.vcxproj.filters
 rename {visual/2013 => projects/VS2010}/fullbench/fullbench.vcxproj (71%)
 create mode 100644 projects/VS2010/fullbench/fullbench.vcxproj.filters
 rename {visual/2013 => projects/VS2010}/fuzzer/fuzzer.vcxproj (69%)
 create mode 100644 projects/VS2010/fuzzer/fuzzer.vcxproj.filters
 rename {visual/2013 => projects/VS2010}/zstd.sln (81%)
 rename {visual/2013 => projects/VS2010}/zstd/zstd.vcxproj (68%)
 create mode 100644 projects/VS2010/zstd/zstd.vcxproj.filters
 create mode 100644 projects/VS2010/zstdlib/zstdlib.rc
 rename {visual/2013 => projects/VS2010}/zstdlib/zstdlib.vcxproj (71%)
 create mode 100644 projects/VS2010/zstdlib/zstdlib.vcxproj.filters
 create mode 100644 projects/build/README.md
 create mode 100644 projects/build/build.VS2010.cmd
 create mode 100644 projects/build/build.VS2012.cmd
 create mode 100644 projects/build/build.VS2013.cmd
 create mode 100644 projects/build/build.VS2015.cmd
 create mode 100644 projects/build/build.generic.cmd
 create mode 100644 projects/cmake/.gitignore
 rename {contrib => projects}/cmake/CMakeLists.txt (85%)
 rename {contrib => projects}/cmake/CMakeModules/AddExtraCompilationFlags.cmake (100%)
 rename {contrib => projects}/cmake/cmake_uninstall.cmake.in (100%)
 rename {contrib => projects}/cmake/lib/CMakeLists.txt (78%)
 create mode 100644 projects/cmake/programs/.gitignore
 rename {contrib => projects}/cmake/programs/CMakeLists.txt (80%)
 create mode 100644 tests/.gitignore
 create mode 100644 tests/Makefile
 create mode 100644 tests/README.md
 create mode 100755 tests/test-zstd-speed.py
 create mode 100755 tests/test-zstd-versions.py
 delete mode 100644 visual/2013/fullbench/fullbench.vcxproj.filters
 delete mode 100644 visual/2013/fuzzer/fuzzer.vcxproj.filters
 delete mode 100644 visual/2013/zstd/zstd.vcxproj.filters
 delete mode 100644 visual/2013/zstdlib/resource.h
 delete mode 100644 visual/2013/zstdlib/zstdlib.rc
 delete mode 100644 visual/2013/zstdlib/zstdlib.vcxproj.filters
 copy {programs => zlibWrapper}/.gitignore (54%)
 create mode 100644 zlibWrapper/Makefile
 create mode 100644 zlibWrapper/README.md
 create mode 100644 zlibWrapper/examples/example.c
 create mode 100644 zlibWrapper/examples/example_original.c
 create mode 100644 zlibWrapper/zstd_zlibwrapper.c
 rename lib/zbuff_static.h => zlibWrapper/zstd_zlibwrapper.h (61%)

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