pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/erlang-xmpp



Module Name:    pkgsrc
Committed By:   gdt
Date:           Fri Apr 25 11:35:56 UTC 2025

Modified Files:
        pkgsrc/net/erlang-xmpp: Makefile PLIST distinfo

Log Message:
net/erlang-xmpp: Update to 1.10.0

# Version 1.10.0

* Update XEP-0317 Hats to version 0.2.0
* Improve reporting of tls errors
* Add webchat_url field in MUC config
* Support for multiple password formats in get_password hook

# Version 1.9.4

* Update support for XEP-0474 to version 0.4

# Version 1.9.3

* Make ssdp hash calculation don't account fast mechanisms

# Version 1.9.2

* Add separate element for bidi feature

# Version 1.9.1

* Updating fast_xml to version 1.1.55.
* Make `allow_unencrypted_sasl2` option also allow connection
  for clients that tell us they wanted to use but didn't find
  channel bindings
* Implement XEP-0484 Fast Authentication Streamlining Tokens
* Improvements to XEP-0480 parsing
* Improve `make spec` and `make xdata` commands

# Version 1.9.0

* Updating fast_tls to version 1.1.22.
* Updating fast_xml to version 1.1.53.
* Add support for XEP-0480 SASL Upgrade Tasks
* Add support for XEP-0288 Bidirectional Server-to-Server Connections
* Improve failback handling for S2S connections using direct tls
* Add option for allowing SASL2 on unencrypted connections
* Update spec of XEP-0356 Privileged Entity to version 0.4.1
* Automatic "make spec xdata"


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 pkgsrc/net/erlang-xmpp/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/net/erlang-xmpp/PLIST
cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/erlang-xmpp/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/erlang-xmpp/Makefile
diff -u pkgsrc/net/erlang-xmpp/Makefile:1.19 pkgsrc/net/erlang-xmpp/Makefile:1.20
--- pkgsrc/net/erlang-xmpp/Makefile:1.19        Thu Aug 22 07:24:48 2024
+++ pkgsrc/net/erlang-xmpp/Makefile     Fri Apr 25 11:35:56 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.19 2024/08/22 07:24:48 adam Exp $
+# $NetBSD: Makefile,v 1.20 2025/04/25 11:35:56 gdt Exp $
 
-DISTNAME=      xmpp-1.8.3
+DISTNAME=      xmpp-1.10.0
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=processone/}
 GITHUB_PROJECT=        xmpp

Index: pkgsrc/net/erlang-xmpp/PLIST
diff -u pkgsrc/net/erlang-xmpp/PLIST:1.13 pkgsrc/net/erlang-xmpp/PLIST:1.14
--- pkgsrc/net/erlang-xmpp/PLIST:1.13   Thu Aug 22 07:24:48 2024
+++ pkgsrc/net/erlang-xmpp/PLIST        Fri Apr 25 11:35:56 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.13 2024/08/22 07:24:48 adam Exp $
+@comment $NetBSD: PLIST,v 1.14 2025/04/25 11:35:56 gdt Exp $
 lib/erlang/lib/xmpp
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/XmppAddr.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/captcha_form.beam
@@ -73,6 +73,7 @@ lib/erlang/lib/xmpp-${PKGVERSION}/ebin/x
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0264.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0279.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0280.beam
+lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0288.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0297.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0300.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0313.beam
@@ -101,6 +102,8 @@ lib/erlang/lib/xmpp-${PKGVERSION}/ebin/x
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0425.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0430.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0440.beam
+lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0480.beam
+lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xep0484.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp.app
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp_codec.beam
@@ -110,6 +113,7 @@ lib/erlang/lib/xmpp-${PKGVERSION}/ebin/x
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp_sasl.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp_sasl_anonymous.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp_sasl_digest.beam
+lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp_sasl_fast.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp_sasl_oauth.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp_sasl_plain.beam
 lib/erlang/lib/xmpp-${PKGVERSION}/ebin/xmpp_sasl_scram.beam

Index: pkgsrc/net/erlang-xmpp/distinfo
diff -u pkgsrc/net/erlang-xmpp/distinfo:1.18 pkgsrc/net/erlang-xmpp/distinfo:1.19
--- pkgsrc/net/erlang-xmpp/distinfo:1.18        Thu Aug 22 07:24:48 2024
+++ pkgsrc/net/erlang-xmpp/distinfo     Fri Apr 25 11:35:56 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.18 2024/08/22 07:24:48 adam Exp $
+$NetBSD: distinfo,v 1.19 2025/04/25 11:35:56 gdt Exp $
 
-BLAKE2s (xmpp-1.8.3.tar.gz) = 039efe658852409dd63a7f57b485f4cb243ec24eb3b0ab97fc031e80835df77b
-SHA512 (xmpp-1.8.3.tar.gz) = 4f925a611258617c8a49feb90b174dc8889e91beb1b3bf091527e1fb32d6a8ed5b167a8fd51778745d71de67efec1615dbbd6a539b49f0af216c6822472c9b54
-Size (xmpp-1.8.3.tar.gz) = 629078 bytes
+BLAKE2s (xmpp-1.10.0.tar.gz) = 014d31672b39415c35db6b18d4df523e73ddd6aec24cbf84ec06db787104609a
+SHA512 (xmpp-1.10.0.tar.gz) = 3f7b3e3aceca52af691ccc57c54672837df823f2a48cfd04998912b186a73db2e2a852310e324bd1fb014d608042b4fb69122565249b463b960e11dac0617bfb
+Size (xmpp-1.10.0.tar.gz) = 636436 bytes



Home | Main Index | Thread Index | Old Index