From: David Marchand <david.marchand@redhat.com>
To: thomas@monjalon.net, alialnu@nvidia.com
Cc: ci@dpdk.org
Subject: [PATCH] tools: accept patch with subject starting with RFC
Date: Tue, 12 Apr 2022 10:54:17 +0200 [thread overview]
Message-ID: <20220412085417.15884-1-david.marchand@redhat.com> (raw)
If a mail does not contain a X-Mailer: header, only a subject matching
[PATCH qualifies this mail as being a patch.
Extend this filter and accept [RFC PATCH too.
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
tools/filter-patch-email.sh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tools/filter-patch-email.sh b/tools/filter-patch-email.sh
index 9ac8221..5217df3 100755
--- a/tools/filter-patch-email.sh
+++ b/tools/filter-patch-email.sh
@@ -43,10 +43,14 @@ parse ()
set -- $line
if ! $content ; then
[ "$1" != 'X-Mailer:' -o "$2" != 'git-send-email' ] || gitsend=true
- if echo "$line" | grep -qa '^Subject:.*\[PATCH' ; then
+ if echo "$line" | grep -qa '^Subject:.*PATCH' ; then
subject=$(echo "$line" | sed 's,^Subject:[[:space:]]*,,')
while [ -n "$subject" ] ; do
echo "$subject" | grep -q '^\[' || break
+ if echo "$subject" | grep -q '^\[RFC PATCH' ; then
+ patchsubject=true
+ break
+ fi
if echo "$subject" | grep -q '^\[PATCH' ; then
patchsubject=true
break
--
2.23.0
next reply other threads:[~2022-04-12 8:54 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-12 8:54 David Marchand [this message]
2022-04-12 9:12 ` [PATCH v2] " David Marchand
2022-04-12 9:21 ` Ali Alnubani
2022-04-12 13:53 ` Thomas Monjalon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220412085417.15884-1-david.marchand@redhat.com \
--to=david.marchand@redhat.com \
--cc=alialnu@nvidia.com \
--cc=ci@dpdk.org \
--cc=thomas@monjalon.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).