From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 296AE138334 for ; Tue, 24 Jul 2018 16:43:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EEFEE08EB; Tue, 24 Jul 2018 16:43:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 00BB5E08EB for ; Tue, 24 Jul 2018 16:43:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7E19933D3C2 for ; Tue, 24 Jul 2018 16:43:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 747CB36B for ; Tue, 24 Jul 2018 16:43:07 +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: <1532450576.893f2dc6c3b67bd9c137f9ce41abe243bc9eb0bb.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: 893f2dc6c3b67bd9c137f9ce41abe243bc9eb0bb X-VCS-Branch: genpatches-misc Date: Tue, 24 Jul 2018 16:43:07 +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: 3bd73400-e686-41f8-8cc0-435e99e61162 X-Archives-Hash: 541c9f4ce5ac1c300b13b0f98402397a commit: 893f2dc6c3b67bd9c137f9ce41abe243bc9eb0bb Author: Mike Pagano gentoo org> AuthorDate: Tue Jul 24 16:42:56 2018 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Jul 24 16:42:56 2018 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=893f2dc6 Update email announcement for X-1 kernels. web/email-announcement.pl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/email-announcement.pl b/web/email-announcement.pl index c533ae5..476941f 100755 --- a/web/email-announcement.pl +++ b/web/email-announcement.pl @@ -33,6 +33,7 @@ $result = `git -C ${LOCAL_TMP}/linux-patches checkout ${tag}`; if ($rel > 1) { $oldtag = $ver.'-'.($rel-1); $cmd='git -C '.${LOCAL_TMP}.'/linux-patches rev-list '.$oldtag; + printf ("1 cmd is $cmd\n"); @output = `$cmd`; foreach $line (@output) { @@ -49,18 +50,22 @@ if ($rel > 1) { if ($have_history == 1) { $cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$oldtag.'..'.$tag; + printf ("2 cmd is $cmd\n"); @log_lines = `$cmd`; $have_history = 1; } else { $cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$tag; + printf ("3 cmd is $cmd\n"); @log_lines = `$cmd`; } } else { # 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)" ..'.$tag; + #$cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" ..'.$tag; + $cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" '.$tag.'...master'; + printf ("4 cmd is $cmd\n"); @log_lines = `$cmd`; }