qemu-trivial.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore for in-tree builds
@ 2019-03-14 10:46 Stefano Garzarella
  2019-03-14 10:46 ` [Qemu-trivial] [PATCH for-4.0 1/2] .gitignore: ignore docs/built created " Stefano Garzarella
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Stefano Garzarella @ 2019-03-14 10:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Peter Maydell, Markus Armbruster

This series could be useless when we will no longer support in-tree builds,
but for 4.0 I think it's useful to ignore these files.

Stefano Garzarella (2):
  .gitignore: ignore docs/built created for in-tree builds
  tests/.gitignore: ignore test-qapi-emit-events.[ch] for in-tree builds

 .gitignore       | 1 +
 tests/.gitignore | 1 +
 2 files changed, 2 insertions(+)

-- 
2.20.1



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Qemu-trivial] [PATCH for-4.0 1/2] .gitignore: ignore docs/built created for in-tree builds
  2019-03-14 10:46 [Qemu-trivial] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore for in-tree builds Stefano Garzarella
@ 2019-03-14 10:46 ` Stefano Garzarella
  2019-03-14 10:46 ` [Qemu-trivial] [PATCH for-4.0 2/2] tests/.gitignore: ignore test-qapi-emit-events.[ch] " Stefano Garzarella
  2019-03-14 12:27 ` [Qemu-trivial] [Qemu-devel] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore " Eric Blake
  2 siblings, 0 replies; 5+ messages in thread
From: Stefano Garzarella @ 2019-03-14 10:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Peter Maydell, Markus Armbruster

Commit 1290e6711 creates 'docs/built' for in-tree builds of
Sphinx manuals but did not ignore it.

Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 77522561b8..0adb17347f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -119,6 +119,7 @@
 /pc-bios/optionrom/kvmvapic.img
 /pc-bios/s390-ccw/s390-ccw.elf
 /pc-bios/s390-ccw/s390-ccw.img
+/docs/built
 /docs/interop/qemu-ga-qapi.texi
 /docs/interop/qemu-ga-ref.html
 /docs/interop/qemu-ga-ref.info*
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Qemu-trivial] [PATCH for-4.0 2/2] tests/.gitignore: ignore test-qapi-emit-events.[ch] for in-tree builds
  2019-03-14 10:46 [Qemu-trivial] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore for in-tree builds Stefano Garzarella
  2019-03-14 10:46 ` [Qemu-trivial] [PATCH for-4.0 1/2] .gitignore: ignore docs/built created " Stefano Garzarella
@ 2019-03-14 10:46 ` Stefano Garzarella
  2019-03-14 12:27 ` [Qemu-trivial] [Qemu-devel] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore " Eric Blake
  2 siblings, 0 replies; 5+ messages in thread
From: Stefano Garzarella @ 2019-03-14 10:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Peter Maydell, Markus Armbruster

Commit 5d75648b56e generates 'tests/test-qapi-emit-events.[ch]' but
did not ignore them for in-tree builds.

Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
 tests/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/.gitignore b/tests/.gitignore
index c88f8f2537..f9c0170881 100644
--- a/tests/.gitignore
+++ b/tests/.gitignore
@@ -14,6 +14,7 @@ test-*
 test-qapi-commands.[ch]
 include/test-qapi-commands-sub-module.[ch]
 test-qapi-commands-sub-sub-module.[ch]
+test-qapi-emit-events.[ch]
 test-qapi-events.[ch]
 include/test-qapi-events-sub-module.[ch]
 test-qapi-events-sub-sub-module.[ch]
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-trivial] [Qemu-devel] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore for in-tree builds
  2019-03-14 10:46 [Qemu-trivial] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore for in-tree builds Stefano Garzarella
  2019-03-14 10:46 ` [Qemu-trivial] [PATCH for-4.0 1/2] .gitignore: ignore docs/built created " Stefano Garzarella
  2019-03-14 10:46 ` [Qemu-trivial] [PATCH for-4.0 2/2] tests/.gitignore: ignore test-qapi-emit-events.[ch] " Stefano Garzarella
@ 2019-03-14 12:27 ` Eric Blake
  2019-03-14 15:03   ` Laurent Vivier
  2 siblings, 1 reply; 5+ messages in thread
From: Eric Blake @ 2019-03-14 12:27 UTC (permalink / raw)
  To: Stefano Garzarella, qemu-devel
  Cc: qemu-trivial, Peter Maydell, Markus Armbruster


[-- Attachment #1.1: Type: text/plain, Size: 642 bytes --]

On 3/14/19 5:46 AM, Stefano Garzarella wrote:
> This series could be useless when we will no longer support in-tree builds,
> but for 4.0 I think it's useful to ignore these files.

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

> 
> Stefano Garzarella (2):
>   .gitignore: ignore docs/built created for in-tree builds
>   tests/.gitignore: ignore test-qapi-emit-events.[ch] for in-tree builds
> 
>  .gitignore       | 1 +
>  tests/.gitignore | 1 +
>  2 files changed, 2 insertions(+)
> 

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3226
Virtualization:  qemu.org | libvirt.org


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

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-trivial] [Qemu-devel] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore for in-tree builds
  2019-03-14 12:27 ` [Qemu-trivial] [Qemu-devel] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore " Eric Blake
@ 2019-03-14 15:03   ` Laurent Vivier
  0 siblings, 0 replies; 5+ messages in thread
From: Laurent Vivier @ 2019-03-14 15:03 UTC (permalink / raw)
  To: Eric Blake, Stefano Garzarella, qemu-devel
  Cc: qemu-trivial, Peter Maydell, Markus Armbruster

On 14/03/2019 13:27, Eric Blake wrote:
> On 3/14/19 5:46 AM, Stefano Garzarella wrote:
>> This series could be useless when we will no longer support in-tree builds,
>> but for 4.0 I think it's useful to ignore these files.
> 
> series:
> Reviewed-by: Eric Blake <eblake@redhat.com>
> 
>>
>> Stefano Garzarella (2):
>>    .gitignore: ignore docs/built created for in-tree builds
>>    tests/.gitignore: ignore test-qapi-emit-events.[ch] for in-tree builds
>>
>>   .gitignore       | 1 +
>>   tests/.gitignore | 1 +
>>   2 files changed, 2 insertions(+)
>>
> 


Applied to my trivial-patches branch.

Thanks,
Laurent


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-03-14 15:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-14 10:46 [Qemu-trivial] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore for in-tree builds Stefano Garzarella
2019-03-14 10:46 ` [Qemu-trivial] [PATCH for-4.0 1/2] .gitignore: ignore docs/built created " Stefano Garzarella
2019-03-14 10:46 ` [Qemu-trivial] [PATCH for-4.0 2/2] tests/.gitignore: ignore test-qapi-emit-events.[ch] " Stefano Garzarella
2019-03-14 12:27 ` [Qemu-trivial] [Qemu-devel] [PATCH for-4.0 0/2] Update .gitignore and tests/.gitignore " Eric Blake
2019-03-14 15:03   ` Laurent Vivier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).