[Pkg-voip-commits] [belle-sip] branch master updated (726cc7d -> 738055c)

Johannes Schauer josch-guest at moszumanska.debian.org
Sun Apr 23 06:01:57 UTC 2017


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

josch-guest pushed a change to branch master
in repository belle-sip.

      from  726cc7d   Lintian-ify
      adds  8f0cb61   New upstream version 1.6.1
       new  a6a4359   Updated version 1.6.1 from 'upstream/1.6.1'
       new  f21cf25   debian/changelog: entry for upstream release 1.6.1
       new  7e0be58   debian/control: remove version restriction from bctoolbox-dev
       new  a516dda   debian/patches/fix-spelling-errors.patch: refresh
       new  8153dd5   debian/docs: README => README.md
       new  7ccd861   debian/libbellesip0.symbols: refresh
       new  1a71029   refresh patches
       new  47b058c   cmake-zlib.patch: use zlib instead of z
       new  23082cb   remove debian/libbellesip0.shlibs because of misleading version restriction
       new  738055c   debian/changelog: Attribute the right upstream version updates to each maintainer

The 10 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:
 CMakeLists.txt                                     |  26 +-
 Makefile.am                                        |  22 +-
 NEWS                                               |   5 +
 README                                             |  77 ------
 README.md                                          |  67 +++++
 belle-sip.pc.in                                    |   1 +
 build/android/config.h                             |   6 +-
 .../belle-sip-tester-native.cpp                    |   2 +-
 .../belle-sip-tester-native.vcxproj                |   4 +-
 .../belle-sip-tester-wp8/belle-sip-tester-wp8.sln  |   2 +-
 cmake/BelleSIPConfig.cmake.in                      |   2 +-
 cmake/FindAntlr3.cmake                             |   2 +-
 cmake/FindZlib.cmake                               |   2 +-
 config.h.cmake                                     |   4 +-
 configure.ac                                       |  24 +-
 debian/changelog                                   |  13 +-
 debian/control                                     |   2 +-
 debian/docs                                        |   2 +-
 debian/libbellesip0.shlibs                         |   1 -
 debian/libbellesip0.symbols                        |  36 ++-
 debian/patches/cmake-zlib.patch                    |  11 +
 debian/patches/fix-spelling-errors.patch           |  32 +--
 debian/patches/kill-rpath.patch                    |   2 +-
 debian/patches/series                              |   1 +
 include/CMakeLists.txt                             |   2 +-
 include/belle-sip/auth-helper.h                    |   9 +
 include/belle-sip/bodyhandler.h                    |  11 +-
 include/belle-sip/dialog.h                         |   4 +-
 include/belle-sip/headers.h                        |  23 ++
 include/belle-sip/list.h                           |   6 +-
 include/belle-sip/listeningpoint.h                 |   7 +-
 include/belle-sip/mainloop.h                       |  20 ++
 include/belle-sip/object.h                         |   5 +-
 include/belle-sip/provider.h                       |   6 +-
 include/belle-sip/refresher.h                      |  16 +-
 include/belle-sip/resolver.h                       |   4 +-
 include/belle-sip/types.h                          |   1 +
 src/CMakeLists.txt                                 |   6 +-
 src/auth_event.c                                   |  33 ++-
 src/belle_sip_headers_impl.c                       |  69 ++++-
 src/belle_sip_internal.h                           |  38 ++-
 src/belle_sip_loop.c                               | 234 +++++++++++++----
 src/belle_sip_object.c                             |  11 +-
 src/belle_sip_resolver.c                           | 285 ++++++++++++---------
 src/belle_sip_uri_impl.c                           |  78 +++---
 src/belle_sip_utils.c                              |  38 +--
 src/bodyhandler.c                                  | 266 ++++++++++++++-----
 src/channel.c                                      | 124 ++++++---
 src/channel.h                                      |  18 +-
 src/clock_gettime.c                                |  53 ++--
 src/clock_gettime.h                                |  12 +-
 src/dialog.c                                       |  86 ++++++-
 src/dns.c                                          |  71 ++---
 src/grammars/Makefile.am                           |   2 +-
 src/grammars/belle_sip_message.g                   |  19 ++
 src/http-provider.c                                |   3 +-
 src/ict.c                                          |   7 +-
 src/ist.c                                          |   9 +-
 src/listeningpoint.c                               |   5 +-
 src/listeningpoint_internal.h                      |   8 +-
 src/message.c                                      |   4 +-
 src/nict.c                                         |   3 +-
 src/nist.c                                         |   3 +-
 src/port.h                                         |   4 +-
 src/provider.c                                     |  72 +++---
 src/refresher.c                                    |  72 ++++--
 src/sipstack.c                                     |   9 +-
 src/transaction.c                                  |  96 ++++++-
 src/transports/stream_channel.c                    |  18 +-
 src/transports/stream_listeningpoint.c             |  32 +--
 src/transports/tls_channel.c                       | 105 +++++---
 src/transports/tls_listeningpoint.c                |  19 +-
 src/transports/tunnel_channel.c                    |  47 +++-
 src/transports/tunnel_wrapper.cc                   |  22 ++
 src/transports/udp_channel.c                       |  37 ++-
 src/transports/udp_listeningpoint.c                |  10 +-
 src/wakelock.c                                     |  28 +-
 tester/CMakeLists.txt                              |   2 +-
 tester/Makefile.am                                 |   3 +-
 tester/auth_helper_tester.c                        |  16 +-
 tester/belle_generic_uri_tester.c                  |   8 +-
 tester/belle_http_tester.c                         |  26 +-
 tester/belle_sdp_tester.c                          |  41 +--
 tester/belle_sip_core_tester.c                     |  24 +-
 tester/belle_sip_headers_tester.c                  |  82 +++---
 tester/belle_sip_message_tester.c                  |  60 +++--
 tester/belle_sip_refresher_tester.c                |  75 +++---
 tester/belle_sip_register_tester.c                 | 173 ++++++++++---
 tester/belle_sip_resolver_tester.c                 |  70 +++--
 tester/belle_sip_tester.c                          |   7 +-
 tester/belle_sip_tester.h                          |   2 +-
 tester/belle_sip_tester_ios.m                      |   2 +-
 tester/belle_sip_uri_tester.c                      |  46 ++--
 tester/cast_test.c                                 |   2 +-
 tester/get.c                                       |  32 ++-
 tester/resolve.c                                   |   2 +-
 tools/digest-response.py                           |   2 +-
 97 files changed, 2182 insertions(+), 1009 deletions(-)
 delete mode 100644 README
 create mode 100644 README.md
 delete mode 100644 debian/libbellesip0.shlibs
 create mode 100644 debian/patches/cmake-zlib.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-voip/belle-sip.git



More information about the Pkg-voip-commits mailing list