summaryrefslogtreecommitdiffstats
path: root/third_party/prio/update.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /third_party/prio/update.sh
parentInitial commit. (diff)
downloadfirefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz
firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--third_party/prio/update.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/third_party/prio/update.sh b/third_party/prio/update.sh
new file mode 100644
index 0000000000..70fc327d24
--- /dev/null
+++ b/third_party/prio/update.sh
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+# Script to update the mozilla in-tree copy of the libprio library.
+# Run this within the /third_party/libprio directory of the source tree.
+
+MY_TEMP_DIR=`mktemp -d -t libprio_update.XXXXXX` || exit 1
+
+COMMIT="52643cefe6662b4099e16a40a057cb60651ab001"
+
+git clone -n https://github.com/mozilla/libprio ${MY_TEMP_DIR}/libprio
+git -C ${MY_TEMP_DIR}/libprio checkout ${COMMIT}
+
+FILES="include prio"
+VERSION=$(git -C ${MY_TEMP_DIR}/libprio describe --tags)
+perl -p -i -e "s/Current version: \S+ \[commit [0-9a-f]{40}\]/Current version: ${VERSION} [commit ${COMMIT}]/" README-mozilla
+
+for f in $FILES; do
+ rm -rf $f
+ mv ${MY_TEMP_DIR}/libprio/$f $f
+done
+
+rm -rf ${MY_TEMP_DIR}
+
+hg revert -r . moz.build
+hg addremove .
+
+echo "###"
+echo "### Updated libprio to $COMMIT."
+echo "### Remember to verify and commit the changes to source control!"
+echo "###"