mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2025-02-16 16:10:58 +00:00
![Emil Velikov](/assets/img/avatar_default.png)
Currently we loop (git log --grep) to check if the fix has landed. We can simplify and make things faster by storing the already_picked list and grep ping through it. Slim down the message while we're here. Cc: "13.0 17.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
38 lines
1.1 KiB
Bash
Executable File
38 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Script for generating a list of candidates which fix commits that have been
|
|
# previously cherry-picked to a stable branch.
|
|
#
|
|
# Usage examples:
|
|
#
|
|
# $ bin/get-extra-pick-list.sh
|
|
# $ bin/get-extra-pick-list.sh > picklist
|
|
# $ bin/get-extra-pick-list.sh | tee picklist
|
|
|
|
# Use the last branchpoint as our limit for the search
|
|
latest_branchpoint=`git merge-base origin/master HEAD`
|
|
|
|
# Grep for commits with "cherry picked from commit" in the commit message.
|
|
git log --reverse --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
|
|
grep "cherry picked from commit" |\
|
|
sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked
|
|
|
|
# For each cherry-picked commit...
|
|
cat already_picked | cut -c -8 |\
|
|
while read sha
|
|
do
|
|
# ... check if it's referenced (fixed by another) patch
|
|
git log -n1 --pretty=oneline --grep=$sha $latest_branchpoint..origin/master |\
|
|
cut -c -8 |\
|
|
while read candidate
|
|
do
|
|
# And flag up if it hasn't landed in branch yet.
|
|
if grep -q ^$candidate already_picked ; then
|
|
continue
|
|
fi
|
|
echo Commit $candidate references $sha
|
|
done
|
|
done
|
|
|
|
rm -f already_picked
|