pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/ngtcp2



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Oct 19 18:20:31 UTC 2025

Modified Files:
        pkgsrc/net/ngtcp2: Makefile PLIST distinfo

Log Message:
ngtcp2: update to 1.17.0.

What's Changed

    Remove redundant casts by @tatsuhiro-t in #1798
    Revert #1798 partially by @tatsuhiro-t in #1799
    examples: Use std::ranges::begin and std::ranges::end consistently by @tatsuhiro-t in #1800
    Initial packets padding with no_tx_udp_payload_size_shaping by @tatsuhiro-t in #1801
    Remove redundant semicolon by @tatsuhiro-t in #1802
    Make ngtcp2_stream.fin of type int by @tatsuhiro-t in #1803
    Fix typos in documentation and comments by @Copilot in #1804
    Update bbr by @tatsuhiro-t in #1807
    examples: Limit tx buffer for non-GSO case by @tatsuhiro-t in #1812
    cubic: Compute remainder of "acked_bytes" without modulo by @tatsuhiro-t in #1813
    Replace POPCNT-based ispow2 with portable bitwise implementation to prevent illegal instruction crashes by @mk185147 in #1811
    Reduce NGTCP2_HARD_MAX_UDP_PAYLOAD_SIZE to 64k by @tatsuhiro-t in #1814
    Bump openssl to v3.6.0 by @tatsuhiro-t in #1815
    bbr: Avoid modifying ngtcp2_rs on packet loss by @tatsuhiro-t in #1816
    Always call CC on_ack_recv by @tatsuhiro-t in #1817
    Revert "examples: Limit tx buffer for non-GSO case" by @tatsuhiro-t in #1818
    Make sure that CC on_ack_recv when ACK is received by @tatsuhiro-t in #1820
    Use solely cc_ack.largest_pkt_sent_ts and remove largest_pkt_sent_ts by @tatsuhiro-t in #1821
    Pass ngtcp2_cc_ack to CC on_congestion_event by @tatsuhiro-t in #1822
    Remove unused ngtcp2_cc_ack.prior_bytes_in_flight by @tatsuhiro-t in #1823
    Add ngtcp2_conn_write_aggregate_pkt2 by @tatsuhiro-t in #1824
    examples: Add gso-burst option by @tatsuhiro-t in #1825
    Add ngtcp2_conn_get_stream_user_data by @tatsuhiro-t in #1828
    cc: Compute pacing interval and send_quantum by @tatsuhiro-t in #1829
    bbr: Clamp initial pacing interval by @tatsuhiro-t in #1830
    More app controllable ngtcp2_conn_write_aggregate_pkt2 by @tatsuhiro-t in #1831
    Deprecate NGTCP2_MAX_PMTUD_UDP_PAYLOAD_SIZE by @tatsuhiro-t in #1832
    Add NGTCP2_MAX_TX_UDP_PAYLOAD_SIZE macro by @tatsuhiro-t in #1833
    Clarify NGTCP2_MAX_UDP_PAYLOAD_SIZE by @tatsuhiro-t in #1834
    cc: Increase minimum send_quantum to 10 by @tatsuhiro-t in #1835
    examples: Increase number of packets to read by @tatsuhiro-t in #1836
    build(deps): bump github/codeql-action from 3 to 4 by @dependabot[bot] in #1837
    Server optimize write by @tatsuhiro-t in #1838
    Relax the timer handling by @tatsuhiro-t in #1840
    Bump LibreSSL to 4.2.0 by @nak3 in #1839
    Bump boringssl by @tatsuhiro-t in #1841
    Bump aws-lc to v1.62.0 by @tatsuhiro-t in #1842
    Relax the timer handling further by @tatsuhiro-t in #1843


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 pkgsrc/net/ngtcp2/Makefile
cvs rdiff -u -r1.25 -r1.26 pkgsrc/net/ngtcp2/PLIST
cvs rdiff -u -r1.28 -r1.29 pkgsrc/net/ngtcp2/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/ngtcp2/Makefile
diff -u pkgsrc/net/ngtcp2/Makefile:1.29 pkgsrc/net/ngtcp2/Makefile:1.30
--- pkgsrc/net/ngtcp2/Makefile:1.29     Sun Sep 28 20:14:06 2025
+++ pkgsrc/net/ngtcp2/Makefile  Sun Oct 19 18:20:31 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.29 2025/09/28 20:14:06 wiz Exp $
+# $NetBSD: Makefile,v 1.30 2025/10/19 18:20:31 wiz Exp $
 
-DISTNAME=      ngtcp2-1.16.0
+DISTNAME=      ngtcp2-1.17.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.25 pkgsrc/net/ngtcp2/PLIST:1.26
--- pkgsrc/net/ngtcp2/PLIST:1.25        Sun Sep 28 20:14:06 2025
+++ pkgsrc/net/ngtcp2/PLIST     Sun Oct 19 18:20:31 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.25 2025/09/28 20:14:06 wiz Exp $
+@comment $NetBSD: PLIST,v 1.26 2025/10/19 18:20:31 wiz Exp $
 include/ngtcp2/ngtcp2.h
 include/ngtcp2/version.h
 lib/cmake/ngtcp2/ngtcp2Config.cmake
@@ -8,6 +8,6 @@ lib/cmake/ngtcp2/ngtcp2Targets.cmake
 lib/libngtcp2.a
 lib/libngtcp2.so
 lib/libngtcp2.so.16
-lib/libngtcp2.so.16.6.0
+lib/libngtcp2.so.16.7.0
 lib/pkgconfig/libngtcp2.pc
 share/doc/ngtcp2/README.rst

Index: pkgsrc/net/ngtcp2/distinfo
diff -u pkgsrc/net/ngtcp2/distinfo:1.28 pkgsrc/net/ngtcp2/distinfo:1.29
--- pkgsrc/net/ngtcp2/distinfo:1.28     Sun Sep 28 20:14:07 2025
+++ pkgsrc/net/ngtcp2/distinfo  Sun Oct 19 18:20:31 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.28 2025/09/28 20:14:07 wiz Exp $
+$NetBSD: distinfo,v 1.29 2025/10/19 18:20:31 wiz Exp $
 
-BLAKE2s (ngtcp2-1.16.0.tar.xz) = 38b19767cc1482c4637f8fb98db976c3e227102e4ff791a80dd54753e819e073
-SHA512 (ngtcp2-1.16.0.tar.xz) = 998aebd1088435745d65900f45304dc59266f0e5997c0fe93cd052bc746493953efc9f43aa10776eeea407747d7480e529a948112f150a2ba3669d0cd1bb2b26
-Size (ngtcp2-1.16.0.tar.xz) = 674160 bytes
+BLAKE2s (ngtcp2-1.17.0.tar.xz) = 9ac8546e082f9be429da1260981116b0395519a2b20abe1fc93da28a04fec10e
+SHA512 (ngtcp2-1.17.0.tar.xz) = 612fb2a55c95717e38ad7792261ac34372b344addc9437674425acfcbcf1faec6572affab430ab818afa275cbf8f9bb1e2a6b3876adcd6c5538f221736066a35
+Size (ngtcp2-1.17.0.tar.xz) = 679244 bytes



Home | Main Index | Thread Index | Old Index