From e23f14fe0cb74ca21e9c1586d836639ce17eab0d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Mon, 1 Sep 2014 23:00:42 +0200
Subject: [PATCH] sync-with-upstream: Generate 'nix/AUTHORS'.

* nix/sync-with-upstream: Use 'git shortlog' to generate nix/AUTHORS.
---
 nix/sync-with-upstream | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/nix/sync-with-upstream b/nix/sync-with-upstream
index 720fae132e5..e9cb070dcce 100755
--- a/nix/sync-with-upstream
+++ b/nix/sync-with-upstream
@@ -1,6 +1,6 @@
 #!/bin/sh
 # GNU Guix --- Functional package management for GNU
-# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
+# Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
 #
 # This file is part of GNU Guix.
 #
@@ -65,7 +65,16 @@ done
 rm -fv "$top_srcdir/nix/libstore/schema.sql.hh"
 
 cp -v "$top_srcdir/nix-upstream/COPYING" "$top_srcdir/nix"
-cp -v "$top_srcdir/nix-upstream/AUTHORS" "$top_srcdir/nix"
+
+# Generate an 'AUTHORS' file since upstream Nix no longer has one.
+cat > "$top_srcdir/nix/AUTHORS" <<EOF
+Most of the code is this directory was written by the following people for
+the Nix project (http://nixos.org/nix).  Thank you!
+
+EOF
+( cd "$top_srcdir/nix-upstream" ; git shortlog --summary )	\
+    | sed -'es/^ *[0-9]\+\(.*\)/   \1/g'			\
+    >> "$top_srcdir/nix/AUTHORS"
 
 # Substitutions.
 sed -i "$top_srcdir/nix/libstore/gc.cc"					\
-- 
GitLab