git: ebc195966e0d - main - net/mvfst: Update g20220328 -> g20220926
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 27 Sep 2022 02:49:13 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=ebc195966e0dc332add5c08be00a4c960b6d6544 commit ebc195966e0dc332add5c08be00a4c960b6d6544 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2022-09-26 20:14:24 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2022-09-27 02:48:59 +0000 net/mvfst: Update g20220328 -> g20220926 --- net/mvfst/Makefile | 14 ++++---------- net/mvfst/distinfo | 6 +++--- net/mvfst/pkg-plist | 10 +++++++++- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/net/mvfst/Makefile b/net/mvfst/Makefile index d9ae827a93f7..4b556dd69d1a 100644 --- a/net/mvfst/Makefile +++ b/net/mvfst/Makefile @@ -1,6 +1,5 @@ PORTNAME= mvfst -DISTVERSION= g20220328 -PORTREVISION= 4 +DISTVERSION= g20220926 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org @@ -25,24 +24,19 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libunwind.so:devel/libunwind \ libzstd.so:archivers/zstd -USES= cmake compiler:c++17-lang cpe +USES= cmake:testing compiler:c++17-lang cpe USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= facebookincubator -GH_TAGNAME= 31cadb557c903355e1ea04261f52e89098a68f99 +GH_TAGNAME= 1e9db60a905b00618c857abcc8a27931f6baa154 CPE_VENDOR= facebook CMAKE_ON= BUILD_SHARED_LIBS CMAKE_OFF= BUILD_TESTS +CMAKE_TESTING_ON= BUILD_TESTS # several tests fail, see https://github.com/facebookincubator/mvfst/issues/275 CXXFLAGS+= -fPIC -do-test: - @cd ${BUILD_WRKSRC} && \ - ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_TESTS:BOOL=ON ${CMAKE_SOURCE_PATH} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test - .include <bsd.port.mk> diff --git a/net/mvfst/distinfo b/net/mvfst/distinfo index 4ca5a7aefdf7..a91b39baf751 100644 --- a/net/mvfst/distinfo +++ b/net/mvfst/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648491972 -SHA256 (facebookincubator-mvfst-g20220328-31cadb557c903355e1ea04261f52e89098a68f99_GH0.tar.gz) = d28e38680c59b27ec31905b6c4ea928bc787d3d2fe959a0a020bf46f2013c3ac -SIZE (facebookincubator-mvfst-g20220328-31cadb557c903355e1ea04261f52e89098a68f99_GH0.tar.gz) = 1740444 +TIMESTAMP = 1664218005 +SHA256 (facebookincubator-mvfst-g20220926-1e9db60a905b00618c857abcc8a27931f6baa154_GH0.tar.gz) = 826d2b7c2f7dc6cb0afef23550b1885564a1bf842d298e3f32d17e8e25713d09 +SIZE (facebookincubator-mvfst-g20220926-1e9db60a905b00618c857abcc8a27931f6baa154_GH0.tar.gz) = 1796773 diff --git a/net/mvfst/pkg-plist b/net/mvfst/pkg-plist index 5f4e5aa53769..8cc7d8720786 100644 --- a/net/mvfst/pkg-plist +++ b/net/mvfst/pkg-plist @@ -2,7 +2,7 @@ include/quic/QuicConstants.h include/quic/QuicException.h include/quic/api/IoBufQuicBatch.h include/quic/api/LoopDetectorCallback.h -include/quic/api/Observer.h +include/quic/api/QuicAckFrequencyFunctions.h include/quic/api/QuicBatchWriter.h include/quic/api/QuicPacketScheduler.h include/quic/api/QuicSocket.h @@ -55,14 +55,17 @@ include/quic/congestion_control/BbrBandwidthSampler.h include/quic/congestion_control/BbrRttSampler.h include/quic/congestion_control/BbrTesting.h include/quic/congestion_control/CongestionControlFunctions.h +include/quic/congestion_control/CongestionController.h include/quic/congestion_control/CongestionControllerFactory.h include/quic/congestion_control/Copa.h include/quic/congestion_control/Copa2.h include/quic/congestion_control/NewReno.h include/quic/congestion_control/Pacer.h +include/quic/congestion_control/PacketProcessor.h include/quic/congestion_control/QuicCCP.h include/quic/congestion_control/QuicCubic.h include/quic/congestion_control/ServerCongestionControllerFactory.h +include/quic/congestion_control/SimulatedTBF.h include/quic/congestion_control/StaticCwndCongestionController.h include/quic/congestion_control/TokenlessPacer.h include/quic/congestion_control/third_party/ccp/libstartccp.h @@ -104,6 +107,9 @@ include/quic/logging/QLogger.h include/quic/logging/QLoggerConstants.h include/quic/logging/QLoggerTypes.h include/quic/loss/QuicLossFunctions.h +include/quic/observer/SocketObserverContainer.h +include/quic/observer/SocketObserverInterface.h +include/quic/observer/SocketObserverTypes.h include/quic/server/AcceptObserver.h include/quic/server/CCPReader.h include/quic/server/QuicCcpThreadLauncher.h @@ -126,6 +132,7 @@ include/quic/server/handshake/StatelessResetGenerator.h include/quic/server/handshake/TokenGenerator.h include/quic/server/state/ServerConnectionIdRejector.h include/quic/server/state/ServerStateMachine.h +include/quic/server/third-party/siphash.h include/quic/state/AckEvent.h include/quic/state/AckHandlers.h include/quic/state/AckStates.h @@ -179,6 +186,7 @@ lib/libmvfst_handshake.a lib/libmvfst_happyeyeballs.a lib/libmvfst_looper.a lib/libmvfst_loss.a +lib/libmvfst_observer.a lib/libmvfst_qlogger.a lib/libmvfst_server.a lib/libmvfst_server_state.a