gluon/scripts/update-patches.sh

22 lines
565 B
Bash
Raw Normal View History

2013-12-28 14:31:11 +00:00
#!/bin/bash
set -e
shopt -s nullglob
. "$GLUONDIR"/scripts/modules.sh
2013-12-28 14:31:11 +00:00
for module in $GLUON_MODULES; do
echo "--- Updating patches for module '$module' ---"
2016-09-24 15:34:14 +00:00
rm -f "$GLUONDIR"/patches/"$module"/*.patch
mkdir -p "$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
2016-09-24 15:34:14 +00:00
git show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' --no-renames "$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