diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /modules/brotli/update.sh | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'modules/brotli/update.sh')
-rwxr-xr-x | modules/brotli/update.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/modules/brotli/update.sh b/modules/brotli/update.sh new file mode 100755 index 0000000000..b75afe2392 --- /dev/null +++ b/modules/brotli/update.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +# Script to update the mozilla in-tree copy of the Brotli library. +# Run this within the /modules/brotli directory of the source tree. + +MY_TEMP_DIR=`mktemp -d -t brotli_update.XXXXXX` || exit 1 + +git clone https://github.com/google/brotli ${MY_TEMP_DIR}/brotli +git -C ${MY_TEMP_DIR}/brotli checkout v1.0.9 + +COMMIT=$(git -C ${MY_TEMP_DIR}/brotli rev-parse HEAD) +perl -p -i -e "s/\[commit [0-9a-f]{40}\]/[commit ${COMMIT}]/" README.mozilla; + +DIRS="common dec enc include tools" + +for d in $DIRS; do + rm -rf $d + mv ${MY_TEMP_DIR}/brotli/c/$d $d +done +rm -rf ${MY_TEMP_DIR} + +hg addremove $DIRS + +echo "###" +echo "### Updated brotli to $COMMIT." +echo "### Remember to verify and commit the changes to source control!" +echo "###" |