All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Blake <eblake@redhat.com>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: qemu-devel@nongnu.org, armbru@redhat.com
Subject: Re: [Qemu-devel] [PATCH 1/6] QMP: add scripts/qmp
Date: Wed, 11 Sep 2013 16:08:59 -0600	[thread overview]
Message-ID: <5230E9FB.5080101@redhat.com> (raw)
In-Reply-To: <1378932737-13422-2-git-send-email-lcapitulino@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 4239 bytes --]

On 09/11/2013 02:52 PM, Luiz Capitulino wrote:
> Populate it with all scripts stored in QMP/.
> 
> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
> ---
>  QMP/qemu-ga-client         | 299 ---------------------------------------------
>  QMP/qmp                    | 126 -------------------
>  QMP/qmp-shell              | 286 -------------------------------------------
>  QMP/qmp.py                 | 190 ----------------------------
>  QMP/qom-fuse               | 138 ---------------------
>  QMP/qom-get                |  67 ----------
>  QMP/qom-list               |  64 ----------
>  QMP/qom-set                |  64 ----------
>  scripts/qmp/qemu-ga-client | 299 +++++++++++++++++++++++++++++++++++++++++++++
>  scripts/qmp/qmp            | 126 +++++++++++++++++++
>  scripts/qmp/qmp-shell      | 286 +++++++++++++++++++++++++++++++++++++++++++
>  scripts/qmp/qmp.py         | 190 ++++++++++++++++++++++++++++
>  scripts/qmp/qom-fuse       | 138 +++++++++++++++++++++
>  scripts/qmp/qom-get        |  67 ++++++++++
>  scripts/qmp/qom-list       |  64 ++++++++++
>  scripts/qmp/qom-set        |  64 ++++++++++
>  16 files changed, 1234 insertions(+), 1234 deletions(-)
>  delete mode 100755 QMP/qemu-ga-client
>  delete mode 100755 QMP/qmp
>  delete mode 100755 QMP/qmp-shell
>  delete mode 100644 QMP/qmp.py
>  delete mode 100755 QMP/qom-fuse
>  delete mode 100755 QMP/qom-get
>  delete mode 100755 QMP/qom-list
>  delete mode 100755 QMP/qom-set
>  create mode 100755 scripts/qmp/qemu-ga-client
>  create mode 100755 scripts/qmp/qmp
>  create mode 100755 scripts/qmp/qmp-shell
>  create mode 100644 scripts/qmp/qmp.py
>  create mode 100755 scripts/qmp/qom-fuse
>  create mode 100755 scripts/qmp/qom-get
>  create mode 100755 scripts/qmp/qom-list
>  create mode 100755 scripts/qmp/qom-set

Reviewed-by: Eric Blake <eblake@redhat.com>

Repeat after me:
git config diff.renames true

at which point, this commit is much more compact and reviewable:

From c2957616df8bfa2066cbb375de106a45b5a80ae4 Mon Sep 17 00:00:00 2001
From: Luiz Capitulino <lcapitulino@redhat.com>
Date: Wed, 11 Sep 2013 16:52:12 -0400
Subject: [PATCH] QMP: add scripts/qmp

Populate it with all scripts stored in QMP/.

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
---
 {QMP => scripts/qmp}/qemu-ga-client | 0
 {QMP => scripts/qmp}/qmp            | 0
 {QMP => scripts/qmp}/qmp-shell      | 0
 {QMP => scripts/qmp}/qmp.py         | 0
 {QMP => scripts/qmp}/qom-fuse       | 0
 {QMP => scripts/qmp}/qom-get        | 0
 {QMP => scripts/qmp}/qom-list       | 0
 {QMP => scripts/qmp}/qom-set        | 0
 8 files changed, 0 insertions(+), 0 deletions(-)
 rename {QMP => scripts/qmp}/qemu-ga-client (100%)
 rename {QMP => scripts/qmp}/qmp (100%)
 rename {QMP => scripts/qmp}/qmp-shell (100%)
 rename {QMP => scripts/qmp}/qmp.py (100%)
 rename {QMP => scripts/qmp}/qom-fuse (100%)
 rename {QMP => scripts/qmp}/qom-get (100%)
 rename {QMP => scripts/qmp}/qom-list (100%)
 rename {QMP => scripts/qmp}/qom-set (100%)

diff --git a/QMP/qemu-ga-client b/scripts/qmp/qemu-ga-client
similarity index 100%
rename from QMP/qemu-ga-client
rename to scripts/qmp/qemu-ga-client
diff --git a/QMP/qmp b/scripts/qmp/qmp
similarity index 100%
rename from QMP/qmp
rename to scripts/qmp/qmp
diff --git a/QMP/qmp-shell b/scripts/qmp/qmp-shell
similarity index 100%
rename from QMP/qmp-shell
rename to scripts/qmp/qmp-shell
diff --git a/QMP/qmp.py b/scripts/qmp/qmp.py
similarity index 100%
rename from QMP/qmp.py
rename to scripts/qmp/qmp.py
diff --git a/QMP/qom-fuse b/scripts/qmp/qom-fuse
similarity index 100%
rename from QMP/qom-fuse
rename to scripts/qmp/qom-fuse
diff --git a/QMP/qom-get b/scripts/qmp/qom-get
similarity index 100%
rename from QMP/qom-get
rename to scripts/qmp/qom-get
diff --git a/QMP/qom-list b/scripts/qmp/qom-list
similarity index 100%
rename from QMP/qom-list
rename to scripts/qmp/qom-list
diff --git a/QMP/qom-set b/scripts/qmp/qom-set
similarity index 100%
rename from QMP/qom-set
rename to scripts/qmp/qom-set
-- 
1.8.3.1

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 621 bytes --]

  reply	other threads:[~2013-09-11 22:09 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-11 20:52 [Qemu-devel] [PATCH 0/6] QMP: re-organize documentation Luiz Capitulino
2013-09-11 20:52 ` [Qemu-devel] [PATCH 1/6] QMP: add scripts/qmp Luiz Capitulino
2013-09-11 22:08   ` Eric Blake [this message]
2013-09-11 22:13     ` Eric Blake
2013-09-13 17:52       ` Luiz Capitulino
2013-09-11 20:52 ` [Qemu-devel] [PATCH 2/6] QMP: fix qmp-commands.txt generation path Luiz Capitulino
2013-09-11 22:09   ` Eric Blake
2013-09-11 20:52 ` [Qemu-devel] [PATCH 3/6] QMP: QMP/ -> docs/qmp/ Luiz Capitulino
2013-09-11 22:15   ` Eric Blake
2013-09-11 20:52 ` [Qemu-devel] [PATCH 4/6] QMP: Update README file Luiz Capitulino
2013-09-11 23:13   ` Eric Blake
2013-09-11 20:52 ` [Qemu-devel] [PATCH 5/6] QMP: Update qmp-spec.txt Luiz Capitulino
2013-09-11 23:27   ` Eric Blake
2013-09-13 17:54     ` Luiz Capitulino
2013-09-13 18:00       ` Eric Blake
2013-09-11 20:52 ` [Qemu-devel] [PATCH 6/6] QMP: qmp-events.txt: minor fixes Luiz Capitulino
2013-09-11 23:30   ` Eric Blake
2013-09-13 18:01     ` Luiz Capitulino
2013-09-13 18:16       ` Eric Blake
2013-09-13 18:20         ` Luiz Capitulino
  -- strict thread matches above, loose matches on Subject: below --
2013-09-13 18:11 [Qemu-devel] [PATCH v2 0/6] QMP: re-organize documentation Luiz Capitulino
2013-09-13 18:11 ` [Qemu-devel] [PATCH 1/6] QMP: add scripts/qmp Luiz Capitulino

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=5230E9FB.5080101@redhat.com \
    --to=eblake@redhat.com \
    --cc=armbru@redhat.com \
    --cc=lcapitulino@redhat.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.