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 4AFD7138334 for ; Fri, 10 Aug 2018 13:00:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A96BE08AA; Fri, 10 Aug 2018 13:00:48 +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 F3598E08AA for ; Fri, 10 Aug 2018 13:00:47 +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 A3EA3335C9A for ; Fri, 10 Aug 2018 13:00:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2E31379 for ; Fri, 10 Aug 2018 13:00:44 +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: <1533906017.c51a5e17f8e8977e3f2e1c6deff5d88c4cd5ae29.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: c51a5e17f8e8977e3f2e1c6deff5d88c4cd5ae29 X-VCS-Branch: genpatches-misc Date: Fri, 10 Aug 2018 13:00:44 +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: a42c63ec-4938-4e51-aa30-29f7c9e3b3f2 X-Archives-Hash: dc0a02937c9b9722c6a817b5c1e650db commit: c51a5e17f8e8977e3f2e1c6deff5d88c4cd5ae29 Author: Mike Pagano gentoo org> AuthorDate: Fri Aug 10 13:00:17 2018 +0000 Commit: Mike Pagano gentoo org> CommitDate: Fri Aug 10 13:00:17 2018 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=c51a5e17 email announcement cleanup web/email-announcement.pl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/web/email-announcement.pl b/web/email-announcement.pl index 5b1755b..c5c2b56 100755 --- a/web/email-announcement.pl +++ b/web/email-announcement.pl @@ -35,7 +35,6 @@ $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) { @@ -52,13 +51,11 @@ 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`; } } @@ -67,7 +64,6 @@ else { #$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.'...master'; -# printf ("4 cmd is $cmd\n"); @log_lines = `$cmd`; }