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 Jul 27 09:10:30 UTC 2025
Modified Files:
pkgsrc/net/ngtcp2: Makefile PLIST distinfo
Log Message:
ngtcp2: update to 1.14.0.
Add -Wconversion to C++ compiler by @tatsuhiro-t in #1657
Template port by @tatsuhiro-t in #1658
Add util::system_clock_now by @tatsuhiro-t in #1659
Make read_pem return std::vector<uint8_t> by @tatsuhiro-t in #1660
examples: Add ECH support to boringssl client and server by @tatsuhiro-t in #1661
Test fix by @tatsuhiro-t in #1662
examples: Send and receive ORIGIN frame by @tatsuhiro-t in #1663
examples: Refactor siphash key generation by @tatsuhiro-t in #1666
examples: Remove std::move when returning a local variable by @tatsuhiro-t in #1667
Refactor cubic by @tatsuhiro-t in #1668
Add ngtcp2_begin_path_validation callback by @tatsuhiro-t in #1669
Fix few warnings generated by gcc in tests by @pemensik in #1674
examples/server: Remove throttling based on CWND by @tatsuhiro-t in #1675
ngtcp2_map: Hash key by @tatsuhiro-t in #1677
Cc tweak by @tatsuhiro-t in #1678
Rst tweak by @tatsuhiro-t in #1679
Update BBR to the current draft and simplify code by @tatsuhiro-t in #1683
examples: Adopt IP_PMTUDISC_PROBE by @tatsuhiro-t in #1685
Map seed by @tatsuhiro-t in #1686
ngtcp2_map: Change load factor to 7/8 by @tatsuhiro-t in #1687
examples: Specify nghttp3_callbacks.rand by @tatsuhiro-t in #1688
Fix pc files for static linkage by @talregev in #1689
Build with the latest nghttp3 by @tatsuhiro-t in #1690
Assert that fin is set or datalen > 0 by @tatsuhiro-t in #1692
Return error if too many STREAM frames are accumulated for resend by @tatsuhiro-t in #1693
Set minimum STREAM data size when serializing into a packet by @tatsuhiro-t in #1695
Fragmented by @tatsuhiro-t in #1696
examples/server: Set GRO socket option by @tatsuhiro-t in #1697
tests: Compound Literals by @tatsuhiro-t in #1698
Avoid memset for 1-RTT ngtcp2_pktns by @tatsuhiro-t in #1699
lib: Compound Literals by @tatsuhiro-t in #1700
Compile with the latest nghttp3 by @tatsuhiro-t in #1701
examples/client: Write ECH retry configs on ech_required alert by @tatsuhiro-t in #1702
Bump OpenSSL to v3.5.1 by @tatsuhiro-t in #1703
Refactor macros by @tatsuhiro-t in #1704
Bump picotls by @tatsuhiro-t in #1705
examples: Fix #1670 (zero session_ticket_key_ before destruction) by @niekbouman in #1672
tests: Add migration test for client with zero-length SCID by @tatsuhiro-t in #1706
Run quic-interop-runner by @tatsuhiro-t in #1707
quic-interop-runner: Enhance log reduction by @tatsuhiro-t in #1708
quic-interop-runner: Add workflow_dispatch inputs by @tatsuhiro-t in #1710
examples: Remove dead code by @tatsuhiro-t in #1711
Bump boringssl by @tatsuhiro-t in #1712
Bump picotls by @tatsuhiro-t in #1713
Bump wolfssl to v5.8.2-stable by @tatsuhiro-t in #1714
Examples pqc by @tatsuhiro-t in #1715
Bump aws-lc to v1.56.0 by @tatsuhiro-t in #1717
GHA: Exclude macos-14 cmake because it is flaky by @tatsuhiro-t in #1718
Require nghttp3 >= v1.11.0 by @tatsuhiro-t in #1719
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 pkgsrc/net/ngtcp2/Makefile
cvs rdiff -u -r1.22 -r1.23 pkgsrc/net/ngtcp2/PLIST
cvs rdiff -u -r1.24 -r1.25 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.25 pkgsrc/net/ngtcp2/Makefile:1.26
--- pkgsrc/net/ngtcp2/Makefile:1.25 Mon May 26 18:47:36 2025
+++ pkgsrc/net/ngtcp2/Makefile Sun Jul 27 09:10:30 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.25 2025/05/26 18:47:36 adam Exp $
+# $NetBSD: Makefile,v 1.26 2025/07/27 09:10:30 wiz Exp $
-DISTNAME= ngtcp2-1.13.0
+DISTNAME= ngtcp2-1.14.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.22 pkgsrc/net/ngtcp2/PLIST:1.23
--- pkgsrc/net/ngtcp2/PLIST:1.22 Mon May 26 18:47:36 2025
+++ pkgsrc/net/ngtcp2/PLIST Sun Jul 27 09:10:30 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.22 2025/05/26 18:47:36 adam Exp $
+@comment $NetBSD: PLIST,v 1.23 2025/07/27 09:10:30 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.3.1
+lib/libngtcp2.so.16.4.0
lib/pkgconfig/libngtcp2.pc
share/doc/ngtcp2/README.rst
Index: pkgsrc/net/ngtcp2/distinfo
diff -u pkgsrc/net/ngtcp2/distinfo:1.24 pkgsrc/net/ngtcp2/distinfo:1.25
--- pkgsrc/net/ngtcp2/distinfo:1.24 Mon May 26 18:47:36 2025
+++ pkgsrc/net/ngtcp2/distinfo Sun Jul 27 09:10:30 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.24 2025/05/26 18:47:36 adam Exp $
+$NetBSD: distinfo,v 1.25 2025/07/27 09:10:30 wiz Exp $
-BLAKE2s (ngtcp2-1.13.0.tar.xz) = f4e5c5420e6a4d1280b718a2cb492a0e454ad474d205a29939e643864b99c65b
-SHA512 (ngtcp2-1.13.0.tar.xz) = e284cb791c56cc342114febe777cd63ad8c00d6d5b0130c474a3dc9f5d4f932926131e4d10a01309de08c364511b8250477c0e88d252f67c231964abf74d82be
-Size (ngtcp2-1.13.0.tar.xz) = 654972 bytes
+BLAKE2s (ngtcp2-1.14.0.tar.xz) = 8b6063b489c93b0edcdf8891e38fdef256da8362b2837ae1d587676dba7d88fa
+SHA512 (ngtcp2-1.14.0.tar.xz) = 36727ae4cfa7f7f50cc4bef1404f8ee9e969108e2aaa9b8533e52d9e960b0f206bd1a75ad4b7d0e2cec48243072c9ea8d3dac3d45105f91906eb0cf80e7d12e4
+Size (ngtcp2-1.14.0.tar.xz) = 662652 bytes
Home |
Main Index |
Thread Index |
Old Index