emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/go-mode e4cd631 288/495: Update AUTHORS, automate process


From: ELPA Syncer
Subject: [nongnu] elpa/go-mode e4cd631 288/495: Update AUTHORS, automate process
Date: Sat, 7 Aug 2021 09:05:33 -0400 (EDT)

branch: elpa/go-mode
commit e4cd63196fc32c94993dfdcce232a6e344a39cd7
Author: Dominik Honnef <dominik@honnef.co>
Commit: Dominik Honnef <dominik@honnef.co>

    Update AUTHORS, automate process
    
    Extract pre-git authors to AUTHORS.old and generate the final AUTHORS
    file by running generate_authors.sh, which merges AUTHORS.old with
    information from the git history.
---
 .mailmap               |  1 +
 AUTHORS                |  5 ++++-
 AUTHORS => AUTHORS.old | 13 ++++++-------
 generate_authors.sh    |  6 ++++++
 4 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/.mailmap b/.mailmap
new file mode 100644
index 0000000..66cb811
--- /dev/null
+++ b/.mailmap
@@ -0,0 +1 @@
+Dominik Honnef <dominik@honnef.co> <dominikh@fork-bomb.org>
diff --git a/AUTHORS b/AUTHORS
index f7de154..75f1cc9 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -4,8 +4,9 @@ Austin Clements <aclements@csail.mit.edu>
 Ben Fried <ben.fried@gmail.com>
 Bobby Powers <bobbypowers@gmail.com>
 Charles Lee <zombie.fml@gmail.com>
-Dominik Honnef <dominikh@fork-bomb.org>
+Dominik Honnef <dominik@honnef.co>
 Eric Eisner <eric.d.eisner@gmail.com>
+Erin Keenan <erinok@gmail.com>
 Evan Martin <evan.martin@gmail.com>
 Felix Lange <fjl@twurst.com>
 Florian Weimer <fw@deneb.enyo.de>
@@ -16,6 +17,8 @@ Jan Newmarch <jan.newmarch@gmail.com>
 Jean-Marc Eurin <jmeurin@google.com>
 Juergen Hoetzel <juergen@archlinux.org>
 Kevin Ballard <kevin@sb.org>
+Lowe Thiderman <lowe.thiderman@gmail.com>
+Mark Petrovic <mark.petrovic@xoom.com>
 Mats Lidell <mats.lidell@cag.se>
 Peter Kleiweg <pkleiweg@xs4all.nl>
 Quan Yong Zhai <qyzhai@gmail.com>
diff --git a/AUTHORS b/AUTHORS.old
similarity index 75%
copy from AUTHORS
copy to AUTHORS.old
index f7de154..ecdcbb8 100644
--- a/AUTHORS
+++ b/AUTHORS.old
@@ -1,20 +1,22 @@
+# This file contains all the authors that contributed to go-mode while
+# it was still part of the Go distribution. Most of these authors are
+# not tracked in this repository's history. For a complete list of
+# authors, see the AUTHORS file instead.
+
 Aaron France <aaron.l.france@gmail.com>
 Alan Donovan <adonovan@google.com>
 Austin Clements <aclements@csail.mit.edu>
 Ben Fried <ben.fried@gmail.com>
 Bobby Powers <bobbypowers@gmail.com>
 Charles Lee <zombie.fml@gmail.com>
-Dominik Honnef <dominikh@fork-bomb.org>
+Dominik Honnef <dominik@honnef.co>
 Eric Eisner <eric.d.eisner@gmail.com>
 Evan Martin <evan.martin@gmail.com>
-Felix Lange <fjl@twurst.com>
 Florian Weimer <fw@deneb.enyo.de>
 Istvan Marko <mi-git@kismala.com>
-Iwasaki Yudai <yudai.iwasaki@ntti3.com>
 James Aguilar <jaguilar@google.com>
 Jan Newmarch <jan.newmarch@gmail.com>
 Jean-Marc Eurin <jmeurin@google.com>
-Juergen Hoetzel <juergen@archlinux.org>
 Kevin Ballard <kevin@sb.org>
 Mats Lidell <mats.lidell@cag.se>
 Peter Kleiweg <pkleiweg@xs4all.nl>
@@ -23,10 +25,7 @@ Robert Zaremba <robert.zaremba@zoho.com>
 Rui Ueyama <ruiu@google.com>
 Russ Cox <rsc@golang.org>
 Ryan Barrett <ryanb@google.com>
-RĂ¼diger Sonderfeld <ruediger@c-plusplus.net>
 Sameer Ajmani <sameer@golang.org>
 Scott Lawrence <bytbox@gmail.com>
 Steven Elliot Harris <seharris@gmail.com>
-Taiki Sugawara <buzz.taiki@gmail.com>
-Viacheslav Chimishuk <vchimishuk@yandex-team.ru>
 Yasuyuki Oka <yasuyk@gmail.com>
diff --git a/generate_authors.sh b/generate_authors.sh
new file mode 100755
index 0000000..c7c71fc
--- /dev/null
+++ b/generate_authors.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+export LC_ALL=C
+(
+    grep -v "^#" AUTHORS.old | grep -v '^$'
+    git log --format='%aN <%aE>'
+) | sort -u



reply via email to

[Prev in Thread] Current Thread [Next in Thread]