bin: delete unused releasing scripts
authorDylan Baker <dylan@pnwbakers.com>
Thu, 26 Sep 2019 21:34:49 +0000 (14:34 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Thu, 3 Oct 2019 20:15:19 +0000 (20:15 +0000)
Acked-by: Eric Engestrom <eric.engestrom@intel.com>
Acked-by: Juan A. Suarez <jasuarez@igalia.com>
bin/bugzilla_mesa.sh [deleted file]
bin/shortlog_mesa.sh [deleted file]

diff --git a/bin/bugzilla_mesa.sh b/bin/bugzilla_mesa.sh
deleted file mode 100755 (executable)
index 9095bc9..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-
-# This script is used to generate the list of fixed bugs that
-# appears in the release notes files, with HTML formatting.
-#
-# Note: This script could take a while until all details have
-#       been fetched from bugzilla.
-#
-# Usage examples:
-#
-# $ bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3
-# $ bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3 > bugfixes
-# $ bin/bugzilla_mesa.sh mesa-9.0.2..mesa-9.0.3 | tee bugfixes
-
-
-# regex pattern: trim before bug number
-trim_before='s/.*show_bug.cgi?id=\([0-9]*\).*/\1/'
-
-# regex pattern: reconstruct the url
-use_after='s,^,https://bugs.freedesktop.org/show_bug.cgi?id=,'
-
-echo "<ul>"
-echo ""
-
-# extract fdo urls from commit log
-git log --pretty=medium $* | grep 'bugs.freedesktop.org/show_bug' | sed -e $trim_before | sort -n -u | sed -e $use_after |\
-while read url
-do
-       id=$(echo $url | cut -d'=' -f2)
-       summary=$(wget --quiet -O - $url | grep -e '<title>.*</title>' | sed -e 's/ *<title>[0-9]\+ &ndash; \(.*\)<\/title>/\1/')
-       echo "<li><a href=\"$url\">Bug $id</a> - $summary</li>"
-       echo ""
-done
-
-echo "</ul>"
diff --git a/bin/shortlog_mesa.sh b/bin/shortlog_mesa.sh
deleted file mode 100755 (executable)
index c9a4297..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-# This script is used to generate the list of changes that
-# appears in the release notes files, with HTML formatting.
-#
-# Usage examples:
-#
-# $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3
-# $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3 > changes
-# $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3 | tee changes
-
-
-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