aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/get_maintainer.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/get_maintainer.pl')
-rwxr-xr-xscripts/get_maintainer.pl11
1 files changed, 9 insertions, 2 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index 77f4f2e4cd81..f46576949ccb 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -24,9 +24,10 @@ my $email_maintainer = 1;
24my $email_list = 1; 24my $email_list = 1;
25my $email_subscriber_list = 0; 25my $email_subscriber_list = 0;
26my $email_git_penguin_chiefs = 0; 26my $email_git_penguin_chiefs = 0;
27my $email_git = 1; 27my $email_git = 0;
28my $email_git_all_signature_types = 0; 28my $email_git_all_signature_types = 0;
29my $email_git_blame = 0; 29my $email_git_blame = 0;
30my $email_git_fallback = 1;
30my $email_git_min_signatures = 1; 31my $email_git_min_signatures = 1;
31my $email_git_max_maintainers = 5; 32my $email_git_max_maintainers = 5;
32my $email_git_min_percent = 5; 33my $email_git_min_percent = 5;
@@ -138,6 +139,7 @@ if (!GetOptions(
138 'git!' => \$email_git, 139 'git!' => \$email_git,
139 'git-all-signature-types!' => \$email_git_all_signature_types, 140 'git-all-signature-types!' => \$email_git_all_signature_types,
140 'git-blame!' => \$email_git_blame, 141 'git-blame!' => \$email_git_blame,
142 'git-fallback!' => \$email_git_fallback,
141 'git-chief-penguins!' => \$email_git_penguin_chiefs, 143 'git-chief-penguins!' => \$email_git_penguin_chiefs,
142 'git-min-signatures=i' => \$email_git_min_signatures, 144 'git-min-signatures=i' => \$email_git_min_signatures,
143 'git-max-maintainers=i' => \$email_git_max_maintainers, 145 'git-max-maintainers=i' => \$email_git_max_maintainers,
@@ -371,6 +373,7 @@ my @status = ();
371foreach my $file (@files) { 373foreach my $file (@files) {
372 374
373 my %hash; 375 my %hash;
376 my $exact_pattern_match = 0;
374 my $tvi = find_first_section(); 377 my $tvi = find_first_section();
375 while ($tvi < @typevalue) { 378 while ($tvi < @typevalue) {
376 my $start = find_starting_index($tvi); 379 my $start = find_starting_index($tvi);
@@ -405,6 +408,8 @@ foreach my $file (@files) {
405 my $value_pd = ($value =~ tr@/@@); 408 my $value_pd = ($value =~ tr@/@@);
406 my $file_pd = ($file =~ tr@/@@); 409 my $file_pd = ($file =~ tr@/@@);
407 $value_pd++ if (substr($value,-1,1) ne "/"); 410 $value_pd++ if (substr($value,-1,1) ne "/");
411 $value_pd = -1 if ($value =~ /^\.\*/);
412 $exact_pattern_match = 1 if ($value_pd >= $file_pd);
408 if ($pattern_depth == 0 || 413 if ($pattern_depth == 0 ||
409 (($file_pd - $value_pd) < $pattern_depth)) { 414 (($file_pd - $value_pd) < $pattern_depth)) {
410 $hash{$tvi} = $value_pd; 415 $hash{$tvi} = $value_pd;
@@ -439,7 +444,8 @@ foreach my $file (@files) {
439 } 444 }
440 } 445 }
441 446
442 if ($email && $email_git) { 447 if ($email &&
448 ($email_git || ($email_git_fallback && !$exact_pattern_match))) {
443 vcs_file_signoffs($file); 449 vcs_file_signoffs($file);
444 } 450 }
445 451
@@ -540,6 +546,7 @@ MAINTAINER field selection options:
540 --git => include recent git \*-by: signers 546 --git => include recent git \*-by: signers
541 --git-all-signature-types => include signers regardless of signature type 547 --git-all-signature-types => include signers regardless of signature type
542 or use only ${signaturePattern} signers (default: $email_git_all_signature_types) 548 or use only ${signaturePattern} signers (default: $email_git_all_signature_types)
549 --git-fallback => use git when no exact MAINTAINERS pattern (default: $email_git_fallback)
543 --git-chief-penguins => include ${penguin_chiefs} 550 --git-chief-penguins => include ${penguin_chiefs}
544 --git-min-signatures => number of signatures required (default: $email_git_min_signatures) 551 --git-min-signatures => number of signatures required (default: $email_git_min_signatures)
545 --git-max-maintainers => maximum maintainers to add (default: $email_git_max_maintainers) 552 --git-max-maintainers => maximum maintainers to add (default: $email_git_max_maintainers)