From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:53966) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QWXZC-0004aB-2O for qemu-devel@nongnu.org; Tue, 14 Jun 2011 13:38:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QWXZ8-0006ga-7S for qemu-devel@nongnu.org; Tue, 14 Jun 2011 13:38:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33433) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QWXZ7-0006gI-Kh for qemu-devel@nongnu.org; Tue, 14 Jun 2011 13:38:13 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p5EHcCZR010736 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 14 Jun 2011 13:38:12 -0400 Received: from redhat.com (dhcp-1-35.tlv.redhat.com [10.35.1.35]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id p5EHcAU1010516 for ; Tue, 14 Jun 2011 13:38:11 -0400 Date: Tue, 14 Jun 2011 20:38:29 +0300 From: "Michael S. Tsirkin" Message-ID: <80f46dacf63dc2c2cd363f37a45e42edde1549c0.1308073076.git.mst@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] [PATCH 2/2] get_maintainer: update to match qemu tree List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Michael S. Tsirkin --- scripts/get_maintainer.pl | 29 +++++++---------------------- 1 files changed, 7 insertions(+), 22 deletions(-) diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index d29a8d7..c52ae59 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -258,9 +258,9 @@ if ($email && die "$P: Please select at least 1 email option\n"; } -if (!top_of_kernel_tree($lk_path)) { +if (!top_of_tree($lk_path)) { die "$P: The current directory does not appear to be " - . "a linux kernel source tree.\n"; + . "a qemu source tree.\n"; } ## Read MAINTAINERS for type/value pairs @@ -792,7 +792,7 @@ Notes: --git-min-signatures, --git-max-maintainers, --git-min-percent, and --git-blame Use --hg-since not --git-since to control date selection - File ".get_maintainer.conf", if it exists in the linux kernel source root + File ".get_maintainer.conf", if it exists in the qemu source root directory, can change whatever get_maintainer defaults are desired. Entries in this file can be any command line argument. This file is prepended to any additional command line arguments. @@ -800,28 +800,13 @@ Notes: EOT } -sub top_of_kernel_tree { +sub top_of_tree { my ($lk_path) = @_; if ($lk_path ne "" && substr($lk_path,length($lk_path)-1,1) ne "/") { $lk_path .= "/"; } - if ( (-f "${lk_path}COPYING") - && (-f "${lk_path}CREDITS") - && (-f "${lk_path}Kbuild") - && (-f "${lk_path}MAINTAINERS") - && (-f "${lk_path}Makefile") - && (-f "${lk_path}README") - && (-d "${lk_path}Documentation") - && (-d "${lk_path}arch") - && (-d "${lk_path}include") - && (-d "${lk_path}drivers") - && (-d "${lk_path}fs") - && (-d "${lk_path}init") - && (-d "${lk_path}ipc") - && (-d "${lk_path}kernel") - && (-d "${lk_path}lib") - && (-d "${lk_path}scripts")) { + if (-f "${lk_path}MAINTAINERS") { return 1; } return 0; @@ -1387,8 +1372,8 @@ sub vcs_exists { if (!$printed_novcs) { warn("$P: No supported VCS found. Add --nogit to options?\n"); warn("Using a git repository produces better results.\n"); - warn("Try Linus Torvalds' latest git repository using:\n"); - warn("git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git\n"); + warn("Try latest git repository using:\n"); + warn("git clone git://git.qemu.org/qemu.git\n"); $printed_novcs = 1; } return 0; -- 1.7.5.53.gc233e