[med-svn] [libzstd] branch master updated (48b3564 -> bd371d6)

Kevin Murray daube-guest at moszumanska.debian.org
Thu Mar 17 10:55:36 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  48b3564   Add patch for reproducibility
       new  87f18e2   Imported Upstream version 0.5.1
       new  6c4052a   Fix debian watch path to be exclusive to tags
       new  817b229   Import patch from #813845
       new  17c6cad   Remove unnecessary patch; refresh patches
       new  766717e   Bump changelog
       new  101481a   Bump standards version, add vcs urls
       new  bd371d6   Fix d-shlibs call (needed quotes)

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:
 .gitignore                                         |    6 +
 .travis.yml                                        |    3 +-
 Makefile                                           |   37 +-
 NEWS                                               |   12 +
 README.md                                          |  127 +-
 contrib/cmake/CMakeLists.txt                       |    2 +-
 contrib/cmake/lib/CMakeLists.txt                   |   23 +-
 contrib/cmake/programs/CMakeLists.txt              |   13 +-
 debian/changelog                                   |   10 +
 debian/control                                     |    4 +-
 debian/patches/0001-Skip-long-running-tests.patch  |    4 +-
 debian/patches/0002-Build-lib-by-default.patch     |    4 +-
 .../0003-Use-prefix-of-usr-not-usr-local.patch     |   16 +-
 .../0005-Append-to-CPPFLAGS-don-t-overwrite.patch  |   16 +-
 ...hard-coded-date-from-zstd-welcome-message.patch |   21 -
 debian/patches/series                              |    1 -
 debian/rules                                       |    3 +-
 debian/watch                                       |    2 +-
 images/CSpeed.png                                  |  Bin 35874 -> 0 bytes
 images/Cspeed4.png                                 |  Bin 0 -> 47376 bytes
 images/DCspeed5.png                                |  Bin 0 -> 69388 bytes
 images/DSpeed.png                                  |  Bin 9143 -> 0 bytes
 images/Dspeed4.png                                 |  Bin 0 -> 9499 bytes
 lib/Makefile                                       |   11 +-
 lib/README.md                                      |   56 +
 lib/bitstream.h                                    |   63 +-
 lib/divsufsort.c                                   | 1913 +++++++++++++++
 lib/divsufsort.h                                   |   67 +
 lib/error_private.h                                |   59 +-
 lib/error_public.h                                 |   11 +-
 lib/fse.c                                          |  478 ++--
 lib/fse.h                                          |   36 +-
 lib/fse_static.h                                   |   31 +-
 lib/huff0.c                                        |  633 ++---
 lib/huff0.h                                        |    9 +-
 lib/huff0_static.h                                 |   47 +-
 lib/legacy/zstd_legacy.h                           |    6 +-
 lib/legacy/zstd_v02.c                              |    7 +-
 lib/legacy/zstd_v03.c                              |    6 +-
 lib/legacy/{zstd_v03.c => zstd_v04.c}              | 2561 +++++++++++++-------
 lib/legacy/zstd_v04.h                              |  148 ++
 lib/mem.h                                          |   61 +-
 lib/{zstd_buffered.c => zbuff.c}                   |  114 +-
 lib/{zstd_buffered.h => zbuff.h}                   |   90 +-
 lib/{zstd_buffered_static.h => zbuff_static.h}     |   11 +-
 lib/zdict.c                                        |  923 +++++++
 lib/{zstd_buffered_static.h => zdict.h}            |   43 +-
 lib/zdict_static.h                                 |   80 +
 lib/zstd.h                                         |   92 +-
 lib/zstd_compress.c                                | 1449 ++++++-----
 lib/zstd_decompress.c                              |  678 ++++--
 lib/zstd_internal.h                                |  106 +-
 lib/zstd_opt.h                                     | 1125 +++++++++
 lib/zstd_static.h                                  |  295 +--
 programs/Makefile                                  |   60 +-
 programs/bench.c                                   |  114 +-
 programs/datagen.c                                 |   42 +-
 programs/dibio.c                                   |  277 +++
 programs/dibio.h                                   |   52 +
 programs/fileio.c                                  |  343 +--
 programs/fileio.h                                  |   32 +-
 programs/fuzzer.c                                  |   32 +-
 programs/legacy/fileio_legacy.c                    |   82 +
 programs/paramgrill.c                              |  262 +-
 programs/playTests.sh                              |   72 +-
 programs/xxhash.c                                  |    2 +-
 programs/zbufftest.c                               |   14 +-
 programs/zstd.1                                    |   66 +-
 programs/zstdcli.c                                 |  269 +-
 visual/2013/fullbench/fullbench.vcxproj            |    3 -
 visual/2013/fullbench/fullbench.vcxproj.filters    |    9 -
 visual/2013/zstd.sln                               |    4 +-
 visual/2013/zstd/zstd.vcxproj                      |   13 +-
 visual/2013/zstd/zstd.vcxproj.filters              |   39 +-
 visual/2013/zstdlib/zstdlib.vcxproj                |    8 +-
 visual/2013/zstdlib/zstdlib.vcxproj.filters        |   18 +-
 76 files changed, 9697 insertions(+), 3629 deletions(-)
 delete mode 100644 debian/patches/0006-Remove-hard-coded-date-from-zstd-welcome-message.patch
 delete mode 100644 images/CSpeed.png
 create mode 100644 images/Cspeed4.png
 create mode 100644 images/DCspeed5.png
 delete mode 100644 images/DSpeed.png
 create mode 100644 images/Dspeed4.png
 create mode 100644 lib/README.md
 create mode 100644 lib/divsufsort.c
 create mode 100644 lib/divsufsort.h
 copy lib/legacy/{zstd_v03.c => zstd_v04.c} (70%)
 create mode 100644 lib/legacy/zstd_v04.h
 rename lib/{zstd_buffered.c => zbuff.c} (89%)
 rename lib/{zstd_buffered.h => zbuff.h} (66%)
 copy lib/{zstd_buffered_static.h => zbuff_static.h} (90%)
 create mode 100644 lib/zdict.c
 rename lib/{zstd_buffered_static.h => zdict.h} (61%)
 create mode 100644 lib/zdict_static.h
 create mode 100644 lib/zstd_opt.h
 create mode 100644 programs/dibio.c
 create mode 100644 programs/dibio.h

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