Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:genpatches-misc commit in: web/
Date: Wed, 25 Jul 2018 11:41:30
Message-Id: 1532518871.eca85db2728dc6d9d86d3eb5987ed2ac10be9841.mpagano@gentoo
1 commit: eca85db2728dc6d9d86d3eb5987ed2ac10be9841
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 25 11:41:11 2018 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 25 11:41:11 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=eca85db2
7
8 Remove debug lines
9
10 web/email-announcement.pl | 8 ++++----
11 1 file changed, 4 insertions(+), 4 deletions(-)
12
13 diff --git a/web/email-announcement.pl b/web/email-announcement.pl
14 index 476941f..1020df4 100755
15 --- a/web/email-announcement.pl
16 +++ b/web/email-announcement.pl
17 @@ -33,7 +33,7 @@ $result = `git -C ${LOCAL_TMP}/linux-patches checkout ${tag}`;
18 if ($rel > 1) {
19 $oldtag = $ver.'-'.($rel-1);
20 $cmd='git -C '.${LOCAL_TMP}.'/linux-patches rev-list '.$oldtag;
21 - printf ("1 cmd is $cmd\n");
22 +# printf ("1 cmd is $cmd\n");
23 @output = `$cmd`;
24
25 foreach $line (@output) {
26 @@ -50,13 +50,13 @@ if ($rel > 1) {
27
28 if ($have_history == 1) {
29 $cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$oldtag.'..'.$tag;
30 - printf ("2 cmd is $cmd\n");
31 +# printf ("2 cmd is $cmd\n");
32 @log_lines = `$cmd`;
33 $have_history = 1;
34 }
35 else {
36 $cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$tag;
37 - printf ("3 cmd is $cmd\n");
38 +# printf ("3 cmd is $cmd\n");
39 @log_lines = `$cmd`;
40 }
41 }
42 @@ -65,7 +65,7 @@ else {
43 #$cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" --name-status '.$ver;
44 #$cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" ..'.$tag;
45 $cmd='git --no-pager -C '.${LOCAL_TMP}.'/linux-patches log --pretty=format:"%s (%an)" '.$tag.'...master';
46 - printf ("4 cmd is $cmd\n");
47 +# printf ("4 cmd is $cmd\n");
48 @log_lines = `$cmd`;
49 }