Mesa (9.1): get-pick-list: Ignore commits which CC mesa-stable unless they say "9.1"

Carl Worth cworth at kemper.freedesktop.org
Thu Aug 1 20:40:32 UTC 2013


Module: Mesa
Branch: 9.1
Commit: a33ecd80749902ca72f4a42feadb509eae551e1b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a33ecd80749902ca72f4a42feadb509eae551e1b

Author: Carl Worth <cworth at cworth.org>
Date:   Thu Aug  1 13:34:30 2013 -0700

get-pick-list: Ignore commits which CC mesa-stable unless they say "9.1"

With the recent creation of the 9.2 branch, we're now seeing a steady flow of
new patches to mesa-stable@ intended for that branch. To avoid wasting effort
trying to apply these to 9.1, we now require developers to specifically
mention "9.1" to target the 9.1 branch.

---

 bin/get-pick-list.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh
index 0902fd0..0409341 100755
--- a/bin/get-pick-list.sh
+++ b/bin/get-pick-list.sh
@@ -14,7 +14,7 @@ git log --reverse --grep="cherry picked from commit" origin/master..HEAD |\
 	sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked
 
 # Grep for commits that were marked as a candidate for the stable tree.
-git log --reverse --pretty=%H -i --grep='^\([[:space:]]*NOTE: .*[Cc]andidate\|CC:.*mesa-stable\)' HEAD..origin/master |\
+git log --reverse --pretty=%H -i --grep='^\([[:space:]]*NOTE: .*[Cc]andidate\|CC:.*9\.1.*mesa-stable\)' HEAD..origin/master |\
 while read sha
 do
 	# Check to see whether the patch is on the ignore list.




More information about the mesa-commit mailing list