diff options
author | Frank Ch. Eigler <fche@redhat.com> | 2022-04-24 19:39:47 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@redhat.com> | 2022-04-24 19:39:47 -0400 |
commit | 72823322be9a8f0143de21ccfb67a89696a9522f (patch) | |
tree | 9bf3e97e3bdd0fb4659535f5be52fb90a276dc21 /AUTHORS.sh | |
parent | libelf: Check for mremap, elf_update needs it for ELF_C_RDWR_MMAP (diff) | |
download | elfutils-72823322be9a8f0143de21ccfb67a89696a9522f.tar.gz elfutils-72823322be9a8f0143de21ccfb67a89696a9522f.tar.bz2 elfutils-72823322be9a8f0143de21ccfb67a89696a9522f.tar.xz |
AUTHORS: Use generator script & git mailmap
We can compute a pretty complete list of contributors.
Signed-off-by: Frank Ch. Eigler <fche@redhat.com>
Diffstat (limited to 'AUTHORS.sh')
-rw-r--r-- | AUTHORS.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/AUTHORS.sh b/AUTHORS.sh new file mode 100644 index 00000000..ff048a64 --- /dev/null +++ b/AUTHORS.sh | |||
@@ -0,0 +1,12 @@ | |||
1 | #! /bin/sh | ||
2 | |||
3 | # Create the AUTHORS file, by searching the git history. | ||
4 | |||
5 | # Run as "AUTHORS.sh" to get complete history | ||
6 | # Run with "AUTHORS.sh commitish..commitish" for history between tags | ||
7 | |||
8 | # shortlog will canonicalize the names using the file .mailmap | ||
9 | git shortlog -s ${1-} | | ||
10 | sed -e 's, via Elfutils-devel,,' | | ||
11 | cut -b8- | # strip the commit counts | ||
12 | sort | uniq | ||