gecko-dev/media/libnestegg/update.sh
byron jones dc1606c7fa Bug 1505419 - replace nestegg's README_MOZILLA with moz.yaml r=kinetik
README_MOZILLA had 7bafcb950eb0a8fa66858a6f272886f6b3ef40af as the origin SHA.
I wasn't able to find this on the github repository; changed to
https://github.com/kinetiknz/nestegg/commit/f7a0b7ce

Differential Revision: https://phabricator.services.mozilla.com/D11176

--HG--
extra : moz-landing-system : lando
2018-11-07 20:24:49 +00:00

41 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
# Usage: sh update.sh <upstream_src_directory>
set -e
[[ -n "$1" ]] || ( echo "syntax: $0 update_src_directory"; exit 1 )
[[ -e "$1/src/nestegg.c" ]] || ( echo "$1: nestegg not found"; exit 1 )
cp $1/include/nestegg/nestegg.h include
cp $1/src/nestegg.c src
cp $1/LICENSE .
cp $1/README.md .
cp $1/AUTHORS .
if [ -d $1/.git ]; then
rev=$(cd $1 && git rev-parse --verify HEAD)
date=$(cd $1 && git show -s --format=%ci HEAD)
dirty=$(cd $1 && git diff-index --name-only HEAD)
set +e
pre_rev=$(grep -o '[[:xdigit:]]\{40\}' moz.yaml)
commits=$(cd $1 && git log --pretty=format:'%h - %s' $pre_rev..$rev)
set -e
fi
if [ -n "$rev" ]; then
version=$rev
if [ -n "$dirty" ]; then
version=$version-dirty
echo "WARNING: updating from a dirty git repository."
fi
sed -i.bak -e "s/^ *release:.*/ release: \"$version ($date)\"/" moz.yaml
if [[ ! "$( grep "$version" moz.yaml )" ]]; then
echo "Updating moz.yaml failed."
exit 1
fi
rm moz.yaml.bak
[[ -n "$commits" ]] && echo -e "Pick commits:\n$commits"
else
echo "Remember to update moz.yaml with the version details."
fi