[Forensics-changes] [yara] branch master updated (04eba70 -> 0f34c5c)

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


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

bengen pushed a change to branch master
in repository yara.

      from  04eba70   3.5.0+dfsg-9
       new  ddf7218   New upstream version 3.6.0+dfsg
       new  b351442   Merge tag 'upstream/3.6.0+dfsg' into debian
       new  37b6547   Drop patches integrated upstream
       new  91a0d8b   Add missing symbol
       new  0567092   3.6.0+dfsg-1
       new  3c89db4   New upstream version 3.6.1+dfsg
       new  fe41695   Updated version 3.6.1+dfsg from 'upstream/3.6.1+dfsg'
       new  d7da8e4   3.6.1+dfsg-1
       new  897476f   New upstream version 3.6.2+dfsg
       new  6b8ba0f   Updated version 3.6.2+dfsg from 'upstream/3.6.2+dfsg'
       new  0f34c5c   3.6.2+dfsg-1

The 11 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                                         |    1 +
 .travis.yml                                        |   70 +-
 Makefile.am                                        |   32 +-
 README.md                                          |   16 +-
 appveyor.yml                                       |   24 +
 args.c                                             |   10 +-
 args.h                                             |    4 +-
 configure.ac                                       |   51 +-
 debian/changelog                                   |   20 +
 debian/libyara3.symbols                            |    1 +
 .../0001-Fixes-for-big-endian-architectures.patch  | 5970 --------------------
 ...k-signals-when-setting-up-exception-handl.patch |  272 -
 ...andler-Unix-Install-a-handler-for-SIGSEGV.patch |   51 -
 debian/patches/0004-Fix-issue-576.patch            |  272 -
 debian/patches/0005-Fix-issue-575.patch            | 1241 ----
 ...hat-loop-depth-is-greater-than-0-before-d.patch |   28 -
 debian/patches/0007-Fix-issue-597.patch            | 1001 ----
 debian/patches/series                              |    7 -
 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                              |  180 +-
 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/{modules/demo.c => endian.c}               |   50 +-
 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                              |  204 +-
 libyara/hex_grammar.h                              |    4 +-
 libyara/hex_grammar.y                              |   78 +-
 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/{threading.h => endian.h}     |   77 +-
 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                     |   12 +-
 libyara/include/yara/limits.h                      |   28 +-
 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                          |  155 +-
 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                            |   10 +-
 libyara/modules/math.c                             |   10 +-
 libyara/modules/module_list                        |    4 +
 libyara/modules/pe.c                               |  935 +--
 libyara/modules/pe_utils.c                         |  220 +-
 libyara/modules/tests.c                            |   25 +
 libyara/object.c                                   |  228 +-
 libyara/parser.c                                   |  121 +-
 libyara/proc.c                                     |   19 +-
 libyara/re.c                                       | 1179 ++--
 libyara/re_grammar.c                               |  338 +-
 libyara/re_grammar.h                               |    2 +-
 libyara/re_grammar.y                               |  189 +-
 libyara/re_lexer.c                                 |  166 +-
 libyara/re_lexer.l                                 |   92 +-
 libyara/rules.c                                    |   34 +-
 libyara/scan.c                                     |  302 +-
 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/{tiny.exe => tiny-overlay}              |  Bin 32768 -> 32775 bytes
 tests/data/true.yar                                |    1 +
 tests/test-alignment.c                             |   14 +-
 tests/test-elf.c                                   |  234 +
 tests/test-exception.c                             |  279 +
 tests/test-pe.c                                    |  149 +-
 tests/test-rules.c                                 |  422 +-
 .../include/yara/proc.h => tests/test-version.c    |   21 +-
 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 +-
 126 files changed, 10993 insertions(+), 12640 deletions(-)
 create mode 100644 appveyor.yml
 delete mode 100644 debian/patches/0001-Fixes-for-big-endian-architectures.patch
 delete mode 100644 debian/patches/0002-Don-t-unmask-signals-when-setting-up-exception-handl.patch
 delete mode 100644 debian/patches/0003-Exception-handler-Unix-Install-a-handler-for-SIGSEGV.patch
 delete mode 100644 debian/patches/0004-Fix-issue-576.patch
 delete mode 100644 debian/patches/0005-Fix-issue-575.patch
 delete mode 100644 debian/patches/0006-Make-sure-that-loop-depth-is-greater-than-0-before-d.patch
 delete mode 100644 debian/patches/0007-Fix-issue-597.patch
 delete mode 100644 debian/patches/series
 create mode 100644 docs/modules/dotnet.rst
 copy libyara/{modules/demo.c => endian.c} (66%)
 create mode 100644 libyara/include/yara/dotnet.h
 copy libyara/include/yara/{threading.h => endian.h} (51%)
 create mode 100644 libyara/include/yara/pe_utils.h
 create mode 100644 libyara/modules/dotnet.c
 delete mode 100644 tests/data/cdak_1024x768.exe
 delete mode 100644 tests/data/old_ArmaFP.exe
 copy tests/data/{tiny.exe => tiny} (100%)
 mode change 100755 => 100644
 rename tests/data/{tiny-idata-51ff.exe => tiny-idata-51ff} (100%)
 rename tests/data/{tiny-idata-5200.exe => tiny-idata-5200} (100%)
 mode change 100755 => 100644
 rename tests/data/{tiny.exe => tiny-overlay} (99%)
 mode change 100755 => 100644
 create mode 100644 tests/data/true.yar
 create mode 100644 tests/test-elf.c
 create mode 100644 tests/test-exception.c
 copy libyara/include/yara/proc.h => tests/test-version.c (83%)

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