loader: remove shouting from ORB's variable name
[hvf.git] / scripts / gen-announce-email.sh
blob62a81facc518e920b504bb61479876444e98765b
1 #!/bin/bash
3 USAGE="$0 <rev> <prev_rev>"
5 rev="$1"
6 prev_rev="$2"
8 if [ -z "$rev" -o -z "$prev_rev" ]; then
9 echo $USAGE >&2
10 exit 1
13 (cat << DONE
14 HVF <<REV>> is available for download.
16 HVF is a hypervisor OS for z/Architecture systems.
18 Tarballs:
19 http://hvf.31bits.net/src/
21 Git repo:
22 git://repo.or.cz/hvf.git
25 <<SUMMARY>>
27 As always, patches, and other feedback is welcome.
29 Josef "Jeff" Sipek.
31 ------------
32 Changes since <<PREV_REV>>:
34 DONE
35 ) | sed -e "s/<<REV>>/$rev/g" -e "s/<<PREV_REV>>/$prev_rev/g"
37 git log --no-merges $prev_rev..$rev | git shortlog | cat