From 1919d7f8c21f888cab96b4a52b15b6e4094c2b4e Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Thu, 13 Dec 2012 02:21:21 +0100 Subject: [PATCH] docs: Include full list of authors --- .mailmap | 2 ++ AUTHORS | 13 +++++++++++++ docs/authors.rst | 8 +------- fabfile.py | 6 ++++++ 4 files changed, 22 insertions(+), 7 deletions(-) create mode 100644 AUTHORS diff --git a/.mailmap b/.mailmap index 15d8f359..93a4aed1 100644 --- a/.mailmap +++ b/.mailmap @@ -1,3 +1,5 @@ +Thomas Adamcik +Thomas Adamcik Kristian Klette Johannes Knutsen Johannes Knutsen diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 00000000..9c9951f8 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,13 @@ +- Stein Magnus Jodal +- Johannes Knutsen +- Thomas Adamcik +- Kristian Klette +- Martins Grunskis +- Henrik Olsson +- Antoine Pierlot-Garcin +- John Bäckstrand +- Fred Hatfull +- Erling Børresen +- David C +- Christian Johansen +- Matt Bray diff --git a/docs/authors.rst b/docs/authors.rst index 822abc15..97a2dd2b 100644 --- a/docs/authors.rst +++ b/docs/authors.rst @@ -4,13 +4,7 @@ Authors Contributors to Mopidy in the order of appearance: -- Stein Magnus Jodal -- Johannes Knutsen -- Thomas Adamcik -- Kristian Klette - -A complete list of persons with commits accepted into the Mopidy repo can be -found at `GitHub `_. +.. include:: ../AUTHORS Showing your appreciation diff --git a/fabfile.py b/fabfile.py index e2d77a06..267bdc23 100644 --- a/fabfile.py +++ b/fabfile.py @@ -12,3 +12,9 @@ def autotest(): local( 'inotifywait -q -e create -e modify -e delete ' '--exclude ".*\.(pyc|sw.)" -r mopidy/ tests/') + + +def update_authors(): + # Keep authors in the order of appearance and use awk to filter out dupes + local( + "git log --format='- %aN <%aE>' --reverse | awk '!x[$0]++' > AUTHORS")