gecko-dev/modules/fdlibm/update.sh
Tom Ritter 336cc26b26 Bug 1343336 - Include the upstream commit date in the fdlibm Mozilla README. r=bbouvier
MozReview-Commit-ID: 1tROG2vpdqH

--HG--
extra : rebase_source : ca7d55f294b6a20d0ff0ea702f9a1056799f7336
2017-02-28 14:33:18 -06:00

40 lines
1.2 KiB
Bash

#!/bin/sh
# Script to update the mozilla in-tree copy of the fdlibm library.
# Run this within the /modules/fdlibm directory of the source tree.
set -e
API_BASE_URL=https://api.github.com/repos/freebsd/freebsd
get_commit() {
curl -s "${API_BASE_URL}/commits?path=lib/msun/src&per_page=1" \
| python -c 'import json, sys; print(json.loads(sys.stdin.read())[0]["sha"])'
}
get_date() {
curl -s "${API_BASE_URL}/commits?path=lib/msun/src&per_page=1" \
| python -c 'import json, sys; print(json.loads(sys.stdin.read())[0]["commit"]["committer"]["date"])'
}
mv ./src/moz.build ./src_moz.build
rm -rf src
BEFORE_COMMIT=$(get_commit)
sh ./import.sh
mv ./src_moz.build ./src/moz.build
COMMIT=$(get_commit)
COMMITDATE=$(get_date)
if [ ${BEFORE_COMMIT} != ${COMMIT} ]; then
echo "Latest commit is changed during import. Please run again."
exit 1
fi
for FILE in $(ls patches/*.patch | sort); do
patch -p3 < ${FILE}
done
hg add src
perl -p -i -e "s/\[commit [0-9a-f]{40} \(.{1,100}\)\]/[commit ${COMMIT} (${COMMITDATE})]/" README.mozilla
echo "###"
echo "### Updated fdlibm/src to ${COMMIT}."
echo "### Remember to verify and commit the changes to source control!"
echo "###"