From 83fbf1a224b12af4aac895c255b04dc1850c9a4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Wed, 29 Jan 2025 08:49:02 +0100 Subject: [PATCH] tools: update license-builder and LICENSE for V8 deps The location of some third-party code has changed. --- LICENSE | 2 +- tools/license-builder.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 0880aa57ddf..d535fbfe87e 100644 --- a/LICENSE +++ b/LICENSE @@ -1489,7 +1489,7 @@ The externally maintained libraries used by Node.js are: This code is copyrighted by Sun Microsystems Inc. and released under a 3-clause BSD license. - - Valgrind client API header, located at src/third_party/valgrind/valgrind.h + - Valgrind client API header, located at third_party/valgrind/valgrind.h This is released under the BSD license. - The Wasm C/C++ API headers, located at third_party/wasm-api/wasm.{h,hh} diff --git a/tools/license-builder.sh b/tools/license-builder.sh index ceee01f5f09..979493d0ea6 100755 --- a/tools/license-builder.sh +++ b/tools/license-builder.sh @@ -79,7 +79,7 @@ licenseText="$(curl -sL https://raw.githubusercontent.com/bestiejs/punycode.js/H addlicense "Punycode.js" "lib/punycode.js" "$licenseText" licenseText="$(cat "${rootdir}/deps/v8/LICENSE")" addlicense "V8" "deps/v8" "$licenseText" -licenseText="$(sed -e '/You should have received a copy of the CC0/,$d' -e 's/^\/\* *//' -e 's/^ \* *//' deps/v8/src/third_party/siphash/halfsiphash.cc)" +licenseText="$(sed -e '/You should have received a copy of the CC0/,$d' -e 's/^\/\* *//' -e 's/^ \* *//' deps/v8/third_party/siphash/halfsiphash.cc)" addlicense "SipHash" "deps/v8/src/third_party/siphash" "$licenseText" licenseText="$(sed -e '/The data format used by the zlib library/,$d' -e 's/^\/\* *//' -e 's/^ *//' "${rootdir}/deps/zlib/zlib.h")" addlicense "zlib" "deps/zlib" "$licenseText"