diff options
author | nros <nros@pkgsrc.org> | 2015-04-15 14:05:46 +0000 |
---|---|---|
committer | nros <nros@pkgsrc.org> | 2015-04-15 14:05:46 +0000 |
commit | 7ce47124a27d427c385fc3375c457e2bcb901339 (patch) | |
tree | d02c4a40797cc251bc3d02e67f40138a99007d08 /chat | |
parent | 6c6616d68070723882cd4442d4dc29ffa103d35d (diff) | |
download | pkgsrc-7ce47124a27d427c385fc3375c457e2bcb901339.tar.gz |
Update prosody to version 0.9.8.
Changelog:
Changes ordered by priority.
High:
* Ensure only valid UTF-8 is passed to libidn. It was found (CVE-2015-2059)
that libidn can read beyond the boundaries of the provided buffer when an
input string contains invalid UTF-8 sequences.
Systems where Prosody is compiled with libICU are not affected by this issue.
Medium:
* DNS: Fix traceback caused when DNS server IP is unroutable (issue 473)
* HTTP client: More robust handling of chunked encoding across packet
boundaries
* Stanza router: Fix handling of 'error' <iq>'s with multiple children
Low:
* c2s: Fix error reply when clients try to bind multiple resources on the
same stream (issue 484)
* s2s: Ensure to/from attributes are always present on stream headers, even
if empty (issue 468)
* Build scripts: Add --libdir option to ./configure to simplify building on
some platforms
* Fix traceback in datamanager when used outside of Prosody
(e.g. in some migration tools)
* mod_admin_telnet: Fix potential traceback in server:memory()
command (issue 471)
* HTTP server: Improved debug logging
Diffstat (limited to 'chat')
-rw-r--r-- | chat/prosody/Makefile | 4 | ||||
-rw-r--r-- | chat/prosody/distinfo | 10 | ||||
-rw-r--r-- | chat/prosody/patches/patch-aa | 10 |
3 files changed, 12 insertions, 12 deletions
diff --git a/chat/prosody/Makefile b/chat/prosody/Makefile index 6eedbdc7073..ea083844eaf 100644 --- a/chat/prosody/Makefile +++ b/chat/prosody/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.20 2014/12/15 11:49:50 fhajny Exp $ +# $NetBSD: Makefile,v 1.21 2015/04/15 14:05:46 nros Exp $ # -DISTNAME= prosody-0.9.7 +DISTNAME= prosody-0.9.8 CATEGORIES= chat MASTER_SITES= http://prosody.im/downloads/source/ diff --git a/chat/prosody/distinfo b/chat/prosody/distinfo index b82251d90fb..20f3ec5c375 100644 --- a/chat/prosody/distinfo +++ b/chat/prosody/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.8 2014/11/27 10:18:20 fhajny Exp $ +$NetBSD: distinfo,v 1.9 2015/04/15 14:05:46 nros Exp $ -SHA1 (prosody-0.9.7.tar.gz) = 5515e15077ea0e8e26b83614a02ad632374a256b -RMD160 (prosody-0.9.7.tar.gz) = 841f40b33852d2a67ab7b39892e1679bffd9a181 -Size (prosody-0.9.7.tar.gz) = 266638 bytes -SHA1 (patch-aa) = 3b4084a887b373bfdbef28028a4630bf9e26c17d +SHA1 (prosody-0.9.8.tar.gz) = e338eb995f3c594ab6d1f03a7f36224e93c31c0b +RMD160 (prosody-0.9.8.tar.gz) = d140de5c5bbfc176550e65db053c5adc87884811 +Size (prosody-0.9.8.tar.gz) = 268716 bytes +SHA1 (patch-aa) = db9f0e384e64069101a62e11284dd8b75032512b SHA1 (patch-ab) = 755dd6d77689ef56ea4468f943f149933be72378 SHA1 (patch-ad) = abcae34982fee846c00252be1c0b033a44ad65d0 SHA1 (patch-prosodyctl) = e3e3a8f03c6d7c74b9026cf7ada765ee86c8397e diff --git a/chat/prosody/patches/patch-aa b/chat/prosody/patches/patch-aa index 096a0ff2386..6fc8dc3115d 100644 --- a/chat/prosody/patches/patch-aa +++ b/chat/prosody/patches/patch-aa @@ -1,20 +1,20 @@ -$NetBSD: patch-aa,v 1.4 2014/03/10 13:01:17 fhajny Exp $ +$NetBSD: patch-aa,v 1.5 2015/04/15 14:05:46 nros Exp $ Fix installation directories and scripts ---- Makefile.orig 2014-01-12 11:41:40.000000000 +0000 +--- Makefile.orig 2015-03-24 19:18:04.000000000 +0000 +++ Makefile @@ -3,10 +3,11 @@ include config.unix BIN = $(DESTDIR)$(PREFIX)/bin CONFIG = $(DESTDIR)$(SYSCONFDIR) +EGDIR = $(DESTDIR)@EGDIR@ - MODULES = $(DESTDIR)$(PREFIX)/lib/prosody/modules - SOURCE = $(DESTDIR)$(PREFIX)/lib/prosody + MODULES = $(DESTDIR)$(LIBDIR)/prosody/modules + SOURCE = $(DESTDIR)$(LIBDIR)/prosody DATA = $(DESTDIR)$(DATADIR) -MAN = $(DESTDIR)$(PREFIX)/share/man +MAN = $(DESTDIR)$(PREFIX)/$(PKGMANDIR) - INSTALLEDSOURCE = $(PREFIX)/lib/prosody + INSTALLEDSOURCE = $(LIBDIR)/prosody INSTALLEDCONFIG = $(SYSCONFDIR) @@ -22,26 +23,39 @@ ifeq ($(EXCERTS),yes) endif |