From 031b87d42da26dfdf2ba6202decfbcfc8b3aedc9 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Thu, 3 Dec 2015 22:13:00 +1100 Subject: [PATCH] tools: add license-builder.sh to construct LICENSE PR-URL: https://github.com/nodejs/node/pull/4194 Reviewed-By: James M Snell Reviewed-By: Jeremiah Senkpiel --- tools/license-builder.sh | 63 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100755 tools/license-builder.sh diff --git a/tools/license-builder.sh b/tools/license-builder.sh new file mode 100755 index 0000000000..bb350e5a8b --- /dev/null +++ b/tools/license-builder.sh @@ -0,0 +1,63 @@ +#!/usr/bin/env bash + +set -e + +rootdir="$(CDPATH= cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +licensefile="${rootdir}/LICENSE" +licensehead="$(sed '/^- /,$d' ${licensefile})" +tmplicense="${rootdir}/~LICENSE.$$" +echo -e "$licensehead" > $tmplicense + + +# addlicense +function addlicense { + + echo " +- ${1}, located at ${2}, is licensed as follows: + \"\"\" +$(echo -e "$3" | sed -e 's/^/ /' -e 's/^ $//' -e 's/ *$//' | sed -e '/./,$!d' | sed -e '/^$/N;/^\n$/D') + \"\"\"\ +" >> $tmplicense + +} + + +if ! [ -f "${rootdir}/deps/icu/license.html" ]; then + echo "ICU not installed, run configure to download it, e.g. ./configure --with-intl=small-icu --download=icu" + exit 1 +fi + + +# Dependencies bundled in distributions +addlicense "c-ares" "deps/cares" \ + "$(sed -e '/^ \*\/$/,$d' -e '/^$/d' -e 's/^[/ ]\* *//' ${rootdir}/deps/cares/src/ares_init.c)" +addlicense "HTTP Parser" "deps/http_parser" "$(cat deps/http_parser/LICENSE-MIT)" +addlicense "ICU" "deps/icu" \ + "$(sed -e '1,/COPYRIGHT AND PERMISSION NOTICE/d' -e '/^
$//' ${rootdir}/deps/icu/license.html)" +addlicense "libuv" "deps/uv" "$(cat ${rootdir}/deps/uv/LICENSE)" +addlicense "OpenSSL" "deps/openssl" \ + "$(sed -e '/^ \*\/$/,$d' -e '/^ [^*].*$/d' -e '/\/\*.*$/d' -e '/^$/d' -e 's/^[/ ]\* *//' ${rootdir}/deps/openssl/openssl/LICENSE)" +addlicense "Punycode.js" "lib/punycode.js" \ + "$(curl -sL https://raw.githubusercontent.com/bestiejs/punycode.js/master/LICENSE-MIT.txt)" +addlicense "V8" "deps/v8" "$(cat ${rootdir}/deps/v8/LICENSE)" +addlicense "zlib" "deps/zlib" \ + "$(sed -e '/The data format used by the zlib library/,$d' -e 's/^\/\* *//' -e 's/^ *//' ${rootdir}/deps/zlib/zlib.h)" + +# npm +addlicense "npm" "deps/npm" "$(cat ${rootdir}/deps/npm/LICENSE)" + +# Build tools +addlicense "GYP" "tools/gyp" "$(cat ${rootdir}/tools/gyp/LICENSE)" +addlicense "marked" "tools/doc/node_modules/marked" \ + "$(cat ${rootdir}/tools/doc/node_modules/marked/LICENSE)" + +# Testing tools +addlicense "cpplint.py" "tools/cpplint.py" \ + "$(sed -e '/^$/,$d' -e 's/^#$//' -e 's/^# //' ${rootdir}/tools/cpplint.py | tail +3)" +addlicense "ESLint" "tools/eslint" "$(cat ${rootdir}/tools/eslint/LICENSE)" +addlicense "gtest" "deps/gtest" "$(cat ${rootdir}/deps/gtest/LICENSE)" +addlicense "node-weak" "test/gc/node_modules/weak" \ + "$(cat ${rootdir}/test/gc/node_modules/weak/LICENSE)" + + +mv $tmplicense $licensefile