From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 94C8BC43142 for ; Tue, 26 Jun 2018 18:25:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 45AE626E1B for ; Tue, 26 Jun 2018 18:25:11 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 45AE626E1B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752988AbeFZSZJ (ORCPT ); Tue, 26 Jun 2018 14:25:09 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:50008 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750909AbeFZSZI (ORCPT ); Tue, 26 Jun 2018 14:25:08 -0400 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 33473738E8; Tue, 26 Jun 2018 18:25:08 +0000 (UTC) Received: from prarit.bos.redhat.com (prarit-guest.khw.lab.eng.bos.redhat.com [10.16.186.145]) by smtp.corp.redhat.com (Postfix) with ESMTP id EB04921565E1; Tue, 26 Jun 2018 18:25:07 +0000 (UTC) From: Prarit Bhargava To: linux-kernel@vger.kernel.org Cc: Prarit Bhargava , Joe Perches , dzickus@redhat.com, jtoppins@redhat.com Subject: [PATCH] get_maintainer.pl: Add optional .get_maintainer.MAINTAINERS override Date: Tue, 26 Jun 2018 14:25:05 -0400 Message-Id: <20180626182505.4176-1-prarit@redhat.com> X-Scanned-By: MIMEDefang 2.78 on 10.11.54.6 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.1]); Tue, 26 Jun 2018 18:25:08 +0000 (UTC) X-Greylist: inspected by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.1]); Tue, 26 Jun 2018 18:25:08 +0000 (UTC) for IP:'10.11.54.6' DOMAIN:'int-mx06.intmail.prod.int.rdu2.redhat.com' HELO:'smtp.corp.redhat.com' FROM:'prarit@redhat.com' RCPT:'' Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org OSes have additional maintainers that should be cc'd on patches or may want to circulate internal patches. Parse the .get_maintainer.MAINTAINERS file. Entries in the file can begin with a '+' to indicate the email and list entries should be added to the exiting MAINTAINERS output, or a '-' to indicate that the entries should override the existing MAINTAINERS file. Also add a help entry for the .get_maintainers.ignore file. Signed-off-by: Prarit Bhargava Cc: Joe Perches Cc: dzickus@redhat.com Cc: jtoppins@redhat.com --- scripts/get_maintainer.pl | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index c87fa734e3e1..239f4d2ce972 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -384,6 +384,32 @@ sub find_ignore_git { read_all_maintainer_files(); sub read_all_maintainer_files { + my $conf = which_conf(".get_maintainer.MAINTAINERS"); + if ( -f $conf) { + my @conf_args; + my $add = 0; + open(my $conffile, '<', "$conf") + or warn "$P: Can't find a readable .get_maintainer.MAINTAINERS file $!\n"; + while (<$conffile>) { + my $line = $_; + if ($line =~ m/^\+/ ) { + $add = 1; + } + next if ($line =~ m/^\s*#/); + $line =~ s/^\+//g; + $line =~ s/^\-//g; + $line =~ s/\s*\n?$//; + push(@mfiles, $line); + } + close($conffile); + if ($add eq 0) { + foreach my $file (@mfiles) { + read_maintainer_file("$file"); + } + return; + } + } + if (-d "${lk_path}MAINTAINERS") { opendir(DIR, "${lk_path}MAINTAINERS") or die $!; my @files = readdir(DIR); @@ -1068,6 +1094,14 @@ Notes: Entries in this file can be any command line argument. This file is prepended to any additional command line arguments. Multiple lines and # comments are allowed. + File ".get_maintainer.ignore", if it exists in the linux kernel source root + directory, can contain a list of email addresses to ignore. Multiple + lines and # comments are allowed. + File ".get_maintainer.MAINTAINERS", if it exists in the linux kernel source + root directory, can change the location of the MAINTAINERS file. + Entries beginning with a '+' are added to the default list, and + entries beginning with a '-' override the existing MAINTAINERS list + lookup. Multiple lines and # comments are allowed. Most options have both positive and negative forms. The negative forms for -- are --no and --no-. -- 2.14.4