man7: Add footer.txt
[libquvi-scripts.git] / gen-news.sh
blob72ff80664d61cc09790eb3a19769faea879d4190
1 #!/bin/sh
3 # libquvi-scripts
4 # Copyright (C) 2012 Toni Gundogdu <legatvs@gmail.com>
6 # This file part of libquvi-scripts <http://quvi.sourceforge.net/>.
8 # This program is free software: you can redistribute it and/or
9 # modify it under the terms of the GNU Affero General Public
10 # License as published by the Free Software Foundation, either
11 # version 3 of the License, or (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU Affero General Public License for more details.
18 # You should have received a copy of the GNU Affero General
19 # Public License along with this program. If not, see
20 # <http://www.gnu.org/licenses/>.
22 set -e
24 IFS=$'
26 a=`grep < ~/.gitconfig name | cut -f2 -d= | sed 's/^\s*//'`
27 v=`./gen-ver.sh`
28 d=`date +%F`
29 b="$v -- [$d, r:$a]
32 t=`git describe --abbrev=0`
33 for a in `git log --format='%an' "$t"..HEAD | sort | uniq`; do
34 c=`git log --format=" - %s [%h]" --author="$a" "$t"..HEAD | sort -h`
35 b="$b$a:
38 done
39 b="$b
40 `git diff --shortstat "$t"..HEAD`
43 n=`cat NEWS`
44 F=NEWS
45 echo "$b" >"$F" ; echo "$n" >>"$F"