Mesa (9.1): Update get-pick-list to look specifically for "9.1" in NOTE

Carl Worth cworth at kemper.freedesktop.org
Sat Oct 5 03:54:02 UTC 2013


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

Author: Carl Worth <cworth at cworth.org>
Date:   Fri Oct  4 13:52:46 2013 -0700

Update get-pick-list to look specifically for "9.1" in NOTE

We previously adjusted this script so that the new-style markup, (with CC)
would only trigger if it specifically mentioned "9.1", but the old-style
markup (with "NOTE:") was always triggering. Fix it to look for "9.1" as well.

This removes several patches from the current output.

---

 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 0409341..2a5c457 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:.*9\.1.*mesa-stable\)' HEAD..origin/master |\
+git log --reverse --pretty=%H -i --grep='^\([[:space:]]*NOTE: .*[Cc]andidate.*9\.1\|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