From: "Michael S. Tsirkin" <mst@redhat.com>
To: Blue Swirl <blauwirbel@gmail.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 2/2] get_maintainer: update to match qemu tree
Date: Wed, 15 Jun 2011 23:46:11 +0300 [thread overview]
Message-ID: <20110615204611.GD8362@redhat.com> (raw)
In-Reply-To: <BANLkTimZ_=YO1UJV_g8TJs8Amyh474xWEQ@mail.gmail.com>
On Wed, Jun 15, 2011 at 10:01:10PM +0300, Blue Swirl wrote:
> On Tue, Jun 14, 2011 at 8:38 PM, Michael S. Tsirkin <mst@redhat.com> wrote:
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Thanks, I've patched these.
> > ---
> > 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";
>
> QEMU
> > }
> >
> > ## 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
>
> QEMU
>
> > 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") {
>
> The similar check in scripts/checkpatch.pl uses "COPYING",
> "MAINTAINERS", "Makefile", "README", "docs", "VERSION", and "vl.c".
> Please match that.
>
> > 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
> >
> >
prev parent reply other threads:[~2011-06-15 20:46 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-14 17:38 [Qemu-devel] [PATCH 0/2] get_maintainers script Michael S. Tsirkin
2011-06-14 17:38 ` [Qemu-devel] [PATCH 1/2] get_maintainer.pl: copy utility from Linux Michael S. Tsirkin
2011-06-14 17:38 ` [Qemu-devel] [PATCH 2/2] get_maintainer: update to match qemu tree Michael S. Tsirkin
2011-06-15 19:01 ` Blue Swirl
2011-06-15 20:46 ` Michael S. Tsirkin [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110615204611.GD8362@redhat.com \
--to=mst@redhat.com \
--cc=blauwirbel@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.