git: fed3dc23ac3b - main - www/llhttp: Update to 9.3.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 09 Mar 2026 18:22:30 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=fed3dc23ac3bd783df36b1b115f885903d35d039
commit fed3dc23ac3bd783df36b1b115f885903d35d039
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2026-03-09 17:56:24 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2026-03-09 18:18:27 +0000
www/llhttp: Update to 9.3.1
Changes: https://github.com/nodejs/llhttp/releases
---
www/llhttp/Makefile | 6 +++---
www/llhttp/distinfo | 6 +++---
www/llhttp/files/patch-CMakeLists.txt | 15 ---------------
3 files changed, 6 insertions(+), 21 deletions(-)
diff --git a/www/llhttp/Makefile b/www/llhttp/Makefile
index 2b827c702dcd..d43b066139b0 100644
--- a/www/llhttp/Makefile
+++ b/www/llhttp/Makefile
@@ -1,5 +1,5 @@
PORTNAME= llhttp
-PORTVERSION= 9.3.0
+PORTVERSION= 9.3.1
DISTVERSIONPREFIX= release/v
CATEGORIES= www
@@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE-MIT
USES= cmake cpe
-CMAKE_ON= BUILD_SHARED_LIBS
+CMAKE_ON= LLHTTP_BUILD_SHARED_LIBS
PLIST_SUB= PORTVERSION=${PORTVERSION}
@@ -24,6 +24,6 @@ OPTIONS_DEFINE= STATIC
OPTIONS_DEFAULT=STATIC
OPTIONS_SUB= yes
-STATIC_CMAKE_BOOL= BUILD_STATIC_LIBS
+STATIC_CMAKE_BOOL= LLHTTP_BUILD_STATIC_LIBS
.include <bsd.port.mk>
diff --git a/www/llhttp/distinfo b/www/llhttp/distinfo
index b4d69889b1b1..d20d7bb45564 100644
--- a/www/llhttp/distinfo
+++ b/www/llhttp/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1747546438
-SHA256 (nodejs-llhttp-release-v9.3.0_GH0.tar.gz) = 1a2b45cb8dda7082b307d336607023aa65549d6f060da1d246b1313da22b685a
-SIZE (nodejs-llhttp-release-v9.3.0_GH0.tar.gz) = 39119
+TIMESTAMP = 1771421490
+SHA256 (nodejs-llhttp-release-v9.3.1_GH0.tar.gz) = c14a93f287d3dbd6580d08af968294f8bcc61e1e1e3c34301549d00f3cf09365
+SIZE (nodejs-llhttp-release-v9.3.1_GH0.tar.gz) = 39211
diff --git a/www/llhttp/files/patch-CMakeLists.txt b/www/llhttp/files/patch-CMakeLists.txt
deleted file mode 100644
index 116cddcb8794..000000000000
--- a/www/llhttp/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-Reference: https://github.com/nodejs/llhttp/commit/1f23986da6337a55682dda268457f2dc27f5900f
-
---- CMakeLists.txt.orig 2025-05-03 17:04:09 UTC
-+++ CMakeLists.txt
-@@ -92,9 +92,7 @@ if(BUILD_STATIC_LIBS)
- add_library(llhttp_static STATIC
- ${llhttp_src}
- )
-- if(BUILD_SHARED_LIBS)
-- add_library(llhttp::llhttp ALIAS llhttp_shared)
-- else()
-+ if(NOT BUILD_SHARED_LIBS)
- add_library(llhttp::llhttp ALIAS llhttp_static)
- endif()
- config_library(llhttp_static)