[Forensics-changes] [yara] 02/11: Merge tag 'upstream/3.6.0+dfsg' into debian

Hilko Bengen bengen at moszumanska.debian.org
Wed Jun 28 07:22:16 UTC 2017


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

bengen pushed a commit to branch master
in repository yara.

commit b3514421f0187f1af2af3f5b60b73f4d4d7265a4
Merge: 04eba70 ddf7218
Author: Hilko Bengen <bengen at debian.org>
Date:   Mon May 22 19:25:11 2017 +0200

    Merge tag 'upstream/3.6.0+dfsg' into debian
    
    Upstream version 3.6.0+dfsg

 .gitignore                                         |    1 +
 .travis.yml                                        |   70 +-
 Makefile.am                                        |   32 +-
 README.md                                          |   13 +-
 appveyor.yml                                       |   24 +
 args.c                                             |   10 +-
 args.h                                             |    4 +-
 configure.ac                                       |   39 +-
 docs/capi.rst                                      |  116 +-
 docs/commandline.rst                               |   20 +-
 docs/conf.py                                       |    6 +-
 docs/gettingstarted.rst                            |   43 +-
 docs/modules.rst                                   |   11 +-
 docs/modules/cuckoo.rst                            |    6 +-
 docs/modules/dotnet.rst                            |  177 ++
 docs/modules/elf.rst                               |  134 +-
 docs/modules/hash.rst                              |    4 +-
 docs/modules/pe.rst                                |  129 +-
 docs/writingmodules.rst                            |   95 +-
 docs/writingrules.rst                              |  101 +-
 docs/yarapython.rst                                |   47 +-
 libyara/Makefile.am                                |   26 +-
 libyara/ahocorasick.c                              |   14 +-
 libyara/arena.c                                    |   27 +-
 libyara/atoms.c                                    |   91 +-
 libyara/compiler.c                                 |   57 +-
 libyara/{sizedstr.c => endian.c}                   |   45 +-
 libyara/exception.h                                |  102 +-
 libyara/exec.c                                     |  137 +-
 libyara/exefiles.c                                 |  229 ++-
 libyara/grammar.c                                  | 1017 +++++-----
 libyara/grammar.h                                  |    4 +-
 libyara/grammar.y                                  |  127 +-
 libyara/hash.c                                     |   21 +-
 libyara/hex_grammar.c                              |  148 +-
 libyara/hex_grammar.h                              |    2 +-
 libyara/hex_grammar.y                              |   64 +-
 libyara/hex_lexer.c                                |  249 +--
 libyara/hex_lexer.l                                |   30 +-
 libyara/include/yara/arena.h                       |    2 +-
 libyara/include/yara/atoms.h                       |    2 +-
 libyara/include/yara/compiler.h                    |   12 +-
 libyara/include/yara/dotnet.h                      |  334 ++++
 libyara/include/yara/elf.h                         |   87 +-
 libyara/include/yara/{strutils.h => endian.h}      |   93 +-
 libyara/include/yara/error.h                       |    6 +
 libyara/include/yara/exec.h                        |    1 +
 libyara/include/yara/globals.h                     |    9 +-
 libyara/include/yara/hex_lexer.h                   |    5 +-
 libyara/include/yara/integers.h                    |    2 +-
 libyara/include/yara/lexer.h                       |    4 +
 libyara/include/yara/libyara.h                     |   10 +-
 libyara/include/yara/limits.h                      |    8 +-
 libyara/include/yara/mem.h                         |    2 -
 libyara/include/yara/modules.h                     |   24 +-
 libyara/include/yara/object.h                      |   12 +-
 libyara/include/yara/parser.h                      |    6 +-
 libyara/include/yara/pe.h                          |   53 +-
 libyara/include/yara/pe_utils.h                    |  113 ++
 libyara/include/yara/re.h                          |  154 +-
 libyara/include/yara/re_lexer.h                    |    5 +-
 libyara/include/yara/scan.h                        |    1 +
 libyara/include/yara/sizedstr.h                    |   10 +-
 libyara/include/yara/strutils.h                    |    2 -
 libyara/include/yara/types.h                       |   82 +-
 libyara/include/yara/utils.h                       |   23 +-
 libyara/lexer.c                                    |  377 ++--
 libyara/lexer.l                                    |   72 +-
 libyara/libyara.c                                  |   36 +-
 libyara/modules.c                                  |    4 +-
 libyara/modules/cuckoo.c                           |   63 +-
 libyara/modules/dotnet.c                           | 1714 +++++++++++++++++
 libyara/modules/elf.c                              |  483 ++++-
 libyara/modules/hash.c                             |   17 +-
 libyara/modules/magic.c                            |    2 +-
 libyara/modules/math.c                             |   10 +-
 libyara/modules/module_list                        |    4 +
 libyara/modules/pe.c                               |  931 +++++-----
 libyara/modules/pe_utils.c                         |  220 ++-
 libyara/modules/tests.c                            |   25 +
 libyara/object.c                                   |  228 ++-
 libyara/parser.c                                   |  117 +-
 libyara/proc.c                                     |   19 +-
 libyara/re.c                                       | 1136 ++++++++----
 libyara/re_grammar.c                               |  324 ++--
 libyara/re_grammar.h                               |    2 +-
 libyara/re_grammar.y                               |  175 +-
 libyara/re_lexer.c                                 |  124 +-
 libyara/re_lexer.l                                 |   50 +-
 libyara/rules.c                                    |   34 +-
 libyara/scan.c                                     |  299 +--
 libyara/sizedstr.c                                 |   20 +
 libyara/strutils.c                                 |    2 -
 m4/acx_pthread.m4                                  |    2 +-
 tests/blob.h                                       | 1958 ++++++++++++++++++++
 tests/data/cdak_1024x768.exe                       |  Bin 4095 -> 0 bytes
 tests/data/old_ArmaFP.exe                          |  Bin 20464 -> 0 bytes
 tests/data/{tiny.exe => tiny}                      |  Bin
 .../data/{tiny-idata-51ff.exe => tiny-idata-51ff}  |  Bin
 .../data/{tiny-idata-5200.exe => tiny-idata-5200}  |  Bin
 tests/data/true.yar                                |    1 +
 tests/test-alignment.c                             |   14 +-
 tests/test-elf.c                                   |  234 +++
 tests/test-exception.c                             |  279 +++
 tests/test-pe.c                                    |  133 +-
 tests/test-rules.c                                 |  419 ++++-
 .../include/yara/globals.h => tests/test-version.c |   15 +-
 tests/util.c                                       |   29 +-
 tests/util.h                                       |   49 +-
 threading.c                                        |   11 +-
 threading.h                                        |    2 +-
 yara.c                                             |  144 +-
 yara.man                                           |   17 +-
 yarac.c                                            |   50 +-
 yarac.man                                          |   14 +-
 115 files changed, 10716 insertions(+), 3677 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/forensics/yara.git



More information about the forensics-changes mailing list