All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] devtools: make commits with stable tag outstanding
@ 2017-02-23  2:49 Yuanhan Liu
  2017-03-10 11:13 ` Thomas Monjalon
  2017-04-06  6:33 ` [PATCH v2] " Yuanhan Liu
  0 siblings, 2 replies; 5+ messages in thread
From: Yuanhan Liu @ 2017-02-23  2:49 UTC (permalink / raw)
  To: dev; +Cc: Thomas Monjalon, Yuanhan Liu

So that, as a stable maintainer while picking commits to a stable release,
I could pay less attention to those have it and pay more attention to those
don't have it.

Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
---
 devtools/git-log-fixes.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/devtools/git-log-fixes.sh b/devtools/git-log-fixes.sh
index d590735..af489a5 100755
--- a/devtools/git-log-fixes.sh
+++ b/devtools/git-log-fixes.sh
@@ -116,5 +116,7 @@ while read id headline ; do
 	else
 		origver='N/A'
 	fi
-	printf '%s %7s %s (%s)\n' $version $id "$headline" "$origver"
+	stable="-"
+	git show $id | grep -qi 'Cc: .*stable@dpdk.org' && stable="S"
+	printf '%s %7s %s %s (%s)\n' $version $id $stable "$headline" "$origver"
 done
-- 
1.9.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-04-06 19:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-23  2:49 [PATCH] devtools: make commits with stable tag outstanding Yuanhan Liu
2017-03-10 11:13 ` Thomas Monjalon
2017-04-06  6:31   ` Yuanhan Liu
2017-04-06  6:33 ` [PATCH v2] " Yuanhan Liu
2017-04-06 19:25   ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.