From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] scripts: check cc stable mailing list in commit Date: Wed, 30 Nov 2016 16:09:47 +0100 Message-ID: <3896815.T41b2RsLT8@xps13> References: <1479768194-6255-1-git-send-email-thomas.monjalon@6wind.com> <1b249c77-5685-8492-6f6b-3478a2731267@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Ferruh Yigit Return-path: Received: from mail-wj0-f181.google.com (mail-wj0-f181.google.com [209.85.210.181]) by dpdk.org (Postfix) with ESMTP id A65595587 for ; Wed, 30 Nov 2016 16:09:49 +0100 (CET) Received: by mail-wj0-f181.google.com with SMTP id xy5so176532219wjc.0 for ; Wed, 30 Nov 2016 07:09:49 -0800 (PST) In-Reply-To: <1b249c77-5685-8492-6f6b-3478a2731267@intel.com> 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" 2016-11-30 14:54, Ferruh Yigit: > On 11/21/2016 10:43 PM, Thomas Monjalon wrote: > > +stablefixes=$($selfdir/git-log-fixes.sh $range | sed '/(N\/A)$/d' | cut -d' ' -f2) > > This breaks the "check-git-log.sh -N" usage, since "-N" is not a valid > range for git-log-fixes.sh. > Generates warning: > .../scripts/git-log-fixes.sh: illegal option -- 6 > usage: git-log-fixes.sh [-h] Yes, good catch. I'm trying to fix it by converting -N to HEAD~N.. if printf -- $range | grep -q '^-[0-9]\+' ; then range="HEAD$(printf -- $range | sed 's,^-,~,').." fi > > +# 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" > > This is good for developer, but since "CC: xx" tags removed when patch > applied, this will generate warnings when run against existing history. I do not think it is a problem. Who runs this tool against existing history? > I don't know what can be done for this. > > Or should we keep CC: tags in commit log perhaps? I do not see the value of keeping the CC: in the git history.