Mesa (8.0): mesa: added Ian's shortlog_mesa.sh script in bin/

Kenneth Graunke kwg at kemper.freedesktop.org
Fri Aug 17 06:54:40 UTC 2012


Module: Mesa
Branch: 8.0
Commit: c12dcfd73c8e85f63f0dd7ca177d050276e492ff
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c12dcfd73c8e85f63f0dd7ca177d050276e492ff

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Jun 14 08:22:54 2012 -0600

mesa: added Ian's shortlog_mesa.sh script in bin/

---

 bin/shortlog_mesa.sh |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/bin/shortlog_mesa.sh b/bin/shortlog_mesa.sh
new file mode 100755
index 0000000..1e1ef26
--- /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 '<p>'$l
+	echo '<ul>'
+	in_log=1
+    elif echo "$l" | egrep -q '^$' ; then
+	echo '</ul></p>'
+	echo
+	in_log=0
+    else
+        mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&/g;s/</\&lt/g;s/>/\>/g')
+	echo '  <li>'${mesg}'</li>'
+    fi
+done




More information about the mesa-commit mailing list