Received: by mail.netbsd.org (Postfix, from userid 605) id A3D9784D8B; Fri, 14 Oct 2022 19:31:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D546984D10 for ; Fri, 14 Oct 2022 19:31:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 7ku9D8VSd2wg for ; Fri, 14 Oct 2022 19:31:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E90E584D09 for ; Fri, 14 Oct 2022 19:31:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E29BCFA90; Fri, 14 Oct 2022 19:31:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1665775873270680" MIME-Version: 1.0 Date: Fri, 14 Oct 2022 19:31:13 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBGYXViZXJ0ZWF1?= Subject: CVS commit: pkgsrc/net/erlang-xmpp To: pkgsrc-changes@NetBSD.org Reply-To: triaxx@netbsd.org X-Mailer: log_accum Message-Id: <20221014193113.E29BCFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1665775873270680 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: triaxx Date: Fri Oct 14 19:31:13 UTC 2022 Modified Files: pkgsrc/net/erlang-xmpp: Makefile PLIST distinfo Log Message: erlang-xmpp: Update to 1.6.0 upstream changes: ----------------- Version 1.6.0 o Updating fast_tls to version 1.1.16. o Updating stringprep to version 1.0.29. o Support additional namespaces in MIX elements o Add support for MIX presences, update_subscriptions and unsubscribe o Add allow_query_users to muc config Version 1.5.8 o Updating fast_tls to version 1.1.15. o Updating ezlib to version 1.0.12. Version 1.5.7 o Updating ezlib to version 1.0.11. o Updating fast_tls to version 1.1.14. o Updating fast_xml to version 1.1.49. o Updating stringprep to version 1.0.28. o Updating p1_utils to version 1.0.25. o Make socket release on detach, free resources earlier o Fix crash when doing srv resolution Version 1.5.6 o Updating fast_xml to version 1.1.48. Version 1.5.5 o Updating fast_xml to version 1.1.47. o Allow 'max' value in pubsub max_items, item_expire and children_max o Add compatibility quirk for old smack version in roster o Don't generate code attribute in errors (deprececed by rfc6120) o Change internal representation of markable element o Add MUC hats support o Generate documentation before publishing to hex Version 1.5.4 o Updating ezlib to version 1.0.10. o Updating fast_tls to version 1.1.13. o Updating fast_xml to version 1.1.47. o Updating stringprep to version 1.0.27. o Updating p1_utils to version 1.0.23. o Switch from using Travis to Github Actions as CI o Add support for MIX roster extension o Allow children inside address element o Make compatible with OTP24 o Allow arbitrary children inside vCard To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/net/erlang-xmpp/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/net/erlang-xmpp/PLIST cvs rdiff -u -r1.16 -r1.17 pkgsrc/net/erlang-xmpp/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1665775873270680 Content-Disposition: inline Content-Length: 3735 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/erlang-xmpp/Makefile diff -u pkgsrc/net/erlang-xmpp/Makefile:1.17 pkgsrc/net/erlang-xmpp/Makefile:1.18 --- pkgsrc/net/erlang-xmpp/Makefile:1.17 Thu May 20 14:18:43 2021 +++ pkgsrc/net/erlang-xmpp/Makefile Fri Oct 14 19:31:13 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2021/05/20 14:18:43 triaxx Exp $ +# $NetBSD: Makefile,v 1.18 2022/10/14 19:31:13 triaxx Exp $ -DISTNAME= xmpp-1.5.3 +DISTNAME= xmpp-1.6.0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=processone/} @@ -9,12 +9,12 @@ HOMEPAGE= https://github.com/processone/ COMMENT= XMPP parsing and serialization library on top of Fast XML LICENSE= apache-2.0 -DEPENDS+= erlang-p1_utils>=1.0.21:../../misc/erlang-p1_utils -DEPENDS+= erlang-fast_xml>=1.1.45:../../textproc/erlang-fast_xml -DEPENDS+= erlang-fast_tls>=1.1.10:../../security/erlang-fast_tls -DEPENDS+= erlang-ezlib>=1.0.9:../../devel/erlang-ezlib +DEPENDS+= erlang-p1_utils>=1.0.25:../../misc/erlang-p1_utils +DEPENDS+= erlang-fast_xml>=1.1.49:../../textproc/erlang-fast_xml +DEPENDS+= erlang-fast_tls>=1.1.16:../../security/erlang-fast_tls +DEPENDS+= erlang-ezlib>=1.0.12:../../devel/erlang-ezlib DEPENDS+= erlang-idna>=6.0.0:../../net/erlang-idna -DEPENDS+= erlang-stringprep>=1.0.24:../../textproc/erlang-stringprep +DEPENDS+= erlang-stringprep>=1.0.29:../../textproc/erlang-stringprep GITHUB_PROJECT= xmpp Index: pkgsrc/net/erlang-xmpp/PLIST diff -u pkgsrc/net/erlang-xmpp/PLIST:1.11 pkgsrc/net/erlang-xmpp/PLIST:1.12 --- pkgsrc/net/erlang-xmpp/PLIST:1.11 Thu May 20 14:18:43 2021 +++ pkgsrc/net/erlang-xmpp/PLIST Fri Oct 14 19:31:13 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2021/05/20 14:18:43 triaxx Exp $ +@comment $NetBSD: PLIST,v 1.12 2022/10/14 19:31:13 triaxx Exp $ lib/erlang/lib/xmpp lib/erlang/lib/xmpp-${PKGVERSION}/ebin/XmppAddr.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/captcha_form.beam @@ -76,6 +76,7 @@ lib/erlang/lib/xmpp-${PKGVERSION}/ebin/x lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0297.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0300.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0313.beam +lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0317.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0319.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0328.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0333.beam @@ -88,6 +89,7 @@ lib/erlang/lib/xmpp-${PKGVERSION}/ebin/x lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0363.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0369.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0377.beam +lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0403.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0405.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0417.beam lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0430.beam Index: pkgsrc/net/erlang-xmpp/distinfo diff -u pkgsrc/net/erlang-xmpp/distinfo:1.16 pkgsrc/net/erlang-xmpp/distinfo:1.17 --- pkgsrc/net/erlang-xmpp/distinfo:1.16 Tue Oct 26 11:05:34 2021 +++ pkgsrc/net/erlang-xmpp/distinfo Fri Oct 14 19:31:13 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.16 2021/10/26 11:05:34 nia Exp $ +$NetBSD: distinfo,v 1.17 2022/10/14 19:31:13 triaxx Exp $ -BLAKE2s (xmpp-1.5.3.tar.gz) = f196c964bcdc2fe0644c386670e9f6bce3645d4b489bba8958a6aa21cf5d1cc9 -SHA512 (xmpp-1.5.3.tar.gz) = 44b79eb73143ce3559ec8fe112af5ff22a7ecbffa935c8e76c645f7845005e7459a6ac1b726312be4eff22199eafd27ff5aab06cec1b1d961c80374ce83b7898 -Size (xmpp-1.5.3.tar.gz) = 510756 bytes +BLAKE2s (xmpp-1.6.0.tar.gz) = a3851d375a2abc8f8d9d30c5b8ca856b61c8523541df265c6859563433f0e632 +SHA512 (xmpp-1.6.0.tar.gz) = 296a2f6c06e1a82e74e5484ae082124ad9ba05830aee2ecfea49ccf01a4fc4d46d94b8960ac5309911db66f0e8f2d06f48a0571f31cd5873c6e003b394f34300 +Size (xmpp-1.6.0.tar.gz) = 561026 bytes --_----------=_1665775873270680--