From 1cea0fb9056d0ea54f118f413e5c60c48f082e70 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 6 Aug 2026 13:34:28 +0000 Subject: [PATCH] llhttp: add new recipe (9.3.0) restinio 0.7.x drops its bundled http_parser and instead requires llhttp to be supplied externally via find_package(). Add a new recipe pinned to release/v9.3.0, the exact version restinio 0.7.9.1 pins in its externals.rb manifest. AI-Generated: Uses Claude Code Signed-off-by: Khem Raj --- .../recipes-support/llhttp/llhttp_9.3.0.bb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 meta-networking/recipes-support/llhttp/llhttp_9.3.0.bb diff --git a/meta-networking/recipes-support/llhttp/llhttp_9.3.0.bb b/meta-networking/recipes-support/llhttp/llhttp_9.3.0.bb new file mode 100644 index 0000000000..e496d02225 --- /dev/null +++ b/meta-networking/recipes-support/llhttp/llhttp_9.3.0.bb @@ -0,0 +1,16 @@ +SUMMARY = "Port of http_parser to llvm's libFuzzer, and a rewrite of the HTTP parser used in Node.js" +DESCRIPTION = "llhttp is a HTTP/1.x parser generated from a bytecode-like \ + instruction set that is smaller and faster to maintain than \ + the legacy http_parser it replaces. It is used by restinio \ + (and Node.js itself) as the HTTP request/response parser." +HOMEPAGE = "https://github.com/nodejs/llhttp" +SECTION = "libs" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=f5e274d60596dd59be0a1d1b19af7978" + +SRC_URI = "git://github.com/nodejs/llhttp.git;protocol=https;branch=main;tag=release/v${PV}" +SRCREV = "86b83a59786caebd581f38d613c64c9e8c52c79e" + +inherit cmake + +BBCLASSEXTEND = "native nativesdk"