summaryrefslogtreecommitdiff
path: root/bin/shortlog_mesa.sh
blob: b20c52fdd45ee05619e5d1b7419bca32038ca44d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# This script is used to generate the list of changes that
# appears in the release notes files, with HTML formatting.


typeset -i in_log=0

git shortlog $* | while read l
do
    if [ $in_log -eq 0 ]; then
	echo '<p>'$l'</p>'
	echo '<ul>'
	in_log=1
    elif echo "$l" | egrep -q '^$' ; then
	echo '</ul>'
	echo
	in_log=0
    else
        mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&amp;/g;s/</\&lt;/g;s/>/\&gt;/g')
	echo '  <li>'${mesg}'</li>'
    fi
done