You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

808 lines
21 KiB

#!/bin/sh
#
# Create a distributable Duktape package into 'dist' directory. The contents
# of this directory can then be packaged into a source distributable.
#
# The distributed source files contain all profiles and variants in one.
# A developer should be able to use the distributes source as follows:
#
# 1. Add the Duktape source files to their project, whichever build
# tool they use (make, scons, etc)
#
# 2. Add the Duktape header files to their include path.
#
# 3. Optionally define some DUK_OPT_xxx feature options.
#
# 4. Compile their program (which uses Duktape API).
#
# In addition to sources, documentation, example programs, and some
# example Makefiles are packaged into the dist package.
#
set -e # exit on errors
INITJS_MINIFY=closure
while [ $# -gt 0 ]; do
case "$1" in
--minify) INITJS_MINIFY="$2"; shift;;
--) shift; break;;
*) break;;
esac
shift
done
ENTRYPWD=`pwd`
DIST=`pwd`/dist
DISTSRCSEP=$DIST/src-separate
DISTSRCCOM=$DIST/src
# DUK_VERSION is grepped from duk_api_public.h.in: it is needed for the
# public API and we want to avoid defining it in two places.
DUK_VERSION=`cat src/duk_api_public.h.in | grep define | grep DUK_VERSION | tr -s ' ' ' ' | cut -d ' ' -f 3 | tr -d 'L'`
DUK_MAJOR=`echo "$DUK_VERSION / 10000" | bc`
DUK_MINOR=`echo "$DUK_VERSION % 10000 / 100" | bc`
DUK_PATCH=`echo "$DUK_VERSION % 100" | bc`
DUK_VERSION_FORMATTED=$DUK_MAJOR.$DUK_MINOR.$DUK_PATCH
GIT_COMMIT=`git rev-parse HEAD`
GIT_DESCRIBE=`git describe --always --dirty`
echo "DUK_VERSION: $DUK_VERSION"
echo "GIT_COMMIT: $GIT_COMMIT"
echo "GIT_DESCRIBE: $GIT_DESCRIBE"
echo "Creating distributable sources to: $DIST"
# Create dist directory structure
rm -rf $DIST
mkdir $DIST
mkdir $DIST/src-separate
mkdir $DIST/src
mkdir $DIST/config
mkdir $DIST/extras
mkdir $DIST/polyfills
#mkdir $DIST/doc
mkdir $DIST/licenses
mkdir $DIST/debugger
mkdir $DIST/debugger/static
mkdir $DIST/examples
mkdir $DIST/examples/hello
mkdir $DIST/examples/eval
mkdir $DIST/examples/cmdline
mkdir $DIST/examples/eventloop
mkdir $DIST/examples/guide
mkdir $DIST/examples/coffee
mkdir $DIST/examples/jxpretty
mkdir $DIST/examples/sandbox
mkdir $DIST/examples/alloc-logging
mkdir $DIST/examples/alloc-torture
mkdir $DIST/examples/alloc-hybrid
mkdir $DIST/examples/debug-trans-socket
mkdir $DIST/examples/debug-trans-dvalue
mkdir $DIST/examples/codepage-conv
mkdir $DIST/examples/dummy-date-provider
# Copy most files directly
for i in \
duk_alloc_default.c \
duk_api_internal.h \
duk_api_stack.c \
duk_api_heap.c \
duk_api_buffer.c \
duk_api_call.c \
duk_api_codec.c \
duk_api_compile.c \
duk_api_bytecode.c \
duk_api_memory.c \
duk_api_object.c \
duk_api_string.c \
duk_api_var.c \
duk_api_logging.c \
duk_api_debug.c \
duk_bi_array.c \
duk_bi_boolean.c \
duk_bi_buffer.c \
duk_bi_date.c \
duk_bi_date_unix.c \
duk_bi_date_windows.c \
duk_bi_duktape.c \
duk_bi_error.c \
duk_bi_function.c \
duk_bi_global.c \
duk_bi_json.c \
duk_bi_math.c \
duk_bi_number.c \
duk_bi_object.c \
duk_bi_pointer.c \
duk_bi_logger.c \
duk_bi_protos.h \
duk_bi_regexp.c \
duk_bi_string.c \
duk_bi_proxy.c \
duk_bi_thread.c \
duk_bi_thrower.c \
duk_debug_fixedbuffer.c \
duk_debug.h \
duk_debug_heap.c \
duk_debug_macros.c \
duk_debug_vsnprintf.c \
duk_error_augment.c \
duk_error.h \
duk_error_longjmp.c \
duk_error_macros.c \
duk_error_misc.c \
duk_error_throw.c \
duk_forwdecl.h \
duk_hbuffer_alloc.c \
duk_hbuffer.h \
duk_hbuffer_ops.c \
duk_hcompiledfunction.h \
duk_heap_alloc.c \
duk_heap.h \
duk_heap_hashstring.c \
duk_heaphdr.h \
duk_heap_markandsweep.c \
duk_heap_memory.c \
duk_heap_misc.c \
duk_heap_refcount.c \
duk_heap_stringcache.c \
duk_heap_stringtable.c \
duk_hnativefunction.h \
duk_hobject_alloc.c \
duk_hobject_class.c \
duk_hobject_enum.c \
duk_hobject_finalizer.c \
duk_hobject.h \
duk_hobject_misc.c \
duk_hobject_pc2line.c \
duk_hobject_props.c \
duk_hstring.h \
duk_hstring_misc.c \
duk_hthread_alloc.c \
duk_hthread_builtins.c \
duk_hthread.h \
duk_hthread_misc.c \
duk_hthread_stacks.c \
duk_hbufferobject.h \
duk_hbufferobject_misc.c \
duk_debugger.c \
duk_debugger.h \
duk_internal.h \
duk_jmpbuf.h \
duk_js_bytecode.h \
duk_js_call.c \
duk_js_compiler.c \
duk_js_compiler.h \
duk_js_executor.c \
duk_js.h \
duk_json.h \
duk_js_ops.c \
duk_js_var.c \
duk_lexer.c \
duk_lexer.h \
duk_numconv.c \
duk_numconv.h \
duk_regexp_compiler.c \
duk_regexp_executor.c \
duk_regexp.h \
duk_tval.c \
duk_tval.h \
duk_unicode.h \
duk_unicode_support.c \
duk_unicode_tables.c \
duk_util_bitdecoder.c \
duk_util_bitencoder.c \
duk_util.h \
duk_util_hashbytes.c \
duk_util_hashprime.c \
duk_util_misc.c \
duk_util_tinyrandom.c \
duk_util_bufwriter.c \
duk_selftest.c \
duk_selftest.h \
duk_strings.c \
duk_strings.h \
duk_replacements.c \
duk_replacements.h \
; do
cp src/$i $DISTSRCSEP/
done
cd $ENTRYPWD/config
tar cfz $DIST/config/genconfig_metadata.tar.gz \
tags.yaml \
feature-options \
config-options \
header-snippets \
other-defines \
examples
cd $ENTRYPWD
for i in \
README.rst \
genconfig.py \
; do
cp config/$i $DIST/config/
done
for i in \
README.rst \
Makefile \
package.json \
duk_debug.js \
duk_classnames.yaml \
duk_debugcommands.yaml \
duk_opcodes.yaml \
; do
cp debugger/$i $DIST/debugger/
done
for i in \
index.html \
style.css \
webui.js \
; do
cp debugger/static/$i $DIST/debugger/static/
done
for i in \
console-minimal.js \
object-prototype-definegetter.js \
object-prototype-definesetter.js \
object-assign.js \
performance-now.js \
duktape-isfastint.js \
; do
cp polyfills/$i $DIST/polyfills/
done
cp examples/README.rst $DIST/examples/
for i in \
README.rst \
duk_cmdline.c \
duk_cmdline_ajduk.c \
; do
cp examples/cmdline/$i $DIST/examples/cmdline/
done
for i in \
README.rst \
c_eventloop.c \
c_eventloop.js \
ecma_eventloop.js \
main.c \
poll.c \
ncurses.c \
socket.c \
fileio.c \
curses-timers.js \
basic-test.js \
server-socket-test.js \
client-socket-test.js \
; do
cp examples/eventloop/$i $DIST/examples/eventloop/
done
for i in \
README.rst \
hello.c \
; do
cp examples/hello/$i $DIST/examples/hello/
done
for i in \
README.rst \
eval.c \
; do
cp examples/eval/$i $DIST/examples/eval/
done
for i in \
README.rst \
fib.js \
process.js \
processlines.c \
prime.js \
primecheck.c \
uppercase.c \
; do
cp examples/guide/$i $DIST/examples/guide/
done
for i in \
README.rst \
globals.coffee \
hello.coffee \
mandel.coffee \
; do
cp examples/coffee/$i $DIST/examples/coffee/
done
for i in \
README.rst \
jxpretty.c \
; do
cp examples/jxpretty/$i $DIST/examples/jxpretty/
done
for i in \
README.rst \
sandbox.c \
; do
cp examples/sandbox/$i $DIST/examples/sandbox/
done
for i in \
README.rst \
duk_alloc_logging.c \
duk_alloc_logging.h \
log2gnuplot.py \
; do
cp examples/alloc-logging/$i $DIST/examples/alloc-logging/
done
for i in \
README.rst \
duk_alloc_torture.c \
duk_alloc_torture.h \
; do
cp examples/alloc-torture/$i $DIST/examples/alloc-torture/
done
for i in \
README.rst \
duk_alloc_hybrid.c \
duk_alloc_hybrid.h \
; do
cp examples/alloc-hybrid/$i $DIST/examples/alloc-hybrid/
done
for i in \
README.rst \
duk_trans_socket.c \
duk_trans_socket.h \
; do
cp examples/debug-trans-socket/$i $DIST/examples/debug-trans-socket/
done
for i in \
README.rst \
duk_trans_dvalue.c \
duk_trans_dvalue.h \
test.c \
Makefile \
; do
cp examples/debug-trans-dvalue/$i $DIST/examples/debug-trans-dvalue/
done
for i in \
README.rst \
duk_codepage_conv.c \
duk_codepage_conv.h \
test.c \
; do
cp examples/codepage-conv/$i $DIST/examples/codepage-conv/
done
for i in \
README.rst \
dummy_date_provider.c \
; do
cp examples/dummy-date-provider/$i $DIST/examples/dummy-date-provider/
done
cp extras/README.rst $DIST/extras/
# XXX: copy extras
for i in \
Makefile.cmdline \
Makefile.dukdebug \
Makefile.eventloop \
Makefile.hello \
Makefile.eval \
Makefile.coffee \
Makefile.jxpretty \
Makefile.sandbox \
Makefile.codepage \
mandel.js \
; do
cp dist-files/$i $DIST/
done
cat dist-files/README.rst | sed \
-e "s/@DUK_VERSION_FORMATTED@/$DUK_VERSION_FORMATTED/" \
-e "s/@GIT_COMMIT@/$GIT_COMMIT/" \
-e "s/@GIT_DESCRIBE@/$GIT_DESCRIBE/" \
> $DIST/README.rst
cp LICENSE.txt $DIST/LICENSE.txt # not strict RST so keep .txt suffix
cp AUTHORS.rst $DIST/AUTHORS.rst
# RELEASES.rst is only updated in master. It's not included in the dist to
# make maintenance fixes easier to make.
for i in \
murmurhash2.txt \
commonjs.txt \
; do
cp licenses/$i $DIST/licenses/
done
# Build temp versions of LICENSE.txt and AUTHORS.rst for embedding into
# autogenerated C/H files.
echo '/*' > $DIST/LICENSE.txt.tmp
cat LICENSE.txt | python util/make_ascii.py | sed -e 's/^/ \* /' >> $DIST/LICENSE.txt.tmp
echo ' */' >> $DIST/LICENSE.txt.tmp
echo '/*' > $DIST/AUTHORS.rst.tmp
cat AUTHORS.rst | python util/make_ascii.py | sed -e 's/^/ \* /' >> $DIST/AUTHORS.rst.tmp
echo ' */' >> $DIST/AUTHORS.rst.tmp
# Build duk_config.h from snippets using genconfig.
python config/genconfig.py --metadata config --output $DIST/duk_config.h.tmp \
autodetect-header
cp $DIST/duk_config.h.tmp $DISTSRCCOM/duk_config.h
cp $DIST/duk_config.h.tmp $DISTSRCSEP/duk_config.h
cp $DIST/duk_config.h.tmp $DIST/config/duk_config.h-autodetect
# Generate a few barebones config examples
python config/genconfig.py --metadata config --emit-legacy-feature-check --emit-config-sanity-check --omit-removed-config-options --omit-unused-config-options \
--output $DIST/config/duk_config.h-linux-gcc-x64 \
--platform linux --compiler gcc --architecture x64 \
barebones-header
python config/genconfig.py --metadata config --emit-legacy-feature-check --emit-config-sanity-check --omit-removed-config-options --omit-unused-config-options \
--output $DIST/config/duk_config.h-linux-gcc-x86 \
--platform linux --compiler gcc --architecture x86 \
barebones-header
# Build duktape.h from parts, with some git-related replacements.
# The only difference between single and separate file duktape.h
# is the internal DUK_SINGLE_FILE define.
#
# Newline after 'i \':
# http://stackoverflow.com/questions/25631989/sed-insert-line-command-osx
cat src/duktape.h.in | sed -e '
/^@DUK_SINGLE_FILE@$/ {
i \
#define DUK_SINGLE_FILE
d
}
/^@LICENSE_TXT@$/ {
r dist/LICENSE.txt.tmp
d
}
/^@AUTHORS_RST@$/ {
r dist/AUTHORS.rst.tmp
d
}
/^@DUK_API_PUBLIC_H@$/ {
r src/duk_api_public.h.in
d
}
/^@DUK_DBLUNION_H@$/ {
r src/duk_dblunion.h.in
d
}' | sed \
-e "s/@DUK_VERSION_FORMATTED@/$DUK_VERSION_FORMATTED/" \
-e "s/@GIT_COMMIT@/$GIT_COMMIT/" \
-e "s/@GIT_DESCRIBE@/$GIT_DESCRIBE/" \
-e "s/@GIT_DESCRIBE_CSTRING@/\"$GIT_DESCRIBE\"/" \
> $DISTSRCCOM/duktape.h
# keep the line so line numbers match between the two variant headers
cat $DISTSRCCOM/duktape.h | sed -e 's/^#define DUK_SINGLE_FILE$//' \
> $DISTSRCSEP/duktape.h
# Initjs code: built-in Ecmascript code snippets which are evaluated when
# a new global context is created. There are multiple minifiers, closure
# seems to be doing the best job so only that is enabled now. Obfuscating
# the code is not a goal, although that happens as an unwanted side effect.
#
# Closure compiler --compilation_level ADVANCED_OPTIMIZATIONS breaks some
# of the existing code, so don't use it.
WC_INITJS_ORIG=`wc -c < src/duk_initjs.js`
WC_INITJS_UGLIFY=DISABLED
WC_INITJS_UGLIFY2=DISABLED
WC_INITJS_CLOSURE=DISABLED
minify_uglifyjs() {
cat src/duk_initjs.js \
| UglifyJS/bin/uglifyjs --ascii --no-dead-code --no-copyright \
> $DISTSRCSEP/duk_initjs_uglify.js.tmp
if [ $? -ne 0 ]; then
echo "UglifyJS initjs step failed"
exit 1
fi
WC_INITJS_UGLIFY=`wc -c < $DISTSRCSEP/duk_initjs_uglify.js.tmp`
}
minify_uglifyjs2() {
UglifyJS2/bin/uglifyjs \
src/duk_initjs.js \
--screw-ie8 \
--compress warnings=false \
> $DISTSRCSEP/duk_initjs_uglify2.js.tmp
if [ $? -ne 0 ]; then
echo "UglifyJS2 initjs step failed"
exit 1
fi
WC_INITJS_UGLIFY2=`wc -c < $DISTSRCSEP/duk_initjs_uglify2.js.tmp`
}
minify_closure() {
java -jar compiler.jar \
--warning_level QUIET \
--language_in ECMASCRIPT5 \
--compilation_level SIMPLE_OPTIMIZATIONS \
src/duk_initjs.js \
> $DISTSRCSEP/duk_initjs_closure.js.tmp
if [ $? -ne 0 ]; then
echo "Closure initjs step failed"
exit 1
fi
WC_INITJS_CLOSURE=`wc -c < $DISTSRCSEP/duk_initjs_closure.js.tmp`
}
minify_none() {
cp src/duk_initjs.js $DISTSRCSEP/duk_initjs_none.js.tmp
}
case "$INITJS_MINIFY" in
all)
# useful for printing out comparison, uses closure version
minify_uglifyjs
minify_uglifyjs2
minify_closure
echo "Using closure minified version"
cp $DISTSRCSEP/duk_initjs_closure.js.tmp $DISTSRCSEP/duk_initjs_min.js
;;
uglifyjs)
minify_uglifyjs
echo "Using UglifyJS minified version"
cp $DISTSRCSEP/duk_initjs_uglify.js.tmp $DISTSRCSEP/duk_initjs_min.js
;;
uglifyjs2)
minify_uglifyjs2
echo "Using UglifyJS2 minified version"
cp $DISTSRCSEP/duk_initjs_uglify2.js.tmp $DISTSRCSEP/duk_initjs_min.js
;;
closure)
minify_closure
echo "Using closure minified version"
cp $DISTSRCSEP/duk_initjs_closure.js.tmp $DISTSRCSEP/duk_initjs_min.js
;;
*)
minify_none
echo "Using un-minified version"
cp $DISTSRCSEP/duk_initjs_none.js.tmp $DISTSRCSEP/duk_initjs_min.js
;;
esac
echo "Minified initjs size: original=$WC_INITJS_ORIG, UglifyJS=$WC_INITJS_UGLIFY, UglifyJS2=$WC_INITJS_UGLIFY2, closure=$WC_INITJS_CLOSURE"
# Autogenerated strings and built-in files
#
# There are currently no profile specific variants of strings/builtins, but
# this will probably change when functions are added/removed based on profile.
python src/genbuildparams.py \
--version=$DUK_VERSION \
"--git-describe=$GIT_DESCRIBE" \
--out-json=$DISTSRCSEP/buildparams.json.tmp \
--out-header=$DISTSRCSEP/duk_buildparams.h.tmp
python src/genbuiltins.py \
--buildinfo=$DISTSRCSEP/buildparams.json.tmp \
--initjs-data=$DISTSRCSEP/duk_initjs_min.js \
--out-header=$DISTSRCSEP/duk_builtins.h \
--out-source=$DISTSRCSEP/duk_builtins.c \
--out-metadata-json=$DIST/duk_build_meta.json
# Autogenerated Unicode files
#
# Note: not all of the generated headers are used. For instance, the
# match table for "WhiteSpace-Z" is not used, because a custom piece
# of code handles that particular match.
#
# UnicodeData.txt contains ranges expressed like this:
#
# 4E00;<CJK Ideograph, First>;Lo;0;L;;;;;N;;;;;
# 9FCB;<CJK Ideograph, Last>;Lo;0;L;;;;;N;;;;;
#
# These are currently decoded into individual characters as a prestep.
#
# For IDPART:
# UnicodeCombiningMark -> categories Mn, Mc
# UnicodeDigit -> categories Nd
# UnicodeConnectorPunctuation -> categories Pc
# Whitespace (unused now)
WHITESPACE_INCL='Zs' # USP = Any other Unicode space separator
WHITESPACE_EXCL='NONE'
# Unicode letter (unused now)
LETTER_INCL='Lu,Ll,Lt,Lm,Lo'
LETTER_EXCL='NONE'
LETTER_NOA_INCL='Lu,Ll,Lt,Lm,Lo'
LETTER_NOA_EXCL='ASCII'
LETTER_NOABMP_INCL=$LETTER_NOA_INCL
LETTER_NOABMP_EXCL='ASCII,NONBMP'
# Identifier start
# E5 Section 7.6
IDSTART_INCL='Lu,Ll,Lt,Lm,Lo,Nl,0024,005F'
IDSTART_EXCL='NONE'
IDSTART_NOA_INCL='Lu,Ll,Lt,Lm,Lo,Nl,0024,005F'
IDSTART_NOA_EXCL='ASCII'
IDSTART_NOABMP_INCL=$IDSTART_NOA_INCL
IDSTART_NOABMP_EXCL='ASCII,NONBMP'
# Identifier start - Letter: allows matching of (rarely needed) 'Letter'
# production space efficiently with the help of IdentifierStart. The
# 'Letter' production is only needed in case conversion of Greek final
# sigma.
IDSTART_MINUS_LETTER_INCL=$IDSTART_NOA_INCL
IDSTART_MINUS_LETTER_EXCL='Lu,Ll,Lt,Lm,Lo'
IDSTART_MINUS_LETTER_NOA_INCL=$IDSTART_NOA_INCL
IDSTART_MINUS_LETTER_NOA_EXCL='Lu,Ll,Lt,Lm,Lo,ASCII'
IDSTART_MINUS_LETTER_NOABMP_INCL=$IDSTART_NOA_INCL
IDSTART_MINUS_LETTER_NOABMP_EXCL='Lu,Ll,Lt,Lm,Lo,ASCII,NONBMP'
# Identifier start - Identifier part
# E5 Section 7.6: IdentifierPart, but remove IdentifierStart (already above)
IDPART_MINUS_IDSTART_INCL='Lu,Ll,Lt,Lm,Lo,Nl,0024,005F,Mn,Mc,Nd,Pc,200C,200D'
IDPART_MINUS_IDSTART_EXCL='Lu,Ll,Lt,Lm,Lo,Nl,0024,005F'
IDPART_MINUS_IDSTART_NOA_INCL='Lu,Ll,Lt,Lm,Lo,Nl,0024,005F,Mn,Mc,Nd,Pc,200C,200D'
IDPART_MINUS_IDSTART_NOA_EXCL='Lu,Ll,Lt,Lm,Lo,Nl,0024,005F,ASCII'
IDPART_MINUS_IDSTART_NOABMP_INCL=$IDPART_MINUS_IDSTART_NOA_INCL
IDPART_MINUS_IDSTART_NOABMP_EXCL='Lu,Ll,Lt,Lm,Lo,Nl,0024,005F,ASCII,NONBMP'
python src/prepare_unicode_data.py src/UnicodeData.txt $DISTSRCSEP/UnicodeData-expanded.tmp
extract_chars() {
python src/extract_chars.py \
--unicode-data=$DISTSRCSEP/UnicodeData-expanded.tmp \
--include-categories="$1" \
--exclude-categories="$2" \
--out-source=$DISTSRCSEP/duk_unicode_$3.c.tmp \
--out-header=$DISTSRCSEP/duk_unicode_$3.h.tmp \
--table-name=duk_unicode_$3 \
> $DISTSRCSEP/$3.txt
}
extract_caseconv() {
python src/extract_caseconv.py \
--unicode-data=$DISTSRCSEP/UnicodeData-expanded.tmp \
--special-casing=src/SpecialCasing.txt \
--out-source=$DISTSRCSEP/duk_unicode_caseconv.c.tmp \
--out-header=$DISTSRCSEP/duk_unicode_caseconv.h.tmp \
--table-name-lc=duk_unicode_caseconv_lc \
--table-name-uc=duk_unicode_caseconv_uc \
> $DISTSRCSEP/caseconv.txt
}
extract_chars $WHITESPACE_INCL $WHITESPACE_EXCL ws
extract_chars $LETTER_INCL $LETTER_EXCL let
extract_chars $LETTER_NOA_INCL $LETTER_NOA_EXCL let_noa
extract_chars $LETTER_NOABMP_INCL $LETTER_NOABMP_EXCL let_noabmp
extract_chars $IDSTART_INCL $IDSTART_EXCL ids
extract_chars $IDSTART_NOA_INCL $IDSTART_NOA_EXCL ids_noa
extract_chars $IDSTART_NOABMP_INCL $IDSTART_NOABMP_EXCL ids_noabmp
extract_chars $IDSTART_MINUS_LETTER_INCL $IDSTART_MINUS_LETTER_EXCL ids_m_let
extract_chars $IDSTART_MINUS_LETTER_NOA_INCL $IDSTART_MINUS_LETTER_NOA_EXCL ids_m_let_noa
extract_chars $IDSTART_MINUS_LETTER_NOABMP_INCL $IDSTART_MINUS_LETTER_NOABMP_EXCL ids_m_let_noabmp
extract_chars $IDPART_MINUS_IDSTART_INCL $IDPART_MINUS_IDSTART_EXCL idp_m_ids
extract_chars $IDPART_MINUS_IDSTART_NOA_INCL $IDPART_MINUS_IDSTART_NOA_EXCL idp_m_ids_noa
extract_chars $IDPART_MINUS_IDSTART_NOABMP_INCL $IDPART_MINUS_IDSTART_NOABMP_EXCL idp_m_ids_noabmp
extract_caseconv
# Inject autogenerated files into source and header files so that they are
# usable (for all profiles and define cases) directly.
#
# The injection points use a standard C preprocessor #include syntax
# (earlier these were actual includes).
cat > $DISTSRCSEP/sed.tmp <<EOF
/#include "duk_unicode_ids_noa.h"/ {
r $DISTSRCSEP/duk_unicode_ids_noa.h.tmp
d
}
/#include "duk_unicode_ids_noabmp.h"/ {
r $DISTSRCSEP/duk_unicode_ids_noabmp.h.tmp
d
}
/#include "duk_unicode_ids_m_let_noa.h"/ {
r $DISTSRCSEP/duk_unicode_ids_m_let_noa.h.tmp
d
}
/#include "duk_unicode_ids_m_let_noabmp.h"/ {
r $DISTSRCSEP/duk_unicode_ids_m_let_noabmp.h.tmp
d
}
/#include "duk_unicode_idp_m_ids_noa.h"/ {
r $DISTSRCSEP/duk_unicode_idp_m_ids_noa.h.tmp
d
}
/#include "duk_unicode_idp_m_ids_noabmp.h"/ {
r $DISTSRCSEP/duk_unicode_idp_m_ids_noabmp.h.tmp
d
}
/#include "duk_unicode_caseconv.h"/ {
r $DISTSRCSEP/duk_unicode_caseconv.h.tmp
d
}
EOF
mv $DISTSRCSEP/duk_unicode.h $DISTSRCSEP/duk_unicode.h.tmp
sed -f $DISTSRCSEP/sed.tmp $DISTSRCSEP/duk_unicode.h.tmp > $DISTSRCSEP/duk_unicode.h
rm $DISTSRCSEP/sed.tmp
rm $DISTSRCSEP/duk_unicode.h.tmp
cat > $DISTSRCSEP/sed.tmp <<EOF
/#include "duk_unicode_ids_noa.c"/ {
r $DISTSRCSEP/duk_unicode_ids_noa.c.tmp
d
}
/#include "duk_unicode_ids_noabmp.c"/ {
r $DISTSRCSEP/duk_unicode_ids_noabmp.c.tmp
d
}
/#include "duk_unicode_ids_m_let_noa.c"/ {
r $DISTSRCSEP/duk_unicode_ids_m_let_noa.c.tmp
d
}
/#include "duk_unicode_ids_m_let_noabmp.c"/ {
r $DISTSRCSEP/duk_unicode_ids_m_let_noabmp.c.tmp
d
}
/#include "duk_unicode_idp_m_ids_noa.c"/ {
r $DISTSRCSEP/duk_unicode_idp_m_ids_noa.c.tmp
d
}
/#include "duk_unicode_idp_m_ids_noabmp.c"/ {
r $DISTSRCSEP/duk_unicode_idp_m_ids_noabmp.c.tmp
d
}
/#include "duk_unicode_caseconv.c"/ {
r $DISTSRCSEP/duk_unicode_caseconv.c.tmp
d
}
EOF
mv $DISTSRCSEP/duk_unicode_tables.c $DISTSRCSEP/duk_unicode_tables.c.tmp
sed -f $DISTSRCSEP/sed.tmp $DISTSRCSEP/duk_unicode_tables.c.tmp > $DISTSRCSEP/duk_unicode_tables.c
rm $DISTSRCSEP/sed.tmp
rm $DISTSRCSEP/duk_unicode_tables.c.tmp
# Clean up sources
rm $DISTSRCSEP/*.tmp
for i in \
ws \
let let_noa let_noabmp \
ids ids_noa ids_noabmp \
ids_m_let ids_m_let_noa ids_m_let_noabmp \
idp_m_ids idp_m_ids_noa idp_m_ids_noabmp; do
rm $DISTSRCSEP/$i.txt
done
rm $DISTSRCSEP/caseconv.txt
# Create a combined source file, duktape.c, into a separate combined source
# directory. This allows user to just include "duktape.c", "duktape.h", and
# "duk_config.h" into a project and maximizes inlining and size optimization
# opportunities even with older compilers. Because some projects include
# these files into their repository, the result should be deterministic and
# diffable. Also, it must retain __FILE__/__LINE__ behavior through
# preprocessor directives. Whitespace and comments can be stripped as long
# as the other requirements are met.
python util/combine_src.py $DISTSRCSEP $DISTSRCCOM/duktape.c \
"$DUK_VERSION" "$GIT_COMMIT" "$GIT_DESCRIBE" \
$DIST/LICENSE.txt.tmp $DIST/AUTHORS.rst.tmp
echo "CLOC report on combined duktape.c source file"
perl cloc-1.60.pl --quiet $DISTSRCCOM/duktape.c
# Clean up temp files
rm $DIST/*.tmp
# Create SPDX license once all other files are in place (and cleaned)
python util/create_spdx_license.py `pwd`/dist/license.spdx