Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4D28084E80 for ; Mon, 16 Oct 2023 19:14:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id wbrNgUWP29Or for ; Mon, 16 Oct 2023 19:14:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 99CCA84D0E for ; Mon, 16 Oct 2023 19:14:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 97343FADC; Mon, 16 Oct 2023 19:14:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169748366796380" MIME-Version: 1.0 Date: Mon, 16 Oct 2023 19:14:27 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/ngtcp2 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231016191427.97343FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169748366796380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Oct 16 19:14:27 UTC 2023 Modified Files: pkgsrc/net/ngtcp2: Makefile PLIST distinfo Log Message: ngtcp2: updated to 1.0.0 Simplify std::unique_ptr get and release Fix assertion failure Reset ppe pending state explicitly Print a correct program name after usage Rename all occurrences of bbr2 to bbrv2 Fix compile error with libressl Add dependabot to update actions Bump actions/checkout from 3 to 4 Bump docker/login-action from 2 to 3 Bump docker/setup-buildx-action from 2 to 3 Bump docker/build-push-action from 4 to 5 docker: Bump base image to debian 12 Add release script qlog: Support STREAMS_BLOCKED frame qlog: Add missing stream_id to stream_data_blocked Add tests for ngtcp2_qlog_write_frame Merge ngtcp2_crypto into ngtcp2_stream Bump quictls Bbrv2 tweak Support latest bbr only Add log event filter Add NGTCP2_LOG_EVENT_CC Simplify *pfrc == NULL and rv != NGTCP2_ERR_NOBUF conditions Simplify ngtcp2_vec_merge Log event cc fix ngtcp2_crypto_verify_retry_token: Return -1 if cil validation fails Rename NGTCP2_LOG_EVENT_RCV to NGTCP2_LOG_EVENT_LDC Shutdown stream between write stream calls Fix assertion failure Fix missing prefix for AF_INET macros in ngtcp2_crypto.c Rework how network families are defined with generic sock addr Refactor path validation Write MAX_STREAMS after RESET_STREAM as the original comment suggests Send RESET_STREAM if stream is reset by client Bump quictls to 3.1.3 Bump boringssl Bump picotls Not early anymore Fix uninitialized variables Check return values from openssl functions cmake: speed up warning option detection cmake: delete unused detections, add missing #defines Update examples/.gitignore cmake: Enable werror Require nghttp3 v1.0.0 To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/net/ngtcp2/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/net/ngtcp2/PLIST cvs rdiff -u -r1.9 -r1.10 pkgsrc/net/ngtcp2/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169748366796380 Content-Disposition: inline Content-Length: 2068 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/ngtcp2/Makefile diff -u pkgsrc/net/ngtcp2/Makefile:1.10 pkgsrc/net/ngtcp2/Makefile:1.11 --- pkgsrc/net/ngtcp2/Makefile:1.10 Wed Sep 6 18:12:38 2023 +++ pkgsrc/net/ngtcp2/Makefile Mon Oct 16 19:14:27 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2023/09/06 18:12:38 adam Exp $ +# $NetBSD: Makefile,v 1.11 2023/10/16 19:14:27 adam Exp $ -DISTNAME= ngtcp2-0.19.1 +DISTNAME= ngtcp2-1.0.0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=ngtcp2/} GITHUB_RELEASE= v${PKGVERSION_NOREV} Index: pkgsrc/net/ngtcp2/PLIST diff -u pkgsrc/net/ngtcp2/PLIST:1.8 pkgsrc/net/ngtcp2/PLIST:1.9 --- pkgsrc/net/ngtcp2/PLIST:1.8 Wed Sep 6 18:12:38 2023 +++ pkgsrc/net/ngtcp2/PLIST Mon Oct 16 19:14:27 2023 @@ -1,9 +1,9 @@ -@comment $NetBSD: PLIST,v 1.8 2023/09/06 18:12:38 adam Exp $ +@comment $NetBSD: PLIST,v 1.9 2023/10/16 19:14:27 adam Exp $ include/ngtcp2/ngtcp2.h include/ngtcp2/version.h lib/libngtcp2.a lib/libngtcp2.so -lib/libngtcp2.so.15 -lib/libngtcp2.so.15.0.1 +lib/libngtcp2.so.16 +lib/libngtcp2.so.16.0.0 lib/pkgconfig/libngtcp2.pc share/doc/ngtcp2/README.rst Index: pkgsrc/net/ngtcp2/distinfo diff -u pkgsrc/net/ngtcp2/distinfo:1.9 pkgsrc/net/ngtcp2/distinfo:1.10 --- pkgsrc/net/ngtcp2/distinfo:1.9 Wed Sep 6 18:12:38 2023 +++ pkgsrc/net/ngtcp2/distinfo Mon Oct 16 19:14:27 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.9 2023/09/06 18:12:38 adam Exp $ +$NetBSD: distinfo,v 1.10 2023/10/16 19:14:27 adam Exp $ -BLAKE2s (ngtcp2-0.19.1.tar.xz) = 28f99e0b953db6e5825883a6940097d2e89dd30603dea81c8418b68783ae62e7 -SHA512 (ngtcp2-0.19.1.tar.xz) = eff10b28d3ee8ac39af9b8db5867f4bdeb16ae0553b97ce098d33cfff9b6f6c1c72b836550c0acce936cf4e9bf0c3e8d5ea3fe883b48d1f352a595ef709749bf -Size (ngtcp2-0.19.1.tar.xz) = 590532 bytes +BLAKE2s (ngtcp2-1.0.0.tar.xz) = beead5dab7126306b282b96f6d52cadb3a21a0c4a5397fb96669da5b51a7d7d8 +SHA512 (ngtcp2-1.0.0.tar.xz) = 7bed2345d479b2efc6ca16166782889ae9cd91a0a5485c1c9bc16ac0a785e0089443baac5ed71029c86837438cf030a96964f71e7611caa18c34aef77cb9b4ce +Size (ngtcp2-1.0.0.tar.xz) = 595696 bytes --_----------=_169748366796380--