From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 61441A00BE; Thu, 11 Jun 2020 20:46:20 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 46AD71150; Thu, 11 Jun 2020 20:46:20 +0200 (CEST) Received: from mail-pf1-f196.google.com (mail-pf1-f196.google.com [209.85.210.196]) by dpdk.org (Postfix) with ESMTP id C4E56F72 for ; Thu, 11 Jun 2020 20:46:18 +0200 (CEST) Received: by mail-pf1-f196.google.com with SMTP id b201so3067600pfb.0 for ; Thu, 11 Jun 2020 11:46:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=29AFnXDcSFqPPgbxRonEZNBHnL3Gfy0Cn5A49WA7hxM=; b=D2HHwwHaox2INISdnzj7R5Fn9srHqWYV4lzVqCMwZsCEtiXDS52ECsmAQUuM9gaOI+ UDLK1wXk4L4mriXNDVlgP1cN+LSincGRz8TOnjYT9amfU05IZGUEal7ENJGfcLAMt9Wc Rt6VRZfUVL+y8svoce5b+C8gANWcW+7h8lmHUlW+7FBXM+QjFCaHyUN/7jwibAHddpy/ k039mt3os1DDodPbcS4cYBA89ETGtCWW2YWVdL6Tiokwt96/SFXTlz+TbibEMsdXk4z0 qehaFLyMjeljLRO3CXP1lSyHoPiCDrPKXaUjPUvWrwFBhUVn9Ij2UmCCImpV6zRNBq/T UR+Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=29AFnXDcSFqPPgbxRonEZNBHnL3Gfy0Cn5A49WA7hxM=; b=mEBjMDuwm7/SjpDRLM9as6GA2DE/qUC0AY0o4b6p6Bg0sEyCIgwlC1+SMsso1TjkKM R05g2wNBjI7cHq2pSMW7cPg06sz+eMsZvb5nm+gPdHsJiv4adCjWPAV5EbuIOVtcXq60 RQE8k1in5y7wGpGHqk7fQNshm+MdibJunGirjXwblBPMOpnYJGMs/1oPrSLg06YIyxvD aUvAnFjfo3mx7zM5bZQD5N4xl5RNhXhNOdQkRmjoLU0elv7aUn4P4Uu1j85QpVnxtzS2 u/DDoNr/N1NrO0BftkWV/0/jNUICZ1r4rrqMUMx8F0lh1QH7ZoXp6JXNvFojaHNcNIax dmAA== X-Gm-Message-State: AOAM5332zO7LVvfVDzURGM1/7FduHvwwDfkNL7n6PuBmUIvvK006xBId wgUkwt/pAbxc68aS+3RTM0S0MS3ge1I= X-Google-Smtp-Source: ABdhPJzmHAM6hcVfnUjTWoQLAYcdYG8y7JebIRl+bOxL7hVpUuC8XbucaNfbYdJHxNYOJ3dwEfFj/Q== X-Received: by 2002:a05:6a00:1511:: with SMTP id q17mr8507759pfu.16.1591901177437; Thu, 11 Jun 2020 11:46:17 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id j16sm3703919pfa.179.2020.06.11.11.46.16 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 11 Jun 2020 11:46:17 -0700 (PDT) Date: Thu, 11 Jun 2020 11:46:08 -0700 From: Stephen Hemminger To: Thomas Monjalon Cc: dev@dpdk.org Message-ID: <20200611114608.209b1c98@hermes.lan> In-Reply-To: <20200224210130.672-1-stephen@networkplumber.org> References: <20200129155907.20556-1-stephen@networkplumber.org> <20200224210130.672-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v4] devtools: add new SPDX license compliance checker X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, 24 Feb 2020 13:01:30 -0800 Stephen Hemminger wrote: > Simple script to look for drivers and scripts that > are missing requires SPDX header. > > Update the contribution guidelines to indicate that SPDX license > identfier is required for this project. > > Signed-off-by: Stephen Hemminger > --- > v4 - add MAINTAINERS entry > update coding style document > change name of script > > MAINTAINERS | 1 + > devtools/check-spdx-tag.sh | 77 ++++++++++++++++++++++++ > doc/guides/contributing/coding_style.rst | 9 ++- > 3 files changed, 85 insertions(+), 2 deletions(-) > create mode 100755 devtools/check-spdx-tag.sh > Going through the patch backlog. Why is this not merged yet? Why is not in DPDK 20.05?