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 4DE87A2EFC for ; Fri, 20 Sep 2019 09:46:59 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 23BF61F2E0; Fri, 20 Sep 2019 09:46:59 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 289741F2E0 for ; Fri, 20 Sep 2019 09:46:57 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 353872A09A0; Fri, 20 Sep 2019 07:46:56 +0000 (UTC) Received: from rh.redhat.com (ovpn-117-253.ams2.redhat.com [10.36.117.253]) by smtp.corp.redhat.com (Postfix) with ESMTP id C87CC60610; Fri, 20 Sep 2019 07:46:50 +0000 (UTC) From: Kevin Traynor To: stable@dpdk.org, bluca@debian.org, thomas@monjalon.net Cc: Kevin Traynor , Akhil Goyal , Ali Alnubani , David Christensen , Hemant Agrawal , Ian Stokes , Jerin Jacob , John McNamara , Ju-Hyoung Lee , Pei Zhang , yuan.peng@intel.com, Raslan Darawsheh , benjamin.walker@intel.com, qian.q.xu@intel.com, pingx.yu@intel.com, zhaoyan.chen@intel.com, Abhishek Marathe Date: Fri, 20 Sep 2019 09:46:00 +0200 Message-Id: <20190920074600.10646-1-ktraynor@redhat.com> In-Reply-To: <20190918101013.6076-1-ktraynor@redhat.com> References: <20190918101013.6076-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Fri, 20 Sep 2019 07:46:56 +0000 (UTC) Subject: [dpdk-stable] [PATCH v3] validation-contacts: add validation-contacts file X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Add file with list of people who are involved in validation of LTS/stable releases. This is used by 4-final-review to add these people to the mail announcing new Release Candidates. It can also be used as a list of contacts to highlight any other relevant items, like test reports etc. Cc: Akhil Goyal Cc: Ali Alnubani Cc: David Christensen Cc: Hemant Agrawal Cc: Ian Stokes Cc: Jerin Jacob Cc: John McNamara Cc: Ju-Hyoung Lee Cc: Kevin Traynor Cc: Luca Boccassi Cc: Pei Zhang Cc: yuan.peng@intel.com Cc: Raslan Darawsheh Cc: Thomas Monjalon Cc: benjamin.walker@intel.com Cc: qian.q.xu@intel.com Cc: pingx.yu@intel.com Cc: zhaoyan.chen@intel.com Cc: Abhishek Marathe Signed-off-by: Kevin Traynor Acked-by: Luca Boccassi --- Please note, I compiled this list from correspondances during stable releases and discussions at the DPDK Release meeting. It is expected to be very low traffic. If anyone wants to be removed/added please reply. v2: Update Jerin's entry. Add Ping and Zhaoyan. Add ack v3: Add Abhishek --- 4-final-review | 17 ++++++++++++++--- README | 4 +++- validation-contacts | 19 +++++++++++++++++++ 3 files changed, 36 insertions(+), 4 deletions(-) create mode 100644 validation-contacts diff --git a/4-final-review b/4-final-review index 387bce9..5041564 100755 --- a/4-final-review +++ b/4-final-review @@ -49,10 +49,21 @@ get_shortlog() } +get_cc_val_list() +{ + cc_val_list="./validation-contacts" + while read line; do + echo "Cc: $line" + done <<< "$(cat $cc_val_list | sort | uniq)" + +} + compose_final_review_note() { +echo "Subject: $(describe_release) patches review and test" +echo "To: stable@dpdk.org" +echo "Cc: dev@dpdk.org" +get_cc_val_list + cat << EOF -Subject: $(describe_release) patches review and test -To: dpdk stable -Cc: dev@dpdk.org Hi all, diff --git a/README b/README index 5eaefd2..4252285 100644 --- a/README +++ b/README @@ -122,5 +122,7 @@ but also have links to the tarballs. The usage is simple, just time the command, it then will generate an email with the notification content. What you need to so it to edit it -when necessary (say, leaving more time for review) and send it out. +when necessary (say, leaving more time for review) and send it out. The +Cc list will be populated with people who are involved in stable release +validation and listed in the validation-contacts file. At this point the vendors who have commited to test the release should do diff --git a/validation-contacts b/validation-contacts new file mode 100644 index 0000000..90d1783 --- /dev/null +++ b/validation-contacts @@ -0,0 +1,19 @@ +Pei Zhang +Raslan Darawsheh +qian.q.xu@intel.com +Ju-Hyoung Lee +Ian Stokes +Ali Alnubani +David Christensen +benjamin.walker@intel.com +Thomas Monjalon +John McNamara +Luca Boccassi +Jerin Jacob +Hemant Agrawal +Akhil Goyal +Kevin Traynor +yuan.peng@intel.com +pingx.yu@intel.com +zhaoyan.chen@intel.com +Abhishek Marathe -- 2.20.1