2013-01-15 01:18:40 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-04-14 11:01:27 +00:00
|
|
|
PS1="$"
|
2013-01-21 09:24:30 +00:00
|
|
|
basedir=`pwd`
|
2013-01-15 01:18:40 +00:00
|
|
|
echo "Rebuilding patch files from current fork state..."
|
2016-02-29 23:09:49 +00:00
|
|
|
git config core.safecrlf false
|
2014-04-14 11:01:27 +00:00
|
|
|
|
2013-01-16 17:08:09 +00:00
|
|
|
function cleanupPatches {
|
2013-11-06 00:26:20 +00:00
|
|
|
cd "$1"
|
2013-01-16 17:08:09 +00:00
|
|
|
for patch in *.patch; do
|
2016-02-29 23:09:49 +00:00
|
|
|
echo "$patch"
|
2013-01-22 02:46:26 +00:00
|
|
|
gitver=$(tail -n 2 $patch | grep -ve "^$" | tail -n 1)
|
2016-01-04 10:48:00 +00:00
|
|
|
diffs=$(git diff --staged $patch | grep -E "^(\+|\-)" | grep -Ev "(From [a-z0-9]{32,}|\-\-\- a|\+\+\+ b|.index)")
|
2013-01-22 02:46:26 +00:00
|
|
|
|
|
|
|
testver=$(echo "$diffs" | tail -n 2 | grep -ve "^$" | tail -n 1 | grep "$gitver")
|
|
|
|
if [ "x$testver" != "x" ]; then
|
2016-02-29 23:09:49 +00:00
|
|
|
diffs=$(echo "$diffs" | sed 'N;$!P;$!D;$d')
|
2013-01-22 02:46:26 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "x$diffs" == "x" ] ; then
|
2013-01-16 17:08:09 +00:00
|
|
|
git reset HEAD $patch >/dev/null
|
|
|
|
git checkout -- $patch >/dev/null
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
2014-04-14 11:01:27 +00:00
|
|
|
|
2013-01-15 01:18:40 +00:00
|
|
|
function savePatches {
|
|
|
|
what=$1
|
2016-03-21 17:22:47 +00:00
|
|
|
what_name=$(basename $what)
|
2013-01-15 01:18:40 +00:00
|
|
|
target=$2
|
2016-02-29 23:09:49 +00:00
|
|
|
echo "Formatting patches for $what..."
|
2016-03-22 01:40:18 +00:00
|
|
|
|
|
|
|
cd "$basedir/${what_name}-Patches/"
|
|
|
|
rm -rf *.patch
|
|
|
|
|
2013-11-06 00:26:20 +00:00
|
|
|
cd "$basedir/$target"
|
2016-03-22 00:46:54 +00:00
|
|
|
|
2016-03-21 17:22:47 +00:00
|
|
|
git format-patch --no-stat -N -o "$basedir/${what_name}-Patches/" upstream/upstream >/dev/null
|
2013-11-06 00:26:20 +00:00
|
|
|
cd "$basedir"
|
2016-03-21 17:22:47 +00:00
|
|
|
git add -A "$basedir/${what_name}-Patches"
|
|
|
|
cleanupPatches "$basedir/${what_name}-Patches"
|
|
|
|
echo " Patches saved for $what to $what_name-Patches/"
|
2013-01-15 01:18:40 +00:00
|
|
|
}
|
2016-03-19 04:11:14 +00:00
|
|
|
|
2016-03-21 17:22:47 +00:00
|
|
|
savePatches Spigot/Spigot-API Paper-API
|
|
|
|
savePatches Spigot/Spigot-Server Paper-Server
|