[Pkg-privacy-commits] [libotr] branch master updated (2ab6f24 -> 11cd047)

Intrigeri intrigeri at moszumanska.debian.org
Thu Mar 10 09:47:56 UTC 2016


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

intrigeri pushed a change to branch master
in repository libotr.

      from  2ab6f24   libotr (4.1.0-7)
       new  2d4fc6a   Update upstream OpenPGP signing key.
      adds  187a09a   Guard against a potential integer overflow in future code paths
      adds  7b860e0   Test: Add new test-suite in tests/
      adds  0af239d   ChangeLog and README entries for the new test suite
      adds  c06ab99   Fix description of v2 fragmentation in Protocol-v3.html
      adds  70541ed   Remove a stray "DRAFT" from the <title> tag of Protocol-v3.html
      adds  4b72b07   Clarify the DSA computation in the protocol specs.
      adds  46b189c   Typo fixes in Protocol-v3.html
      adds  03e3cad   Be stricter about parsing v3 fragments
      adds  70d1df0   Fix: set to NULL the sendsmp pointer when handling SMP
      adds  aa6b705   Fix memory leak in otrl_instag_read_FILEp if the tag file is malformed
      adds  aece877   Clarify fragmentation format in Protocol-v3.html
      adds  c976dfd   Protocol-v3.html was incompletely specifying handling of some messages
      adds  ecfd4f4   Prevent integer overflow on 64-bit architectures when receiving 4GB messages
      adds  caf2d47   Catch up the ChangeLog
      adds  4b45fcb   Bump version number to 4.1.1
      adds  32efb99   Bump the copyright date for files recently modified
      adds  d6c7f11   Update NEWS for 4.1.1
      adds  8e6847b   Add bootstrap to the tarball
      adds  b7de3db   Add LIBGCRYPT_CFLAGS to the test suite
      adds  d8bc562   Only build the test suite on Linux
       new  c3b5267   Imported Upstream version 4.1.1
       new  ff18df1   Merge tag 'upstream/4.1.1'
       new  1ff96e9   Update debian/changelog.
       new  3ea60b4   Drop previously cherry-picked 0002-Test-Add-new-test-suite-in-tests.patch: it is part of the new upstream release.
       new  2868f0a   Declare compliance with Standards-Version 3.9.7 (no change required).
       new  5cf6961   Update upstream copyright years.
       new  11cd047   libotr (4.1.1-1)

The 8 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:
 ChangeLog                                          |  104 +
 Makefile.am                                        |    5 +-
 Makefile.in                                        |  357 +-
 NEWS                                               |   11 +
 Protocol-v3.html                                   |   27 +-
 README                                             |   23 +-
 aclocal.m4                                         |  686 ++-
 bootstrap                                          |    9 +
 config.guess                                       |  184 +-
 config.sub                                         |  106 +-
 config/compile                                     |  347 ++
 configure                                          | 3001 ++++++++++-
 configure.ac                                       |   25 +-
 debian/changelog                                   |   12 +
 debian/control                                     |    2 +-
 debian/copyright                                   |    2 +-
 .../0002-Test-Add-new-test-suite-in-tests.patch    | 5319 --------------------
 debian/patches/series                              |    1 -
 debian/upstream/signing-key.asc                    |  124 +-
 depcomp                                            |  688 ---
 install-sh                                         |   35 +-
 ltmain.sh                                          |    4 +-
 missing                                            |  331 --
 src/Makefile.in                                    |  213 +-
 src/b64.c                                          |   10 +
 src/instag.c                                       |   18 +-
 src/message.c                                      |   13 +-
 src/proto.c                                        |   28 +-
 src/version.h                                      |    6 +-
 tests/Makefile.am                                  |   11 +
 tests/Makefile.in                                  |  617 +++
 tests/regression/Makefile.am                       |    5 +
 tests/regression/Makefile.in                       |  611 +++
 tests/regression/client/Makefile.am                |   16 +
 {src => tests/regression/client}/Makefile.in       |  353 +-
 tests/regression/client/client.c                   | 1158 +++++
 tests/regression/client/otr.key                    |   41 +
 tests/regression/random-msg-auth.sh                |   14 +
 tests/regression/random-msg-disconnect-auth.sh     |   14 +
 .../regression/random-msg-disconnect-frag-auth.sh  |   14 +
 tests/regression/random-msg-disconnect-frag.sh     |   14 +
 tests/regression/random-msg-disconnect.sh          |   14 +
 tests/regression/random-msg-fast.sh                |   14 +
 tests/regression/random-msg-frag.sh                |   14 +
 tests/regression/random-msg.sh                     |   14 +
 tests/run.sh                                       |   26 +
 tests/test_list                                    |   19 +
 tests/unit/Makefile.am                             |   50 +
 {src => tests/unit}/Makefile.in                    |  466 +-
 tests/unit/instag.txt                              |    4 +
 tests/unit/test_auth.c                             |  181 +
 tests/unit/test_b64.c                              |  114 +
 tests/unit/test_context.c                          |  214 +
 tests/unit/test_dh.c                               |  515 ++
 tests/unit/test_instag.c                           |  222 +
 tests/unit/test_mem.c                              |   58 +
 tests/unit/test_privkey.c                          |  264 +
 tests/unit/test_proto.c                            |  371 ++
 tests/unit/test_sm.c                               |  343 ++
 tests/unit/test_tlv.c                              |  163 +
 tests/unit/test_userstate.c                        |   52 +
 tests/utils/Makefile.am                            |    3 +
 tests/utils/Makefile.in                            |  608 +++
 tests/utils/tap/Makefile.am                        |    7 +
 {src => tests/utils/tap}/Makefile.in               |  346 +-
 tests/utils/tap/tap.c                              |  433 ++
 tests/utils/tap/tap.h                              |   89 +
 tests/utils/tap/tap.sh                             |  456 ++
 tests/utils/utils.c                                |   18 +
 tests/utils/utils.h                                |   29 +
 toolkit/Makefile.in                                |  242 +-
 71 files changed, 11991 insertions(+), 7917 deletions(-)
 create mode 100755 bootstrap
 create mode 100755 config/compile
 delete mode 100644 debian/patches/0002-Test-Add-new-test-suite-in-tests.patch
 delete mode 100755 depcomp
 delete mode 100755 missing
 create mode 100644 tests/Makefile.am
 create mode 100644 tests/Makefile.in
 create mode 100644 tests/regression/Makefile.am
 create mode 100644 tests/regression/Makefile.in
 create mode 100644 tests/regression/client/Makefile.am
 copy {src => tests/regression/client}/Makefile.in (58%)
 create mode 100644 tests/regression/client/client.c
 create mode 100644 tests/regression/client/otr.key
 create mode 100755 tests/regression/random-msg-auth.sh
 create mode 100755 tests/regression/random-msg-disconnect-auth.sh
 create mode 100755 tests/regression/random-msg-disconnect-frag-auth.sh
 create mode 100755 tests/regression/random-msg-disconnect-frag.sh
 create mode 100755 tests/regression/random-msg-disconnect.sh
 create mode 100755 tests/regression/random-msg-fast.sh
 create mode 100755 tests/regression/random-msg-frag.sh
 create mode 100755 tests/regression/random-msg.sh
 create mode 100755 tests/run.sh
 create mode 100644 tests/test_list
 create mode 100644 tests/unit/Makefile.am
 copy {src => tests/unit}/Makefile.in (50%)
 create mode 100644 tests/unit/instag.txt
 create mode 100644 tests/unit/test_auth.c
 create mode 100644 tests/unit/test_b64.c
 create mode 100644 tests/unit/test_context.c
 create mode 100644 tests/unit/test_dh.c
 create mode 100644 tests/unit/test_instag.c
 create mode 100644 tests/unit/test_mem.c
 create mode 100644 tests/unit/test_privkey.c
 create mode 100644 tests/unit/test_proto.c
 create mode 100644 tests/unit/test_sm.c
 create mode 100644 tests/unit/test_tlv.c
 create mode 100644 tests/unit/test_userstate.c
 create mode 100644 tests/utils/Makefile.am
 create mode 100644 tests/utils/Makefile.in
 create mode 100644 tests/utils/tap/Makefile.am
 copy {src => tests/utils/tap}/Makefile.in (58%)
 create mode 100644 tests/utils/tap/tap.c
 create mode 100644 tests/utils/tap/tap.h
 create mode 100755 tests/utils/tap/tap.sh
 create mode 100644 tests/utils/utils.c
 create mode 100644 tests/utils/utils.h

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/libotr.git



More information about the Pkg-privacy-commits mailing list