From 51c9c67a2ff2ec5963680fe5733691a6a991eab5 Mon Sep 17 00:00:00 2001
From: Brian Paul
Date: Thu, 14 Jun 2012 08:22:54 -0600
Subject: mesa: added Ian's shortlog_mesa.sh script in bin/
---
bin/shortlog_mesa.sh | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
create mode 100755 bin/shortlog_mesa.sh
(limited to 'bin')
diff --git a/bin/shortlog_mesa.sh b/bin/shortlog_mesa.sh
new file mode 100755
index 0000000000..1e1ef26e26
--- /dev/null
+++ b/bin/shortlog_mesa.sh
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+# 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 '
'
+ in_log=1
+ elif echo "$l" | egrep -q '^$' ; then
+ echo '
'
+ echo
+ in_log=0
+ else
+ mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&/g;s/\</g;s/>/\>/g')
+ echo ' '${mesg}''
+ fi
+done
--
cgit v1.2.3