From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1250373-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 3148513835A
	for <garchives@archives.gentoo.org>; Fri, 12 Feb 2021 14:28:54 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 35BBCE0A5A;
	Fri, 12 Feb 2021 14:28:53 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 1DE2DE0A5A
	for <gentoo-commits@lists.gentoo.org>; Fri, 12 Feb 2021 14:28:53 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id A965D340D01
	for <gentoo-commits@lists.gentoo.org>; Fri, 12 Feb 2021 14:28:51 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 177392A9
	for <gentoo-commits@lists.gentoo.org>; Fri, 12 Feb 2021 14:28:50 +0000 (UTC)
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" <polynomial-c@gentoo.org>
Message-ID: <1613139932.382ec4f5de6d1bfb9a6b63973efecb3efbaebdd1.polynomial-c@gentoo>
Subject: [gentoo-commits] proj/apache:master commit in: /
X-VCS-Repository: proj/apache
X-VCS-Files: rolltarball.sh
X-VCS-Directories: /
X-VCS-Committer: polynomial-c
X-VCS-Committer-Name: Lars Wendler
X-VCS-Revision: 382ec4f5de6d1bfb9a6b63973efecb3efbaebdd1
X-VCS-Branch: master
Date: Fri, 12 Feb 2021 14:28:50 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 56ef1cc7-d3bc-48d7-832e-947bb69be183
X-Archives-Hash: 390c09578f63d2877f9a73628482b6a2

commit:     382ec4f5de6d1bfb9a6b63973efecb3efbaebdd1
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 12 14:24:38 2021 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Feb 12 14:25:32 2021 +0000
URL:        https://gitweb.gentoo.org/proj/apache.git/commit/?id=382ec4f5

rolltarball.sh: Check for 'Commit:' to determine G_USER

Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 rolltarball.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rolltarball.sh b/rolltarball.sh
index 1962c00..26ccb20 100755
--- a/rolltarball.sh
+++ b/rolltarball.sh
@@ -22,7 +22,7 @@
 
 # Please increase version number before each commit which includes changes to
 # this script.
-MYVERSION='2.0'
+MYVERSION='2.1'
 
 # ********** Begin functions **********
 
@@ -339,7 +339,7 @@ fi
 
 if [ -z "${G_USER}" ]
 then
-	G_USER="$(git log -1 | grep ^Author | sed 's&.*<\([[:alnum:]\._-]\+\)@.*>&\1&')"
+	G_USER="$(git log --pretty=fuller -1 | grep '^Commit:' | sed 's&.*<\([[:alnum:]\._-]\+\)@.*>&\1&')"
 	einfo "Detected Gentoo Developer: ${G_USER}"
 fi