From patchwork Mon Nov 21 22:43:14 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 17173 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 431A92BD1; Mon, 21 Nov 2016 23:43:39 +0100 (CET) Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47]) by dpdk.org (Postfix) with ESMTP id 9F38A2BC8 for ; Mon, 21 Nov 2016 23:43:38 +0100 (CET) Received: by mail-wm0-f47.google.com with SMTP id t79so7176212wmt.0 for ; Mon, 21 Nov 2016 14:43:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id; bh=ySutfgo4UcsgVwYcGhJP5Dvk9pqqZh52+8CoREduUWQ=; b=Qz0rUi8ZqSLOHx3qYR3yqkNwtnlwXJEcMbSDJdsN0oRf71g3Xz8EDUSvhmHDpWEAtG 8j5aVJY+AGmKFIj+OWgndNpSJLMyos3Uu/UgS44uS5gmHYvsozj9Ko/20rAW+A+Uh6D9 +SQR0G30pT/h66KSNIunwQymhLHgn1KDXJbZGUjrqR5Sone3WJKGOxZIPkLuYm/pZhT0 8H38epfm5jfh9kGtbixDeqAIAwYbWdwgHWhIDWC/BMBhAAhLsUTIgOVEAwogqUH6jxb+ o7FDJyzskJsP4p3k+CPraUqW+MdxlOIRCC4uzd8Ow7C36R2RhzmxJ4z7gsiHK3sDSC6y D3rA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=ySutfgo4UcsgVwYcGhJP5Dvk9pqqZh52+8CoREduUWQ=; b=l4TgDBGPYlIuMpX25mINNRMWzs9vj5eaQNAo3hY+cb+SwsRt9C/brM7uqb9EnM31Sc o9u43LMxFtM0pnDz14kqeeoaASep8weK6EHsUpsQxSOSDn9uKs2jqv3NmBlREKdK6+Ly uJZqJ48CyG95AFj/yt7bNxEV2jVaIr7iBRhhHMDQo1XZUOExxx8ObASiwKxh8qpfV8CW VD9JwRMZyhP/D4gH5emN0i9K0ssgvRbF00D33g1TkquVVDnGQZU1YHbzFJE1Lil70gJD I4SQEJNVMeJfn7Ze7SaZAijZwBY1r7MGjFpZYGbldSMq2Ftkl8neLxh1LzZDgbPz9+Vl usHQ== X-Gm-Message-State: AKaTC01Oq2WwJQl5r5bld68N+WBdBML7ilARZIr3fCSGBPt/eP2yNd1VJZ5LZPK4o8F6OVRl X-Received: by 10.28.111.138 with SMTP id c10mr16440402wmi.135.1479768218069; Mon, 21 Nov 2016 14:43:38 -0800 (PST) Received: from XPS13.localdomain (guy78-1-82-235-116-147.fbx.proxad.net. [82.235.116.147]) by smtp.gmail.com with ESMTPSA id g73sm21951318wme.16.2016.11.21.14.43.37 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 21 Nov 2016 14:43:37 -0800 (PST) From: Thomas Monjalon To: dev@dpdk.org Date: Mon, 21 Nov 2016 23:43:14 +0100 Message-Id: <1479768194-6255-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 Subject: [dpdk-dev] [PATCH] scripts: check cc stable mailing list in commit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Add a check for commits fixing a released bug. Such commits are found thanks to scripts/git-log-fixes.sh. They must be sent CC: stable@dpdk.org. In order to avoid forgetting CC, this mail header can be written in the git commit message. Signed-off-by: Thomas Monjalon --- scripts/check-git-log.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scripts/check-git-log.sh b/scripts/check-git-log.sh index 5f8a9fc..4f98a7a 100755 --- a/scripts/check-git-log.sh +++ b/scripts/check-git-log.sh @@ -47,12 +47,14 @@ if [ "$1" = '-h' -o "$1" = '--help' ] ; then exit fi +selfdir=$(dirname $(readlink -e $0)) range=${1:-origin/master..} commits=$(git log --format='%h' --reverse $range) headlines=$(git log --format='%s' --reverse $range) bodylines=$(git log --format='%b' --reverse $range) fixes=$(git log --format='%h %s' --reverse $range | grep -i ': *fix' | cut -d' ' -f1) +stablefixes=$($selfdir/git-log-fixes.sh $range | sed '/(N\/A)$/d' | cut -d' ' -f2) tags=$(git log --format='%b' --reverse $range | grep -i -e 'by *:' -e 'fix.*:') bytag='\(Reported\|Suggested\|Signed-off\|Acked\|Reviewed\|Tested\)-by:' @@ -191,3 +193,10 @@ bad=$(for fixtag in $fixtags ; do printf "$fixtag" | grep -v "^$good$" done | sed 's,^,\t,') [ -z "$bad" ] || printf "Wrong 'Fixes' reference:\n$bad\n" + +# check CC:stable for fixes +bad=$(for fix in $stablefixes ; do + git log --format='%b' -1 $fix | grep -qi '^CC: *stable@dpdk.org' || + git log --format='\t%s' -1 $fix +done) +[ -z "$bad" ] || printf "Should CC: stable@dpdk.org\n$bad\n"