gecko-dev/third_party/prio/update.sh
Robert Helmer ac79afd55a Bug 1539715 - update vendored libprio to 1.5 r=glandium
Differential Revision: https://phabricator.services.mozilla.com/D25192

--HG--
extra : moz-landing-system : lando
2019-03-29 08:46:26 +00:00

31 lines
863 B
Bash

#!/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="cfecb2cc84789b9c5b2119109c5212bb297f2724"
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 "###"