From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754146AbYJTW3I (ORCPT ); Mon, 20 Oct 2008 18:29:08 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756117AbYJTW21 (ORCPT ); Mon, 20 Oct 2008 18:28:27 -0400 Received: from 136-022.dsl.LABridge.com ([206.117.136.22]:3716 "EHLO mail.perches.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756108AbYJTW20 (ORCPT ); Mon, 20 Oct 2008 18:28:26 -0400 From: Joe Perches To: linux-kernel@vger.kernel.org Cc: Linus Torvalds , Randy Dunlap , Pavel Machek , =?utf-8?q?Uwe=20Kleine-K=C3=B6nig?= Subject: [PATCH 0/3] Add file patterns to MAINTAINERS and script to parse MAINTAINERS Date: Mon, 20 Oct 2008 15:28:21 -0700 Message-Id: <1224541704-30357-1-git-send-email-joe@perches.com> X-Mailer: git-send-email 1.6.0.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Now that "F:" is documented in MAINTAINERS, this patchset adds more patterns and a script to find the maintainer of an individual file or files in a patch. Other relevant information from MAINTAINERS sections can also be generated. patch 1: Add patterns to MAINTAINERS patch 2: Add scripts/get_maintainer.pl patch 3: Miscellaneous cleanups of MAINTAINERS $ ./scripts/get_maintainer.pl usage: ./scripts/get_maintainer.pl [options] patchfile ./scripts/get_maintainer.pl [options] -f file version: 0.12 MAINTAINER field selection options: --email => print email address(es) if any --git => include recent git *-by: signers --git-chief-penguins => include (Linus Torvalds|Andrew Morton) --m => include maintainer(s) if any --n => include name 'Full Name ' --l => include list(s) if any --s => include subscriber only list(s) if any --scm => print SCM tree(s) if any --status => print status if any --subsystem => print subsystem name if any --web => print website(s) if any Output type options: --separator [, ] => separator for multiple entries on 1 line --multiline => print 1 entry per line Default options: [--email --git --m --l --multiline] Signed-off-by: Joe Perches