forked from TacoSpigot/TacoSpigot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
applyPatches.sh
executable file
·87 lines (73 loc) · 2.46 KB
/
applyPatches.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/bin/bash
PS1="$"
basedir=`pwd`
gpgsign=$(git config commit.gpgsign)
echo "Rebuilding Forked projects.... "
function applyPatch {
what=$1
what_name=$(basename $what) # the 'name' of what, for situations where 'what' contains a slash
target=$2
branch=$3
cd "$basedir/$what"
git fetch
git branch -f upstream "$branch" >/dev/null
cd "$basedir"
if [ ! -d "$basedir/$target" ]; then
git clone "$what" "$target"
fi
cd "$basedir/$target"
echo "Resetting $target to $what_name..."
git remote add -f upstream ../$what >/dev/null 2>&1
git checkout master >/dev/null 2>&1
git fetch upstream >/dev/null 2>&1
git reset --hard upstream/upstream
echo " Applying patches to $target..."
git am --abort >/dev/null 2>&1
git am --3way --ignore-whitespace "$basedir/${what_name}-Patches/"*.patch
if [ "$?" != "0" ]; then
echo " Something did not apply cleanly to $target."
echo " Please review above details and finish the apply then"
echo " save the changes with rebuildPatches.sh"
enableCommitSigningIfNeeded
exit 1
else
echo " Patches applied cleanly to $target"
fi
}
function enableCommitSigningIfNeeded {
if [[ "$gpgsign" == "true" ]]; then
echo "Re-enabling GPG Signing"
# Yes, this has to be global
git config --global commit.gpgsign true
fi
}
# Disable GPG signing before AM, slows things down and doesn't play nicely.
# There is also zero rational or logical reason to do so for these sub-repo AMs.
# Calm down kids, it's re-enabled (if needed) immediately after, pass or fail.
if [[ "$gpgsign" == "true" ]]; then
echo "_Temporarily_ disabling GPG signing"
git config --global commit.gpgsign false
fi
# Move into paper dir
pushd Paper
basedir=$basedir/Paper
# Move into spigot dir
pushd work/Spigot
basedir=$basedir/work/Spigot
# Apply Spigot
applyPatch ../Bukkit Spigot-API HEAD && applyPatch ../CraftBukkit Spigot-Server patched
# Move out of Spigot
popd
basedir=$(dirname $(dirname $basedir))
echo "Importing Paper MC Dev"
./scripts/importmcdev.sh
# Apply paper
applyPatch work/Spigot/Spigot-API Paper-API HEAD && applyPatch work/Spigot/Spigot-Server Paper-Server HEAD
# Move out of paper
popd
basedir=$(dirname $basedir)
echo "Importing TacoSpigot mc-dev"
./importmcdev.sh
# Apply TacoSpigot
applyPatch Paper/Paper-API TacoSpigot-API HEAD && applyPatch Paper/Paper-Server TacoSpigot-Server HEAD
enableCommitSigningIfNeeded