[dpdk-stable] patch 'devtools: provide more generic grep in git check' has been queued to LTS release 17.11.5
Yongseok Koh
yskoh at mellanox.com
Thu Jan 3 09:13:39 CET 2019
Hi,
FYI, your patch has been queued to LTS release 17.11.5
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 01/04/19. So please
shout if anyone has objections.
Also note that after the patch there's a diff of the upstream commit vs the patch applied
to the branch. If the code is different (ie: not only metadata diffs), due for example to
a change in context or macro names, please double check it.
Thanks.
Yongseok
---
>From fb45c734af4a615a8849802fbb8e62d1748f5df1 Mon Sep 17 00:00:00 2001
From: Andy Green <andy at warmcat.com>
Date: Mon, 14 May 2018 12:59:56 +0800
Subject: [PATCH] devtools: provide more generic grep in git check
[ upstream commit 5831a2198ade05242535822e480e83692652e02d ]
On Fedora 28, every patch is faulted for
"Wrong headline uppercase", because [A-Z] is not
always case sensitive.
Change to use [[:upper:]]
Signed-off-by: Andy Green <andy at warmcat.com>
Tested-by: Ferruh Yigit <ferruh.yigit at intel.com>
---
devtools/check-git-log.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/devtools/check-git-log.sh b/devtools/check-git-log.sh
index 910daba42..9014c8241 100755
--- a/devtools/check-git-log.sh
+++ b/devtools/check-git-log.sh
@@ -106,8 +106,8 @@ bad=$(echo "$headlines" | grep --color=always \
# check headline lowercase for first words
bad=$(echo "$headlines" | grep --color=always \
- -e '^.*[A-Z].*:' \
- -e ': *[A-Z]' \
+ -e '^.*[[:upper:]].*:' \
+ -e ': *[[:upper:]]' \
| sed 's,^,\t,')
[ -z "$bad" ] || printf "Wrong headline uppercase:\n$bad\n"
--
2.11.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2019-01-02 23:59:12.949533738 -0800
+++ 0016-devtools-provide-more-generic-grep-in-git-check.patch 2019-01-02 23:59:12.057815000 -0800
@@ -1,8 +1,10 @@
-From 5831a2198ade05242535822e480e83692652e02d Mon Sep 17 00:00:00 2001
+From fb45c734af4a615a8849802fbb8e62d1748f5df1 Mon Sep 17 00:00:00 2001
From: Andy Green <andy at warmcat.com>
Date: Mon, 14 May 2018 12:59:56 +0800
Subject: [PATCH] devtools: provide more generic grep in git check
+[ upstream commit 5831a2198ade05242535822e480e83692652e02d ]
+
On Fedora 28, every patch is faulted for
"Wrong headline uppercase", because [A-Z] is not
always case sensitive.
@@ -16,7 +18,7 @@
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/devtools/check-git-log.sh b/devtools/check-git-log.sh
-index c601f6ae9..2542d9ee0 100755
+index 910daba42..9014c8241 100755
--- a/devtools/check-git-log.sh
+++ b/devtools/check-git-log.sh
@@ -106,8 +106,8 @@ bad=$(echo "$headlines" | grep --color=always \
More information about the stable
mailing list