[Mesa-dev] [PATCH 8/9] bin/get-pick-list.sh: handle unofficial "broken by" tag
Emil Velikov
emil.l.velikov at gmail.com
Thu Nov 8 15:05:20 UTC 2018
From: Emil Velikov <emil.velikov at collabora.com>
We have a number of cases were devs will use a tag "broken by".
While it's not something officially documented or recommended, checking
for it is trivial enough.
Signed-off-by: Emil Velikov <emil.velikov at collabora.com>
---
bin/get-pick-list.sh | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh
index 65f35506d5b..5a6707e64dd 100755
--- a/bin/get-pick-list.sh
+++ b/bin/get-pick-list.sh
@@ -66,6 +66,11 @@ is_fixes_nomination()
is_sha_nomination "$1" "fixes[[:space:]]\+"
}
+is_brokenby_nomination()
+{
+ is_sha_nomination "$1" "broken by"
+}
+
# Use the last branchpoint as our limit for the search
latest_branchpoint=`git merge-base origin/master HEAD`
@@ -78,7 +83,7 @@ git log --reverse --pretty=medium --grep="cherry picked from commit" $latest_bra
sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked
# Grep for potential candidates
-git log --reverse --pretty=%H -i --grep='^CC:.*mesa-stable\|^CC:.*mesa-dev\|\<fixes\>' $latest_branchpoint..origin/master |\
+git log --reverse --pretty=%H -i --grep='^CC:.*mesa-stable\|^CC:.*mesa-dev\|\<fixes\>\|\<broken by\>' $latest_branchpoint..origin/master |\
while read sha
do
# Check to see whether the patch is on the ignore list.
@@ -100,6 +105,8 @@ do
tag=typod
elif is_fixes_nomination "$sha"; then
tag=fixes
+ elif is_brokenby_nomination "$sha"; then
+ tag=brokenby
else
continue
fi
--
2.19.1
More information about the mesa-dev
mailing list