From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- modules/brotli/update.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 modules/brotli/update.sh (limited to 'modules/brotli/update.sh') 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 "###" -- cgit v1.2.3