3 # This script is used to generate the list of fixed bugs that
4 # appears in the release notes files, with HTML formatting.
6 # Note: This script could take a while until all details have
7 # been fetched from bugzilla.
11 # $ bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3
12 # $ bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3 > bugfixes
13 # $ bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3 | tee bugfixes
16 # regex pattern: trim before bug number
17 trim_before
='s/.*show_bug.cgi?id=\([0-9]*\).*/\1/'
19 # regex pattern: reconstruct the url
20 use_after
='s,^,https://bugs.freedesktop.org/show_bug.cgi?id=,'
25 # extract fdo urls from commit log
26 git log $
* |
grep 'bugs.freedesktop.org/show_bug' |
sed -e $trim_before |
sort -n -u |
sed -e $use_after |\
29 id
=$
(echo $url | cut
-d'=' -f2)
30 summary
=$
(wget
--quiet -O - $url |
grep -e '<title>.*</title>' |
sed -e 's/ *<title>[0-9]\+ – \(.*\)<\/title>/\1/')
31 echo "<li><a href=\"$url\">Bug $id</a> - $summary</li>"