diff options
| -rw-r--r-- | .mailmap | 16 | ||||
| -rwxr-xr-x | setup.py | 4 |
2 files changed, 19 insertions, 1 deletions
diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000..d8ac934 --- /dev/null +++ b/.mailmap @@ -0,0 +1,16 @@ +# 'git shortlog --help' and look for mailmap for the format of each line + +# Email consolidation: +# <Preferred address in AUTHORS> <other alias used by same author> + +<jdenemar@redhat.com> <Jiri.Denemark@gmail.com> +<jfehlig@suse.com> <jfehlig@novell.com> +<stefanb@us.ibm.com> <stefanb@linux.vnet.ibm.com> + +# Name consolidation: +# Preferred author spelling <preferred email> +Alex Jia <ajia@redhat.com> +Ján Tomko <jtomko@redhat.com> +MATSUDA Daiki <matsudadik@intellilink.co.jp> +Serge E. Hallyn <serge.hallyn@canonical.com> +Philipp Hahn <hahn@univention.de> @@ -176,7 +176,9 @@ class my_sdist(sdist): f = os.popen("git log --pretty=format:'%aN <%aE>'") authors = [] for line in f: - authors.append(" " + line.strip()) + line = " " + line.strip() + if line not in authors: + authors.append(line) authors.sort(key=str.lower) |
