[Pkg-voip-commits] [resiprocate] branch master updated (41de5e6 -> ed3dd0a)

Daniel Pocock pocock at moszumanska.debian.org
Thu Dec 19 20:56:54 UTC 2013


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

pocock pushed a change to branch master
in repository resiprocate.

      from  41de5e6   Update changelog (DTLS, plugins)
      adds  d84d87b   Imported Upstream version 1.9.0~beta8
       new  532d0f9   Merge tag 'upstream/1.9.0_beta8'
       new  439ac0e   Update for v1.9.0~beta8-1
       new  ed3dd0a   Build and install pyroute plugin in repro package

The 3 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:
 Makefile.in                                        |   6 +
 aclocal.m4                                         | 160 +++++++++++
 apps/Makefile.in                                   |   6 +
 apps/clicktocall/Makefile.in                       |   6 +
 apps/clicktocall/test/Makefile.in                  |   6 +
 apps/ichat-gw/Makefile.in                          |   6 +
 apps/ichat-gw/jabberconnector/Makefile.in          |   6 +
 apps/sipdial/Makefile.in                           |   6 +
 config.h.in                                        |   3 +
 configure                                          | 303 ++++++++++++++++++-
 configure.ac                                       |  18 +-
 debian/changelog                                   |   7 +
 debian/control                                     |   2 +-
 debian/repro.dirs                                  |   1 +
 debian/repro.install                               |   2 +
 debian/rules                                       |   5 +-
 p2p/Makefile.in                                    |   6 +
 p2p/s2c/s2c/Makefile.in                            |   6 +
 presSvr/Makefile.in                                |   6 +
 reTurn/Makefile.in                                 |   6 +
 reTurn/client/Makefile.in                          |   6 +
 reTurn/client/test/Makefile.in                     |   6 +
 reTurn/test/Makefile.in                            |   6 +
 reflow/Flow.cxx                                    |   4 +-
 reflow/Flow.hxx                                    |   2 +-
 reflow/Makefile.in                                 |   6 +
 repro/Makefile.in                                  |   6 +
 repro/Plugin.hxx                                   |   3 +-
 repro/ReproRunner.cxx                              |  43 ++-
 repro/ReproRunner.hxx                              |   1 +
 repro/Worker.hxx                                   |   3 +
 repro/WorkerThread.cxx                             |  35 ++-
 repro/accountingconsumers/Makefile.in              |   6 +
 repro/monkeys/LocationServer.cxx                   |   2 +-
 repro/plugins/Makefile.am                          |   3 +
 repro/plugins/Makefile.in                          |  11 +-
 repro/plugins/example/ExamplePlugin.cxx            |  39 ++-
 repro/plugins/example/Makefile.in                  |   6 +
 repro/plugins/pyroute/Makefile.am                  |  21 ++
 repro/plugins/{example => pyroute}/Makefile.in     | 136 +++++++--
 repro/plugins/pyroute/PyRoutePlugin.cxx            | 320 +++++++++++++++++++++
 repro/plugins/pyroute/PyRouteWorker.cxx            | 282 ++++++++++++++++++
 .../plugins/pyroute/PyRouteWorker.hxx              |  98 ++++---
 .../pyroute/PyThreadSupport.hxx}                   |  53 +++-
 repro/plugins/pyroute/README.txt                   |  46 +++
 repro/plugins/pyroute/example.py                   |  65 +++++
 repro/plugins/pyroute/example_ldap.py              | 114 ++++++++
 repro/reprocmd/Makefile.in                         |   6 +
 repro/test/Makefile.in                             |   6 +
 resip/Makefile.in                                  |   6 +
 resip/certs/Makefile.in                            |   6 +
 resip/dum/Makefile.in                              |   6 +
 resip/dum/ServerInviteSession.cxx                  |  33 ++-
 resip/dum/test/Makefile.in                         |   6 +
 resip/recon/MOHParkServer/Makefile.in              |   6 +
 resip/recon/Makefile.in                            |   6 +
 resip/recon/test/Makefile.in                       |   6 +
 resip/rend/Makefile.in                             |   6 +
 resip/stack/CancelableTimerQueue.hxx               |   6 +-
 resip/stack/ConnectionBase.cxx                     |   4 +-
 resip/stack/Makefile.in                            |   6 +
 resip/stack/test/Makefile.in                       |   6 +
 resiprocate.spec                                   |   8 +-
 resiprocate.spec.in                                |   4 +-
 rutil/Makefile.in                                  |   6 +
 rutil/dns/ares/Makefile.in                         |   6 +
 rutil/test/Makefile.in                             |   6 +
 rutil/test/testThreadIf.cxx                        |   2 +-
 tfm/CheckContacts.cxx                              |   4 +-
 tfm/CheckFetchedContacts.cxx                       |   4 +-
 tfm/Makefile.in                                    |   6 +
 tfm/Resolver.cxx                                   |   4 +-
 tfm/repro/Makefile.in                              |   6 +
 tfm/tfdum/Makefile.in                              |   6 +
 tfm/tfdum/dumTests.cxx                             |  41 +++
 75 files changed, 1964 insertions(+), 144 deletions(-)
 create mode 100644 repro/plugins/pyroute/Makefile.am
 copy repro/plugins/{example => pyroute}/Makefile.in (61%)
 create mode 100644 repro/plugins/pyroute/PyRoutePlugin.cxx
 create mode 100644 repro/plugins/pyroute/PyRouteWorker.cxx
 copy resip/stack/WsTransport.cxx => repro/plugins/pyroute/PyRouteWorker.hxx (50%)
 copy repro/{BasicWsConnectionValidator.hxx => plugins/pyroute/PyThreadSupport.hxx} (60%)
 create mode 100644 repro/plugins/pyroute/README.txt
 create mode 100644 repro/plugins/pyroute/example.py
 create mode 100755 repro/plugins/pyroute/example_ldap.py

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



More information about the Pkg-voip-commits mailing list