From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A19691381F3 for ; Fri, 21 Jun 2013 18:34:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 570C1E0AE8; Fri, 21 Jun 2013 18:33:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3490E0AE8 for ; Fri, 21 Jun 2013 18:33:58 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACECC33E696 for ; Fri, 21 Jun 2013 18:33:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 4D2F6E468F for ; Fri, 21 Jun 2013 18:33:56 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1371839603.c0d8dede6893a998f7ec5d06eb24d30f02e931b1.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:gsoc13/next commit in: files/hooks/ X-VCS-Repository: proj/R_overlay X-VCS-Files: files/hooks/git-commit-overlay.sh X-VCS-Directories: files/hooks/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: c0d8dede6893a998f7ec5d06eb24d30f02e931b1 X-VCS-Branch: gsoc13/next Date: Fri, 21 Jun 2013 18:33:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 798a5551-fa6a-4ab0-97f2-afa7485a869e X-Archives-Hash: fcd101c89dfe54dfb97207ae8e8f08e7 Message-ID: <20130621183356.SXDEfeLGisw9RikYVU_xN_gTiZzIyaP-XcNGuek9psQ@z> commit: c0d8dede6893a998f7ec5d06eb24d30f02e931b1 Author: André Erdmann mailerd de> AuthorDate: Fri Jun 21 18:33:23 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Fri Jun 21 18:33:23 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=c0d8dede git-commit-overlay.sh: drop --author arg --- files/hooks/git-commit-overlay.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/hooks/git-commit-overlay.sh b/files/hooks/git-commit-overlay.sh index 43060ab..c33be9e 100644 --- a/files/hooks/git-commit-overlay.sh +++ b/files/hooks/git-commit-overlay.sh @@ -28,7 +28,7 @@ $lf git ## "config" for this script # FIXME/TODO: remove config here? -GIT_COMMIT_AUTHOR='undef undef undef@undef.org' +##GIT_COMMIT_AUTHOR='undef undef undef@undef.org' GIT_COMMIT_MESSAGE='roverlay updates' GIT_COMMIT_MAX_LINE_WIDTH=79 @@ -84,7 +84,7 @@ git_commit() { # commit if run_command_logged \ ${GIT} commit --quiet --no-edit \ - --file "${COMMIT_MSG_FILE}" --author="${GIT_COMMIT_AUTHOR}" + --file "${COMMIT_MSG_FILE}" ## --author="${GIT_COMMIT_AUTHOR}" then rm "${COMMIT_MSG_FILE-}" && COMMIT_MSG_FILE= trap - INT TERM EXIT