Received: by mail.netbsd.org (Postfix, from userid 605) id 9AAAD84D4E; Fri, 14 Oct 2022 20:05:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ABCEE84D4E for ; Fri, 14 Oct 2022 20:05:58 +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 9i8NAjzBJo7Z for ; Fri, 14 Oct 2022 20:05:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B862284D00 for ; Fri, 14 Oct 2022 20:05:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A7BDEFA90; Fri, 14 Oct 2022 20:05:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166577795797950" MIME-Version: 1.0 Date: Fri, 14 Oct 2022 20:05:57 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBGYXViZXJ0ZWF1?= Subject: CVS commit: pkgsrc/net/erlang-stun To: pkgsrc-changes@NetBSD.org Reply-To: triaxx@netbsd.org X-Mailer: log_accum Message-Id: <20221014200557.A7BDEFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166577795797950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: triaxx Date: Fri Oct 14 20:05:57 UTC 2022 Modified Files: pkgsrc/net/erlang-stun: Makefile PLIST distinfo Removed Files: pkgsrc/net/erlang-stun/patches: patch-Makefile Log Message: erlang-stun: Update to 1.2.6 upstream changes: ----------------- Version 1.2.6 o Updating fast_tls to version 1.1.16. o Increase receive timeout Version 1.2.5 o Hand over error events to callback function. o Improve TCP/TLS performance if no traffic shaper is configured. Version 1.2.4 o Improve handling of invalid REQUESTED-ADDRESS-FAMILY value. o Apply minor logging improvements. o Reopen listener sockets if they were closed. Version 1.2.3 o Don't complain about proxy_protocol option. o Gracefully handle errors while receiving UDP data. o Reduce log level of errors that may occur during normal operation. o Restart listeners on failure. Version 1.2.2 o Updating fast_tls to version 1.1.15. o Updating p1_utils to version 1.0.25. Version 1.2.1 o Updating fast_tls to version 1.1.14. o Updating p1_utils to version 1.0.23. o Include 'SOFTWARE' attribute in responses. o Use random session IDs. Version 1.2.0 o Allow for whitelisting IP addresses/subnets. o Accept expired credentials for TURN session refreshes. o Accept additional TLS options/ciphers. Version 1.1.0 o Support the HAproxy protocol (v1 and v2). o Don't close listener if accepting a connection fails. o Only use new 'socket' backend for multiplexing TCP/TLS listeners. Version 1.0.47 o Disable new 'socket' backend for TCP/TLS connections on Windows. Version 1.0.46 o Use new 'socket' backend for TCP/TLS connections (on Erlang/OTP 23+). o Support multiplexing TCP/TLS listeners (on Erlang/OTP 23+). Version 1.0.45 o Improve UDP receive performance. o Reduce risk of UDP packet loss. o Support multiple passwords to facilitate rollover. Version 1.0.44 o Updating fast_tls to version 1.1.13. o Updating p1_utils to version 1.0.23. o Switch from using Travis to Github Actions as CI To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/erlang-stun/Makefile \ pkgsrc/net/erlang-stun/distinfo cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/erlang-stun/PLIST cvs rdiff -u -r1.1 -r0 pkgsrc/net/erlang-stun/patches/patch-Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166577795797950 Content-Disposition: inline Content-Length: 3010 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/erlang-stun/Makefile diff -u pkgsrc/net/erlang-stun/Makefile:1.18 pkgsrc/net/erlang-stun/Makefile:1.19 --- pkgsrc/net/erlang-stun/Makefile:1.18 Fri May 21 10:50:08 2021 +++ pkgsrc/net/erlang-stun/Makefile Fri Oct 14 20:05:57 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2021/05/21 10:50:08 triaxx Exp $ +# $NetBSD: Makefile,v 1.19 2022/10/14 20:05:57 triaxx Exp $ -DISTNAME= stun-1.0.43 -PKGREVISION= 1 +DISTNAME= stun-1.2.6 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=processone/} @@ -10,8 +9,8 @@ HOMEPAGE= https://github.com/processone/ COMMENT= STUN and TURN library for Erlang / Elixir LICENSE= apache-2.0 -DEPENDS+= erlang-fast_tls>=1.1.12:../../security/erlang-fast_tls -DEPENDS+= erlang-p1_utils>=1.0.22:../../misc/erlang-p1_utils +DEPENDS+= erlang-fast_tls>=1.1.16:../../security/erlang-fast_tls +DEPENDS+= erlang-p1_utils>=1.0.25:../../misc/erlang-p1_utils GITHUB_PROJECT= stun Index: pkgsrc/net/erlang-stun/distinfo diff -u pkgsrc/net/erlang-stun/distinfo:1.18 pkgsrc/net/erlang-stun/distinfo:1.19 --- pkgsrc/net/erlang-stun/distinfo:1.18 Tue Oct 26 11:05:34 2021 +++ pkgsrc/net/erlang-stun/distinfo Fri Oct 14 20:05:57 2022 @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.18 2021/10/26 11:05:34 nia Exp $ +$NetBSD: distinfo,v 1.19 2022/10/14 20:05:57 triaxx Exp $ -BLAKE2s (stun-1.0.43.tar.gz) = b2c9f5a11fda1474e01223a146574dc7e515d1bd871b9cb474271b56e137a6e5 -SHA512 (stun-1.0.43.tar.gz) = dbd786f4e2a11a1d941d5db92f9ea3ec726b0cdf100d3e8b7badca2e6ba086680707765412d154b2fe4958d3a695984c5be25a73725ef80643dbe57f981f9a02 -Size (stun-1.0.43.tar.gz) = 39788 bytes -SHA1 (patch-Makefile) = fad2069c7df3d94a69428104c1a6f50b9b350202 +BLAKE2s (stun-1.2.6.tar.gz) = dcf2eec5e06eebdbd0e253cf9bee5ccf60cc3da29209a2902400cc5b0057ca73 +SHA512 (stun-1.2.6.tar.gz) = 6d6d0468c0272662326286a31402f748abce174c04edfcc9f49f08bf78019f6d34c62f706c8b3cf7e1d556ded72c227f55037926e2f4724f05cde9fac67cbe64 +Size (stun-1.2.6.tar.gz) = 42153 bytes Index: pkgsrc/net/erlang-stun/PLIST diff -u pkgsrc/net/erlang-stun/PLIST:1.2 pkgsrc/net/erlang-stun/PLIST:1.3 --- pkgsrc/net/erlang-stun/PLIST:1.2 Sat Jan 16 13:00:27 2021 +++ pkgsrc/net/erlang-stun/PLIST Fri Oct 14 20:05:57 2022 @@ -1,10 +1,13 @@ -@comment $NetBSD: PLIST,v 1.2 2021/01/16 13:00:27 triaxx Exp $ +@comment $NetBSD: PLIST,v 1.3 2022/10/14 20:05:57 triaxx Exp $ lib/erlang/lib/stun lib/erlang/lib/stun-${PKGVERSION}/ebin/stun.app lib/erlang/lib/stun-${PKGVERSION}/ebin/stun.beam +lib/erlang/lib/stun-${PKGVERSION}/ebin/stun_acceptor.beam +lib/erlang/lib/stun-${PKGVERSION}/ebin/stun_acceptor_sup.beam lib/erlang/lib/stun-${PKGVERSION}/ebin/stun_app.beam lib/erlang/lib/stun-${PKGVERSION}/ebin/stun_codec.beam lib/erlang/lib/stun-${PKGVERSION}/ebin/stun_listener.beam +lib/erlang/lib/stun-${PKGVERSION}/ebin/stun_listener_sup.beam lib/erlang/lib/stun-${PKGVERSION}/ebin/stun_logger.beam lib/erlang/lib/stun-${PKGVERSION}/ebin/stun_shaper.beam lib/erlang/lib/stun-${PKGVERSION}/ebin/stun_sup.beam --_----------=_166577795797950--