summaryrefslogtreecommitdiff
path: root/gen-authors.sh
blob: 5896984775350ed5314de85b8a4aad51fba80602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#! /bin/bash

set -eu

trap 'rm -f AUTHORS-m4.tmp AUTHORS-git.tmp' 0

sed -n -e 's/# *Copyright (c) [0-9,-]* *//p' m4/*.m4 >AUTHORS-m4.tmp
git log | sed -n -e 's/^Author: *//p' >AUTHORS-git.tmp

echo '# Copyright (c) 2010 Autoconf Archive Maintainers <autoconf-archive-maintainers@gnu.org>'
echo '#'
echo '# Copying and distribution of this file, with or without modification, are'
echo '# permitted in any medium without royalty provided the copyright notice and this'
echo '# notice are preserved. This file is offered as-is, without any warranty.'
echo ''

cat AUTHORS-m4.tmp AUTHORS-git.tmp \
  | sed -e 's/ *<.*>.*//' \
	-e 's/^Bogdan$/Bogdan Drozdowski/' \
	-e 's/Fabien COELHO/Fabien Coelho/' \
	-e 's/Dustin Mitchell/Dustin J. Mitchell/' \
        -e 's/Alain BARBET/Alain Barbet/' \
        -e 's/Mats Kindahl of Sun Microsystems/Mats Kindahl/' \
        -e 's/Perceval ANICHINI/Perceval Anichini/' \
        -e 's/Rafa Rzepecki/Rafal Rzepecki/' \
        -e '/Zmanda Inc./d' \
  | sort \
  | uniq