gluon/scripts/update-patches.sh

25 lines
594 B
Bash
Raw Normal View History

2013-12-28 14:31:11 +00:00
#!/bin/bash
set -e
shopt -s nullglob
2017-01-18 16:21:43 +00:00
. scripts/modules.sh
GLUONDIR="$(pwd)"
2013-12-28 14:31:11 +00:00
for module in $GLUON_MODULES; do
echo "--- Updating patches for module '$module' ---"
2017-01-18 16:21:43 +00:00
rm -rf "$GLUONDIR"/patches/"$module"
2013-12-28 16:17:02 +00:00
2016-09-24 15:34:14 +00:00
cd "$GLUONDIR"/"$module"
2013-12-28 16:17:02 +00:00
n=0
for commit in $(git rev-list --reverse --no-merges base..patched); do
2013-12-28 16:17:02 +00:00
let n=n+1
2017-01-18 16:21:43 +00:00
mkdir -p "$GLUONDIR"/patches/"$module"
git -c core.abbrev=40 show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' --no-renames --binary "$commit" > "$GLUONDIR/patches/$module/$(printf '%04u' $n)-$(git show -s --pretty=format:%f "$commit").patch"
2013-12-28 16:17:02 +00:00
done
2013-12-28 14:31:11 +00:00
done