[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 24/28] get_maintainer.pl: restrict cases where it fal
From: |
Paolo Bonzini |
Subject: |
[Qemu-devel] [PULL 24/28] get_maintainer.pl: restrict cases where it falls back to --git |
Date: |
Mon, 27 Oct 2014 16:13:41 +0100 |
The list emitted by --git-fallback often leads inexperienced contributors
to add pointless CCs. While not discouraging usage of --git-fallback,
we want to:
1) disable the fallback if only some files lack a maintainer
$ scripts/get_maintainer.pl -f util/cutils.c hw/ide/core.c
Kevin Wolf <address@hidden> (odd fixer:IDE)
Stefan Hajnoczi <address@hidden> (odd fixer:IDE)
This behavior is taken even if --git-fallback is specified.
2) warn the contributors about what we're doing, asking them to use their
common sense:
$ scripts/get_maintainer.pl -f util/cutils.c
get_maintainer.pl: No maintainers found, printing recent contributors.
get_maintainer.pl: Do not blindly cc: them on patches! Use common sense.
Luiz Capitulino <address@hidden> (commit_signer:1/2=50%)
...
$
Explicitly disabling the fallback will not result in the warning message:
$ scripts/get_maintainer.pl -f util/cutils.c --no-git-fallback
$ echo $?
0
(Returning 1 would break usage of scripts/get_maintainer.pl as a cccmd
for git-send-email).
Reviewed-by: Markus Armbruster <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
---
scripts/get_maintainer.pl | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index 906dcbe..af68c6c 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -652,6 +652,15 @@ sub get_maintainers {
}
if ($email) {
+ if (! $interactive) {
+ $email_git_fallback = 0 if @email_to > 0 || @list_to > 0 ||
$email_git || $email_git_blame;
+ if ($email_git_fallback) {
+ print STDERR "get_maintainer.pl: No maintainers found, printing
recent contributors.\n";
+ print STDERR "get_maintainer.pl: Do not blindly cc: them on
patches! Use common sense.\n";
+ print STDERR "\n";
+ }
+ }
+
foreach my $file (@files) {
if ($email_git || ($email_git_fallback &&
!$exact_pattern_match_hash{$file})) {
--
1.8.3.1
- [Qemu-devel] [PULL 15/28] target-i386: warns users when CPU threads>1 for non-Intel CPUs, (continued)
- [Qemu-devel] [PULL 15/28] target-i386: warns users when CPU threads>1 for non-Intel CPUs, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 18/28] MAINTAINERS: add myself for X86, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 19/28] MAINTAINERS: Add more TCG files, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 20/28] MAINTAINERS: add some tests directories, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 17/28] MAINTAINERS: add Samuel Thibault as usb-serial.c and baum.c maintainer, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 21/28] MAINTAINERS: avoid M entries that point to mailing lists, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 23/28] get_maintainer.pl: move git loop under "if ($email) {", Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 24/28] get_maintainer.pl: restrict cases where it falls back to --git,
Paolo Bonzini <=
- [Qemu-devel] [PULL 25/28] target-i386: add Intel AVX-512 support, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 22/28] qtest: fix qtest log fd should be initialized before qtest chardev, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 26/28] virtio-scsi: sense in virtio_scsi_command_complete, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 27/28] hw/scsi/virtio-scsi.c: fix the "type" use error in virtio_scsi_handle_ctrl, Paolo Bonzini, 2014/10/27
- [Qemu-devel] [PULL 28/28] aio / timers: De-document -clock, Paolo Bonzini, 2014/10/27
- Re: [Qemu-devel] [PULL 00/28] Changes for 2014-10-27, Andreas Färber, 2014/10/27
- Re: [Qemu-devel] [PULL 00/28] Changes for 2014-10-27, Peter Maydell, 2014/10/28