diff options
author | schnoebe <schnoebe@pkgsrc.org> | 2016-05-25 16:24:54 +0000 |
---|---|---|
committer | schnoebe <schnoebe@pkgsrc.org> | 2016-05-25 16:24:54 +0000 |
commit | a70ba8f81558aded8ad87e227997497fb3393802 (patch) | |
tree | f4f0f72d2ba7f7639fb75b750f886f711a47ea9d /chat | |
parent | b38f2b3a504f31552dfccc00f7e51d7067234796 (diff) | |
download | pkgsrc-a70ba8f81558aded8ad87e227997497fb3393802.tar.gz |
Update to jabberd2 2.4.0.
Note: there is a change in the numbering scheme, the third digit will
only be used for patches/bug fixes in the future.
Note: websockets support isn't available in pkgsrc (yet. the required
library still needs packaged.)
hanges:
* Check for C99 support in compiler
* Count RIO bytes and check against max stanza size
* Gracefully drop unhandled HTTP connections
* wss:// (WebSocket over SSL) support in c2s
* Allow BareJID S10N packets
* Fallback to connecting S2S using local.ip when none of the origin.ip
works
* Removed explicit SQLite transactions
* SQLite postconnect SQL support
* SQLite DB setup script improvements
* Many Coverity Scan and cppcheck detected issues fixed
* Properly lowercase SASL mechanisms in c2s
* Support out-of-source build
Diffstat (limited to 'chat')
-rw-r--r-- | chat/jabberd2/Makefile | 5 | ||||
-rw-r--r-- | chat/jabberd2/distinfo | 11 | ||||
-rw-r--r-- | chat/jabberd2/patches/patch-configure | 15 |
3 files changed, 7 insertions, 24 deletions
diff --git a/chat/jabberd2/Makefile b/chat/jabberd2/Makefile index 51f15f4b5ef..51652e6dea2 100644 --- a/chat/jabberd2/Makefile +++ b/chat/jabberd2/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.107 2016/04/11 19:01:43 ryoon Exp $ +# $NetBSD: Makefile,v 1.108 2016/05/25 16:24:54 schnoebe Exp $ -DISTNAME= jabberd-2.3.6 -PKGREVISION= 2 +DISTNAME= jabberd-2.4.0 CATEGORIES= chat MASTER_SITES= ${MASTER_SITE_GITHUB:=jabberd2/jabberd2/releases/download/${DISTNAME}/} EXTRACT_SUFX= .tar.xz diff --git a/chat/jabberd2/distinfo b/chat/jabberd2/distinfo index 508fc6a1013..6a336b4c271 100644 --- a/chat/jabberd2/distinfo +++ b/chat/jabberd2/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.38 2016/02/28 21:58:13 schnoebe Exp $ +$NetBSD: distinfo,v 1.39 2016/05/25 16:24:54 schnoebe Exp $ -SHA1 (jabberd-2.3.6.tar.xz) = 23b859fa26503b8c3a7aa356b5ee688e7e935cf2 -RMD160 (jabberd-2.3.6.tar.xz) = 92e445594e25fac928816951524692464433c974 -SHA512 (jabberd-2.3.6.tar.xz) = c5efa443865028874e1c1f15937064edef4c1699afb14b55963e3cd86930a67dffed7830ab1ae77522cbf797ef9ab89d044ccb28ac65904ffa7e79dee155e8aa -Size (jabberd-2.3.6.tar.xz) = 1503864 bytes +SHA1 (jabberd-2.4.0.tar.xz) = 6c51b4fe77d917d46f63864d3852877c1ed722a9 +RMD160 (jabberd-2.4.0.tar.xz) = c4d07cc205199df808977104d9309ad01fcc0dff +SHA512 (jabberd-2.4.0.tar.xz) = eb621d2d76806361f54db49d1d3b2be0e0b5559f8ec64bc8ce8cd10f1455e8f4b98395cf790f969cb8ef63f2fa83f5974c5b70aaa82bbe670e1aa15a3d5a0a0b +Size (jabberd-2.4.0.tar.xz) = 1507452 bytes SHA1 (patch-Makefile.in) = 31d8dc4a5446e96079e1016afb45dc7a602b98c9 -SHA1 (patch-configure) = 1a58cc7b015a73009d8140402dfb739fc48e7fa0 diff --git a/chat/jabberd2/patches/patch-configure b/chat/jabberd2/patches/patch-configure deleted file mode 100644 index 14c940fde0a..00000000000 --- a/chat/jabberd2/patches/patch-configure +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-configure,v 1.5 2012/08/26 18:25:47 adam Exp $ - -Allow -Os in CFLAGS. - ---- configure.orig 2011-05-31 22:11:47.000000000 +0000 -+++ configure -@@ -11762,7 +11762,7 @@ fi - # check for optimisation level - { $as_echo "$as_me:${as_lineno-$LINENO}: checking CFLAGS optimization level" >&5 - $as_echo_n "checking CFLAGS optimization level... " >&6; } --if echo $CFLAGS | grep '.*-O[3s].*' >/dev/null 2>&1; then -+if echo $CFLAGS | grep '.*-O[3].*' >/dev/null 2>&1; then - as_fn_error $? "maximum allowed optimization level is -O2" "$LINENO" 5 - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: fine" >&5 |