From 7a2af605c2c2b0d2e9bbb0b161eba8842acefbcb Mon Sep 17 00:00:00 2001 From: marha Date: Fri, 15 Jun 2012 08:28:24 +0200 Subject: fontconfig mesa pixman xserver git update 15 juni 2012 --- mesalib/bin/shortlog_mesa.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 mesalib/bin/shortlog_mesa.sh (limited to 'mesalib/bin/shortlog_mesa.sh') diff --git a/mesalib/bin/shortlog_mesa.sh b/mesalib/bin/shortlog_mesa.sh new file mode 100644 index 000000000..b20c52fdd --- /dev/null +++ b/mesalib/bin/shortlog_mesa.sh @@ -0,0 +1,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 '

'$l'

' + echo '' + echo + in_log=0 + else + mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&/g;s//\>/g') + echo '
  • '${mesg}'
  • ' + fi +done -- cgit v1.2.3