bin/get-pick-list.sh: handle the fixes tag
[mesa.git] / bin / get-pick-list.sh
1 #!/bin/sh
2
3 # Script for generating a list of candidates for cherry-picking to a stable branch
4 #
5 # Usage examples:
6 #
7 # $ bin/get-pick-list.sh
8 # $ bin/get-pick-list.sh > picklist
9 # $ bin/get-pick-list.sh | tee picklist
10 #
11 # The output is as follows:
12 # [nomination_type] commit_sha commit summary
13
14 is_stable_nomination()
15 {
16 git show --summary "$1" | grep -q -i -o "CC:.*mesa-stable"
17 }
18
19 is_typod_nomination()
20 {
21 git show --summary "$1" | grep -q -i -o "CC:.*mesa-dev"
22 }
23
24 is_fixes_nomination()
25 {
26 fixes=`git show --pretty=medium -s $1 | tr -d "\n" | \
27 sed -e 's/fixes:[[:space:]]*/\nfixes:/Ig' | \
28 grep "fixes:" | sed -e 's/\(fixes:[a-zA-Z0-9]*\).*$/\1/'`
29
30 fixes_count=`echo "$fixes" | wc -l`
31 if [ $fixes_count -eq 0 ] ; then
32 return 0
33 fi
34 while [ $fixes_count -gt 0 ] ; do
35 # Treat only the current line
36 id=`echo "$fixes" | tail -n $fixes_count | head -n 1 | cut -d : -f 2`
37 fixes_count=$(($fixes_count-1))
38
39 # Bail out if we cannot find suitable id.
40 # Any specific validation the $id is valid and not some junk, is
41 # implied with the follow up code
42 if [ "x$id" = x ] ; then
43 continue
44 fi
45
46 #Check if the offending commit is in branch.
47
48 # Be that cherry-picked ...
49 # ... or landed before the branchpoint.
50 if grep -q ^$id already_picked ||
51 grep -q ^$id already_landed ; then
52 return 0
53 fi
54 done
55 return 1
56 }
57
58 # Use the last branchpoint as our limit for the search
59 latest_branchpoint=`git merge-base origin/master HEAD`
60
61 # List all the commits between day 1 and the branch point...
62 git log --reverse --pretty=%H $latest_branchpoint > already_landed
63
64 # ... and the ones cherry-picked.
65 git log --reverse --pretty=medium --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
66 grep "cherry picked from commit" |\
67 sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked
68
69 # Grep for potential candidates
70 git log --reverse --pretty=%H -i --grep='^CC:.*mesa-stable\|^CC:.*mesa-dev\|fixes:' $latest_branchpoint..origin/master |\
71 while read sha
72 do
73 # Check to see whether the patch is on the ignore list.
74 if [ -f bin/.cherry-ignore ] ; then
75 if grep -q ^$sha bin/.cherry-ignore ; then
76 continue
77 fi
78 fi
79
80 # Check to see if it has already been picked over.
81 if grep -q ^$sha already_picked ; then
82 continue
83 fi
84
85 if is_stable_nomination "$sha"; then
86 tag=stable
87 elif is_typod_nomination "$sha"; then
88 tag=typod
89 elif is_fixes_nomination "$sha"; then
90 tag=fixes
91 else
92 continue
93 fi
94
95 printf "[ %8s ] " "$tag"
96 git --no-pager show --summary --oneline $sha
97 done
98
99 rm -f already_picked
100 rm -f already_landed