[Pkg-xmpp-commits] [jabberd2] branch jessie-backports updated (f9e839d -> 0554b69)

Simon Josefsson jas at moszumanska.debian.org
Mon Jul 18 13:10:59 UTC 2016


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

jas pushed a change to branch jessie-backports
in repository jabberd2.

      from  f9e839d   Merge changelog.
      adds  ff6c91d   Replace libmysqlclient15-dev with libmysqlclient-dev.  Closes: #790452.
      adds  d128bfc   Put systemd service files in /lib/systemd/system (lintian systemd-service-file-outside-lib).
      adds  a0d7bde   Imported Upstream version 2.3.4
      adds  0242eb5   Merge tag 'upstream/2.3.4'
      adds  f97d673   New upstream version.
      adds  282d487   Update for 2.3.4.
      adds  64d9107   Depend on libhttp-parser-dev to enable new websocket support.
      adds  baefa8e   Imported Upstream version 2.4.0
      adds  79a30b6   Merge tag 'upstream/2.4.0'
      adds  8336308   New upstream version.
      adds  822e22b   Use https URLs in Vcs-Browser and Vcs-Git. Update Standards-Version from 3.9.6 to 3.9.8.
      adds  1a36e18   Adapt debian/patches/etc_dbpath.diff.
      adds  f0c0967   Adapt pkgname.diff.
      adds  ced871e   Add m4-ax_check_compile_flag.diff.
       new  59714a0   Merge tag 'debian/2.4.0-1' into jessie-backports
       new  0554b69   Jessie-backportsify gbp.conf.

The 2 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                                   |   2 +
 .travis.yml                                  |  24 ++
 Makefile.am                                  |   7 +-
 NEWS                                         |  75 ++++
 README                                       | 213 +---------
 README.md                                    | 167 +++++++-
 c2s/Makefile.am                              |   3 +
 c2s/authreg.c                                |  68 +--
 c2s/c2s.c                                    |  73 +---
 c2s/c2s.h                                    |  26 +-
 c2s/main.c                                   | 123 ++++--
 configure.ac                                 |  48 ++-
 debian/changelog                             |  31 ++
 debian/control                               |  10 +-
 debian/gbp.conf                              |   2 +
 debian/patches/etc_dbpath.diff               |  16 +-
 debian/patches/m4-ax_check_compile_flag.diff | 103 +++++
 debian/patches/pkgname.diff                  |   4 +-
 debian/patches/series                        |   1 +
 debian/patches/usr_etc.diff                  |  11 +-
 debian/rules                                 |   1 +
 etc/c2s.xml.dist.in                          |  37 +-
 etc/router-filter.xml.dist.in                |   6 +
 etc/s2s.xml.dist.in                          |   5 +
 etc/sm.xml.dist.in                           |  32 +-
 jabberd2.pro                                 |  41 ++
 mio/mio_impl.h                               |  49 ++-
 router/filter.c                              |  43 +-
 router/main.c                                |   4 +-
 router/router.c                              |  42 +-
 router/router.h                              |   2 +
 router/user.c                                |  18 +-
 s2s/in.c                                     |  20 +-
 s2s/main.c                                   |  79 ++--
 s2s/out.c                                    |  38 +-
 s2s/s2s.h                                    |   7 +
 sm/Makefile.am                               |  10 +-
 sm/dispatch.c                                |  24 +-
 sm/main.c                                    |   3 +-
 sm/mm.c                                      |   5 +-
 sm/mod_announce.c                            | 105 ++---
 sm/mod_deliver.c                             |   6 +-
 sm/mod_disco.c                               |  88 ++--
 sm/mod_iq_version.c                          |  38 +-
 sm/mod_privacy.c                             |  29 +-
 sm/mod_roster_publish.c                      |   7 +-
 sm/mod_status.c                              |  26 +-
 sm/mod_template_roster.c                     |  16 +-
 sm/mod_verify.c                              | 291 +++++++++++++
 sm/pres.c                                    |  21 +-
 sm/sm.h                                      |   1 +
 storage/Makefile.am                          |   2 +-
 storage/authreg_anon.c                       |   7 -
 storage/authreg_db.c                         |  15 +-
 storage/authreg_ldap.c                       |  13 +-
 storage/authreg_ldapfull.c                   |   9 +-
 storage/authreg_mysql.c                      |  49 ++-
 storage/authreg_pgsql.c                      | 244 +++++++----
 storage/authreg_sqlite.c                     | 146 +++----
 storage/storage.c                            |   1 +
 storage/storage.h                            |   7 +-
 storage/storage_db.c                         |  39 +-
 storage/storage_mysql.c                      |  43 +-
 storage/storage_pgsql.c                      |  15 +-
 storage/storage_sqlite.c                     |  84 +---
 sx/Makefile.am                               |   4 +
 sx/ack.c                                     |  12 +-
 sx/callback.c                                |   3 +-
 sx/client.c                                  |   6 +-
 sx/compress.c                                |  21 +-
 sx/error.c                                   |  36 +-
 sx/io.c                                      |  54 ++-
 sx/plugins.h                                 |  34 +-
 sx/sasl.c                                    |  49 ++-
 sx/server.c                                  |  36 +-
 sx/ssl.c                                     | 441 ++++++++++----------
 sx/sx.c                                      |  14 +-
 sx/sx.h                                      |  21 +-
 sx/websocket.c                               | 602 +++++++++++++++++++++++++++
 tests/Makefile.am                            |   2 +-
 tests/check_config.c                         |  25 +-
 tools/db-setup.sqlite                        |  19 +
 tools/git                                    |  13 +-
 util/access.c                                |   7 +-
 util/base64.c                                | 101 ++++-
 util/config.c                                |  19 +-
 util/crypt_blowfish.c                        |  18 +-
 util/jid.c                                   |  13 +-
 util/nad.c                                   | 110 +++--
 util/nad.h                                   |  24 +-
 util/sha1.c                                  |  20 +-
 util/uri.h                                   |   1 +
 util/xdata.c                                 |   3 +-
 93 files changed, 3118 insertions(+), 1365 deletions(-)
 create mode 100644 .travis.yml
 create mode 100644 debian/patches/m4-ax_check_compile_flag.diff
 create mode 100644 jabberd2.pro
 create mode 100644 sm/mod_verify.c
 create mode 100644 sx/websocket.c

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



More information about the Pkg-xmpp-commits mailing list