From: "Alex Bennée" <alex.bennee@linaro.org>
To: qemu-devel@nongnu.org
Cc: fam@euphon.net, berrange@redhat.com, sw@weilnetz.de,
"Jason Wang" <jasowang@redhat.com>,
"Aaron Larson" <alarson@ddci.com>,
richard.henderson@linaro.org, f4bug@amsat.org,
"Michael Ellerman" <michael@ellerman.id.au>,
"Andreas Färber" <andreas.faerber@web.de>,
qemu-arm@nongnu.org, stefanha@redhat.com, crosa@redhat.com,
pbonzini@redhat.com, "Alex Bennée" <alex.bennee@linaro.org>,
aurelien@aurel32.net
Subject: [PATCH v1 5/8] mailmap/gitdm: more fixes for bad tags and authors
Date: Tue, 15 Mar 2022 12:12:48 +0000 [thread overview]
Message-ID: <20220315121251.2280317-6-alex.bennee@linaro.org> (raw)
In-Reply-To: <20220315121251.2280317-1-alex.bennee@linaro.org>
I was running some historical tags for the last 10 years and got the
following warnings:
git log --use-mailmap --numstat --since "June 2010" | ~/src/gitdm.git/gitdm -n -l 5
alarson@ddci.com is an author name, probably not what you want
bad utf-8 ('utf-8' codec can't decode byte 0xe4 in position 552: invalid continuation byte) in patchm skipping
bad utf-8 ('utf-8' codec can't decode byte 0xe4 in position 342: invalid continuation byte) in patchm skipping
michael@ozlabs.org is an author name, probably not what you want
Oops...funky email nicta.com.au
bad utf-8 ('utf-8' codec can't decode byte 0xe9 in position 232: invalid continuation byte) in patchm skipping
Oops...funky email andreas.faerber
Grabbing changesets...done
Processed 76422 csets from 1902 developers
The following fixes try and alleviate that although I still get a
warning for Aaron which I think is from 9743cd5736.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Aaron Larson <alarson@ddci.com>
Cc: Andreas Färber <andreas.faerber@web.de>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Michael Ellerman <michael@ellerman.id.au>
---
v2
- added Aaron's acked by
- dropped Peter Chubb from CC (bouncing emails)
- used Michaels preferred coding email
- dropped the identity map in aliases (I think gitdm still gets reported by correct)
---
.mailmap | 6 ++++++
contrib/gitdm/aliases | 4 +++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/.mailmap b/.mailmap
index 5113f55b3a..09dcd8c216 100644
--- a/.mailmap
+++ b/.mailmap
@@ -28,7 +28,11 @@ Thiemo Seufer <ths@networkno.de> ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
malc <av1474@comtv.ru> malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162>
# Corrupted Author fields
+Aaron Larson <alarson@ddci.com> alarson@ddci.com
+Andreas Färber <andreas.faerber@web.de> Andreas Färber <andreas.faerber>
+Jason Wang <jasowang@redhat.com> Jason Wang <jasowang>
Marek Dolata <mkdolata@us.ibm.com> mkdolata@us.ibm.com <mkdolata@us.ibm.com>
+Michael Ellerman <mpe@ellerman.id.au> michael@ozlabs.org <michael@ozlabs.org>
Nick Hudson <hnick@vmware.com> hnick@vmware.com <hnick@vmware.com>
# There is also a:
@@ -70,6 +74,7 @@ Yongbok Kim <yongbok.kim@mips.com> <yongbok.kim@imgtec.com>
# Also list preferred name forms where people have changed their
# git author config, or had utf8/latin1 encoding issues.
Aaron Lindsay <aaron@os.amperecomputing.com>
+Aaron Larson <alarson@ddci.com>
Alexey Gerasimenko <x1917x@gmail.com>
Alex Chen <alex.chen@huawei.com>
Alex Ivanov <void@aleksoft.net>
@@ -144,6 +149,7 @@ Pan Nengyuan <pannengyuan@huawei.com>
Pavel Dovgaluk <dovgaluk@ispras.ru>
Pavel Dovgaluk <pavel.dovgaluk@gmail.com>
Pavel Dovgaluk <Pavel.Dovgaluk@ispras.ru>
+Peter Chubb <peter.chubb@nicta.com.au>
Peter Crosthwaite <crosthwaite.peter@gmail.com>
Peter Crosthwaite <peter.crosthwaite@petalogix.com>
Peter Crosthwaite <peter.crosthwaite@xilinx.com>
diff --git a/contrib/gitdm/aliases b/contrib/gitdm/aliases
index 4792413ce7..e26b00a71d 100644
--- a/contrib/gitdm/aliases
+++ b/contrib/gitdm/aliases
@@ -34,8 +34,10 @@ malc@c046a42c-6fe2-441c-8c8c-71466251a162 av1474@comtv.ru
# canonical emails
liq3ea@163.com liq3ea@gmail.com
-# some broken tags
+# some broken DCO tags
yuval.shaia.ml.gmail.com yuval.shaia.ml@gmail.com
+jasowang jasowang@redhat.com
+nicta.com.au peter.chubb@nicta.com.au
# There is also a:
# (no author) <(no author)@c046a42c-6fe2-441c-8c8c-71466251a162>
--
2.30.2
next prev parent reply other threads:[~2022-03-15 12:16 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-15 12:12 [PATCH for 7.0 v1 0/8] misc testing, i386, docs, gitdm, gitlab Alex Bennée
2022-03-15 12:12 ` [PATCH v1 1/8] tests/Makefile.include: Let "make clean" remove the TCG tests, too Alex Bennée
2022-03-15 12:12 ` [PATCH v1 2/8] tests/avocado: update aarch64_virt test to exercise -cpu max Alex Bennée
2022-03-21 17:10 ` Thomas Huth
2022-03-22 16:49 ` Richard Henderson
2022-03-15 12:12 ` [PATCH v1 3/8] target/i386: force maximum rounding precision for fildl[l] Alex Bennée
2022-03-15 12:12 ` [PATCH v1 4/8] tests/tcg: drop -cpu max from s390x sha512-mvx invocation Alex Bennée
2022-03-15 12:12 ` Alex Bennée [this message]
2022-03-16 8:23 ` [PATCH v1 5/8] mailmap/gitdm: more fixes for bad tags and authors Michael Ellerman
2022-03-15 12:12 ` [PATCH v1 6/8] docs/devel: try and impose some organisation Alex Bennée
2022-03-15 12:12 ` [PATCH v1 7/8] semihosting: clean up handling of expanded argv Alex Bennée
2022-03-15 12:31 ` Philippe Mathieu-Daudé
2022-03-15 13:59 ` Alex Bennée
2022-03-15 14:15 ` Daniel P. Berrangé
2022-03-15 14:20 ` Peter Maydell
2022-03-21 21:55 ` Philippe Mathieu-Daudé
2022-03-15 12:12 ` [PATCH v1 8/8] gitlab: include new aarch32 job in custom-runners Alex Bennée
2022-03-15 12:19 ` Alex Bennée
2022-03-15 12:19 ` [PATCH v2] " Alex Bennée
2022-03-15 12:34 ` Philippe Mathieu-Daudé
2022-03-15 21:48 ` Richard Henderson
2022-03-21 16:46 ` [PATCH for 7.0 v1 0/8] misc testing, i386, docs, gitdm, gitlab Alex Bennée
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=20220315121251.2280317-6-alex.bennee@linaro.org \
--to=alex.bennee@linaro.org \
--cc=alarson@ddci.com \
--cc=andreas.faerber@web.de \
--cc=aurelien@aurel32.net \
--cc=berrange@redhat.com \
--cc=crosa@redhat.com \
--cc=f4bug@amsat.org \
--cc=fam@euphon.net \
--cc=jasowang@redhat.com \
--cc=michael@ellerman.id.au \
--cc=pbonzini@redhat.com \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=stefanha@redhat.com \
--cc=sw@weilnetz.de \
/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).