gluon/scripts/update-patches.sh

27 lines
631 B
Bash
Raw Normal View History

2013-12-28 14:31:11 +00:00
#!/bin/bash
set -e
shopt -s nullglob
[ "$GLUON_PATCHESDIR" ] || exit 1
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' ---"
rm -rf "${GLUON_PATCHESDIR}/$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
mkdir -p "${GLUON_PATCHESDIR}/$module"
git -c core.abbrev=40 show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' --no-renames --binary "$commit" > "${GLUON_PATCHESDIR}/$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