summaryrefslogtreecommitdiffstats
path: root/modules/xz-embedded/update.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /modules/xz-embedded/update.sh
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'modules/xz-embedded/update.sh')
-rwxr-xr-xmodules/xz-embedded/update.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/xz-embedded/update.sh b/modules/xz-embedded/update.sh
new file mode 100755
index 0000000000..ecc1e3610e
--- /dev/null
+++ b/modules/xz-embedded/update.sh
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+# Script to update the Mozilla in-tree copy of XZ Embedded.
+
+MY_TEMP_DIR=$(mktemp -d -t xz-embedded_update.XXXXXX) || exit 1
+
+git clone http://git.tukaani.org/xz-embedded.git ${MY_TEMP_DIR}/xz-embedded
+
+COMMIT=$(git -C ${MY_TEMP_DIR}/xz-embedded rev-parse HEAD)
+cd $(dirname $0)
+perl -p -i -e "s/\[commit [0-9a-f]{40}\]/[${COMMIT}]/" README.mozilla;
+
+rm -rf src
+mkdir src
+mv ${MY_TEMP_DIR}/xz-embedded/userspace/xz_config.h src/
+mv ${MY_TEMP_DIR}/xz-embedded/linux/include/linux/xz.h src/
+mv ${MY_TEMP_DIR}/xz-embedded/linux/lib/xz/xz_private.h src/
+mv ${MY_TEMP_DIR}/xz-embedded/linux/lib/xz/xz_lzma2.h src/
+mv ${MY_TEMP_DIR}/xz-embedded/linux/lib/xz/xz_stream.h src/
+mv ${MY_TEMP_DIR}/xz-embedded/linux/lib/xz/xz_crc32.c src/
+mv ${MY_TEMP_DIR}/xz-embedded/linux/lib/xz/xz_crc64.c src/
+mv ${MY_TEMP_DIR}/xz-embedded/linux/lib/xz/xz_dec_bcj.c src/
+mv ${MY_TEMP_DIR}/xz-embedded/linux/lib/xz/xz_dec_stream.c src/
+mv ${MY_TEMP_DIR}/xz-embedded/linux/lib/xz/xz_dec_lzma2.c src/
+rm -rf ${MY_TEMP_DIR}
+hg addremove src
+
+echo "###"
+echo "### Updated xz-embedded/src to $COMMIT."
+echo "### Remember to verify and commit the changes to source control!"
+echo "###"