diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-09-26 14:34:49 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-10-03 20:15:19 +0000 |
commit | 974e3ad00465460835939f57f19510b351a9aa8c (patch) | |
tree | 2d196a35613e6eea7ba1d85dec1bfc9e28770388 /bin | |
parent | 3226b12a09bbcbd25526fd6da6257057d26ddb31 (diff) | |
download | mesa-974e3ad00465460835939f57f19510b351a9aa8c.tar.gz mesa-974e3ad00465460835939f57f19510b351a9aa8c.tar.bz2 mesa-974e3ad00465460835939f57f19510b351a9aa8c.zip |
bin: delete unused releasing scripts
Acked-by: Eric Engestrom <eric.engestrom@intel.com>
Acked-by: Juan A. Suarez <jasuarez@igalia.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/bugzilla_mesa.sh | 35 | ||||
-rwxr-xr-x | bin/shortlog_mesa.sh | 29 |
2 files changed, 0 insertions, 64 deletions
diff --git a/bin/bugzilla_mesa.sh b/bin/bugzilla_mesa.sh deleted file mode 100755 index 9095bc9deea..00000000000 --- a/bin/bugzilla_mesa.sh +++ /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]\+ – \(.*\)<\/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 index c9a42972368..00000000000 --- a/bin/shortlog_mesa.sh +++ /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/\&/&/g;s/</\</g;s/>/\>/g') - echo ' <li>'${mesg}'</li>' - fi -done |