Paper/scripts/rebuildPatches.sh

53 lines
1.4 KiB
Bash
Raw Normal View History

2016-04-02 03:55:54 +00:00
#!/usr/bin/env bash
(
set -e
PS1="$"
basedir=$(realpath "$1")
2016-04-02 03:55:54 +00:00
workdir="$basedir/work"
echo "Rebuilding patch files from current fork state..."
2016-02-29 23:09:49 +00:00
git config core.safecrlf false
function cleanupPatches {
cd "$1"
for patch in *.patch; do
2016-02-29 23:09:49 +00:00
echo "$patch"
2016-04-02 03:55:54 +00:00
gitver=$(tail -n 2 "$patch" | grep -ve "^$" | tail -n 1)
diffs=$(git diff --staged "$patch" | grep -E "^(\+|\-)" | grep -Ev "(From [a-z0-9]{32,}|\-\-\- a|\+\+\+ b|.index)")
testver=$(echo "$diffs" | tail -n 2 | grep -ve "^$" | tail -n 1 | grep "$gitver")
if [ "x$testver" != "x" ]; then
set +e
2016-02-29 23:09:49 +00:00
diffs=$(echo "$diffs" | sed 'N;$!P;$!D;$d')
set -e
fi
if [ "x$diffs" == "x" ] ; then
2016-04-02 03:55:54 +00:00
git reset HEAD "$patch" >/dev/null
git checkout -- "$patch" >/dev/null
fi
done
}
function savePatches {
what=$1
2016-04-02 03:55:54 +00:00
what_name=$(basename "$what")
target=$2
2016-02-29 23:09:49 +00:00
echo "Formatting patches for $what..."
cd "$basedir/${what_name}-Patches/"
rm -rf *.patch
cd "$basedir/$target"
git format-patch --no-stat -N -o "$basedir/${what_name}-Patches/" upstream/upstream >/dev/null
cd "$basedir"
git add -A "$basedir/${what_name}-Patches"
cleanupPatches "$basedir/${what_name}-Patches"
echo " Patches saved for $what to $what_name-Patches/"
}
2016-03-19 04:11:14 +00:00
2016-04-02 03:55:54 +00:00
savePatches "$workdir/Spigot/Spigot-API" "Paper-API"
savePatches "$workdir/Spigot/Spigot-Server" "Paper-Server"
)