mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-12-01 03:20:41 +00:00
f35f8464ec
After a recent Bugzilla update the word is no longer in the title. Thus the script ended up producing bogus HTML. Cc: "11.2 12.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
50 lines
1.3 KiB
Bash
Executable File
50 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script is used to generate the list of fixed bugs that
|
|
# appears in the release notes files, with HTML formatting.
|
|
#
|
|
# Note: This script could take a while until all details have
|
|
# been fetched from bugzilla.
|
|
#
|
|
# Usage examples:
|
|
#
|
|
# $ bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3
|
|
# $ bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3 > bugfixes
|
|
# $ bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3 | tee bugfixes
|
|
# $ DRYRUN=yes bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3
|
|
# $ DRYRUN=yes bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3 | wc -l
|
|
|
|
|
|
# regex pattern: trim before bug number
|
|
trim_before='s/.*show_bug.cgi?id=\([0-9]*\).*/\1/'
|
|
|
|
# regex pattern: reconstruct the url
|
|
use_after='s,^,https://bugs.freedesktop.org/show_bug.cgi?id=,'
|
|
|
|
# extract fdo urls from commit log
|
|
urls=$(git log $* | grep 'bugs.freedesktop.org/show_bug' | sed -e $trim_before | sort -n -u | sed -e $use_after)
|
|
|
|
# if DRYRUN is set to "yes", simply print the URLs and don't fetch the
|
|
# details from fdo bugzilla.
|
|
#DRYRUN=yes
|
|
|
|
if [ "x$DRYRUN" = xyes ]; then
|
|
for i in $urls
|
|
do
|
|
echo $i
|
|
done
|
|
else
|
|
echo "<ul>"
|
|
echo ""
|
|
|
|
for i in $urls
|
|
do
|
|
id=$(echo $i | cut -d'=' -f2)
|
|
summary=$(wget --quiet -O - $i | grep -e '<title>.*</title>' | sed -e 's/ *<title>[0-9]\+ – \(.*\)<\/title>/\1/')
|
|
echo "<li><a href=\"$i\">Bug $id</a> - $summary</li>"
|
|
echo ""
|
|
done
|
|
|
|
echo "</ul>"
|
|
fi
|