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 E14B8138CF8 for ; Tue, 23 Jun 2015 12:07:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7C9DE085A; Tue, 23 Jun 2015 12:07:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6AA60E085A for ; Tue, 23 Jun 2015 12:07:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82CAD340AC9 for ; Tue, 23 Jun 2015 12:07:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF75AA35 for ; Tue, 23 Jun 2015 12:07:22 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1435061260.2b7dcd8759d1188ceb65677ae530c0c0565273d7.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:genpatches-misc commit in: web/ X-VCS-Repository: proj/linux-patches X-VCS-Files: web/email-announcement.pl X-VCS-Directories: web/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 2b7dcd8759d1188ceb65677ae530c0c0565273d7 X-VCS-Branch: genpatches-misc Date: Tue, 23 Jun 2015 12:07:22 +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: de0df427-5f9f-4889-bffe-d28a93569f58 X-Archives-Hash: ddb9b605c91d733bd324b443a3f5b8e1 commit: 2b7dcd8759d1188ceb65677ae530c0c0565273d7 Author: Mike Pagano gentoo org> AuthorDate: Tue Jun 23 12:07:40 2015 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Jun 23 12:07:40 2015 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=2b7dcd87 Fix email annoucement for X.0.0 kernels. web/email-announcement.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/email-announcement.pl b/web/email-announcement.pl index 51978ac..45ad54d 100755 --- a/web/email-announcement.pl +++ b/web/email-announcement.pl @@ -58,7 +58,9 @@ if ($rel > 1) { } } else { - $cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$tag; + # just do git log + #$cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$ver; + $cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" '; @log_lines = `$cmd`; }