diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /toolkit/components/protobuf/upgrade_protobuf.sh | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/components/protobuf/upgrade_protobuf.sh')
-rwxr-xr-x | toolkit/components/protobuf/upgrade_protobuf.sh | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/toolkit/components/protobuf/upgrade_protobuf.sh b/toolkit/components/protobuf/upgrade_protobuf.sh new file mode 100755 index 0000000000..711420ccb3 --- /dev/null +++ b/toolkit/components/protobuf/upgrade_protobuf.sh @@ -0,0 +1,75 @@ +#!/usr/bin/env bash + +set -e + +usage() { + echo "Usage: upgrade_protobuf.sh path/to/protobuf" + echo + echo " Upgrades mozilla-central's copy of the protobuf library." + echo + echo " Get a protobuf release from here:" + echo " https://github.com/google/protobuf/releases" +} + +if [[ "$#" -ne 1 ]]; then + usage + exit 1 +fi + +PROTOBUF_LIB_PATH=$1 + +if [[ ! -d "$PROTOBUF_LIB_PATH" ]]; then + echo No such directory: $PROTOBUF_LIB_PATH + echo + usage + exit 1 +fi + +realpath() { + if [[ $1 = /* ]]; then + echo "$1" + else + echo "$PWD/${1#./}" + fi +} + +PROTOBUF_LIB_PATH=$(realpath $PROTOBUF_LIB_PATH) + +cd $(dirname $0) + +# Remove the old protobuf sources. +rm -rf src/google/* + +# Add all the new protobuf sources. +cp -r $PROTOBUF_LIB_PATH/src/google/* src/google/ + +# Remove compiler sources. +rm -rf src/google/protobuf/compiler + +# Remove test files. +find src/google -name '*_unittest*' | xargs rm -f +find src/google -name '*unittest_*' | xargs rm -f +find src/google -name 'unittest.*' | xargs rm -f +find src/google -name '*_test*' | xargs rm -f +find src/google -name '*test_*' | xargs rm -f +find src/google -type d -name 'testdata' | xargs rm -rf +find src/google -type d -name 'testing' | xargs rm -rf + +# Remove protobuf's build files. +find src/google/ -name '.deps' | xargs rm -rf +find src/google/ -name '.dirstamp' | xargs rm -rf +rm -rf src/google/protobuf/SEBS + +# Apply custom changes for building as part of mozilla-central. + +cd ../../.. # Top level. + +echo +echo Applying custom changes for mozilla-central. If this fails, you need to +echo edit the 'toolkit/components/protobuf/src/google/*' sources manually and +echo update the 'toolkit/components/protobuf/m-c-changes.patch' patch file +echo accordingly. +echo + +echo +echo Successfully upgraded the protobuf lib! |