<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bwlp/qemu.git/.gitignore, branch spice_video_codecs</title>
<subtitle>Experimental fork of QEMU with video encoding patches</subtitle>
<id>https://git.openslx.org/bwlp/qemu.git/atom/.gitignore?h=spice_video_codecs</id>
<link rel='self' href='https://git.openslx.org/bwlp/qemu.git/atom/.gitignore?h=spice_video_codecs'/>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/'/>
<updated>2022-10-22T20:48:17+00:00</updated>
<entry>
<title>.gitignore: add multiple items to .gitignore</title>
<updated>2022-10-22T20:48:17+00:00</updated>
<author>
<name>Wang, Lei</name>
</author>
<published>2022-10-20T17:19:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=8ad708a9d8f7e40a1fc33c69d1590f10e3da50b0'/>
<id>urn:sha1:8ad708a9d8f7e40a1fc33c69d1590f10e3da50b0</id>
<content type='text'>
Add /.vscode/, .clang-format and .gdb_history to .gitignore because:

 - For VSCode, workspace settings as well as debugging and task
 configurations are stored at the root in a .vscode folder;
 - For ClangFormat, the .clang-format file is searched relative to
 the current working directory when reading stdin;
 - For GDB, GDB command history file defaults to the value of the
 environment variable GDBHISTFILE, or to ./.gdb_history if this
 variable is not set.

Signed-off-by: Wang, Lei &lt;lei4.wang@intel.com&gt;
Reviewed-by: Philippe Mathieu-Daudé &lt;philmd@linaro.org&gt;
Message-Id: &lt;20221020171921.1078533-1-lei4.wang@intel.com&gt;
Signed-off-by: Laurent Vivier &lt;laurent@vivier.eu&gt;
</content>
</entry>
<entry>
<title>.gitignore: add .cache/ to .gitignore</title>
<updated>2022-09-29T19:16:47+00:00</updated>
<author>
<name>Wang, Lei</name>
</author>
<published>2022-09-07T15:00:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=fcf5813cba7079d94eccc8804fb80c4b05e48a86'/>
<id>urn:sha1:fcf5813cba7079d94eccc8804fb80c4b05e48a86</id>
<content type='text'>
$PROJECT/.cache/clangd/index is the intended location for project index
data when using clangd as the language server. Ignore this directory to
keep the git status clean.

Signed-off-by: Wang, Lei &lt;lei4.wang@intel.com&gt;
Message-Id: &lt;20220907150010.2047037-1-lei4.wang@intel.com&gt;
Signed-off-by: Laurent Vivier &lt;laurent@vivier.eu&gt;
</content>
</entry>
<entry>
<title>.gitignore: add .gcov pattern</title>
<updated>2022-02-09T12:08:41+00:00</updated>
<author>
<name>Alex Bennée</name>
</author>
<published>2022-02-04T20:43:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=5934ebe99025e12dac39cd1ba91f4116aec32774'/>
<id>urn:sha1:5934ebe99025e12dac39cd1ba91f4116aec32774</id>
<content type='text'>
The gcovr tool is very messy and can leave a lot of crap in the source
tree even when using build directories.

Signed-off-by: Alex Bennée &lt;alex.bennee@linaro.org&gt;
Reviewed-by: Philippe Mathieu-Daudé &lt;f4bug@amsat.org&gt;
Reviewed-by: Richard Henderson &lt;richard.henderson@linaro.org&gt;
Message-Id: &lt;20220204204335.1689602-5-alex.bennee@linaro.org&gt;
</content>
</entry>
<entry>
<title>gitignore: Update with some filetypes</title>
<updated>2021-07-23T16:22:15+00:00</updated>
<author>
<name>Viresh Kumar</name>
</author>
<published>2021-07-20T23:26:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=6e52aafbac1d9f4eaa465ab4ec5d4327f2430832'/>
<id>urn:sha1:6e52aafbac1d9f4eaa465ab4ec5d4327f2430832</id>
<content type='text'>
Update .gitignore to ignore .swp and .patch files.

Signed-off-by: Viresh Kumar &lt;viresh.kumar@linaro.org&gt;
Signed-off-by: Alex Bennée &lt;alex.bennee@linaro.org&gt;
Reviewed-by: Alex Bennée &lt;alex.bennee@linaro.org&gt;
Message-Id: &lt;79262dbe1f7888eb02e1911501eebafa6f2f6400.1616583806.git.viresh.kumar@linaro.org&gt;
Message-Id: &lt;20210720232703.10650-2-alex.bennee@linaro.org&gt;
</content>
</entry>
<entry>
<title>Makefile: add GNU global tags support</title>
<updated>2021-01-18T10:04:31+00:00</updated>
<author>
<name>Alex Bennée</name>
</author>
<published>2021-01-14T16:57:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=b8a322549b9842a9628e25eff31dbc706b182d7c'/>
<id>urn:sha1:b8a322549b9842a9628e25eff31dbc706b182d7c</id>
<content type='text'>
GNU Global is another tags engine which is more like cscope in being
able to support finding both references and definitions. You will be
un-surprised to know it also integrates well with Emacs.

The main benefit of integrating it into find-src-path is it takes less
time to rebuild the database from scratch when you have a lot of build
directories under your source tree.

Signed-off-by: Alex Bennée &lt;alex.bennee@linaro.org&gt;
Reviewed-by: Philippe Mathieu-Daudé &lt;philmd@redhat.com&gt;
Message-Id: &lt;20210114165730.31607-3-alex.bennee@linaro.org&gt;
</content>
</entry>
<entry>
<title>Add *.pyc back to the .gitignore file</title>
<updated>2020-09-23T17:09:56+00:00</updated>
<author>
<name>Thomas Huth</name>
</author>
<published>2020-09-19T10:18:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=ab800bb38b2d275209071e6c4f38c4269c178102'/>
<id>urn:sha1:ab800bb38b2d275209071e6c4f38c4269c178102</id>
<content type='text'>
Python still dumps its bytecode into the source directory, so
we should continue to ignore the *.pyc files.

Fixes: 0e72b7df4d ("Simplify the .gitignore file")
Reported-by: Peter Maydell &lt;peter.maydell@linaro.org&gt;
Signed-off-by: Thomas Huth &lt;thuth@redhat.com&gt;
Reviewed-by: Philippe Mathieu-Daudé &lt;f4bug@amsat.org&gt;
Message-Id: &lt;20200919101859.28739-1-thuth@redhat.com&gt;
Signed-off-by: Laurent Vivier &lt;laurent@vivier.eu&gt;
</content>
</entry>
<entry>
<title>Simplify the .gitignore file</title>
<updated>2020-09-16T06:41:06+00:00</updated>
<author>
<name>Thomas Huth</name>
</author>
<published>2020-09-07T17:38:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=0e72b7df4d552f9da33d3559fd84febd86455a99'/>
<id>urn:sha1:0e72b7df4d552f9da33d3559fd84febd86455a99</id>
<content type='text'>
Now that we always do out-of-tree builds (and the in-tree builds are
faked via a "build" directory), we can simplify out .gitignore file
quite a bit.

Message-Id: &lt;20200909080305.258961-1-thuth@redhat.com&gt;
Reviewed-by: Philippe Mathieu-Daudé &lt;philmd@redhat.com&gt;
Signed-off-by: Thomas Huth &lt;thuth@redhat.com&gt;
</content>
</entry>
<entry>
<title>configure: move disassembler configuration to meson</title>
<updated>2020-09-08T09:43:16+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2020-09-01T10:04:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=ca0fc78431fb313cba7c23a38ad7af092a73e06a'/>
<id>urn:sha1:ca0fc78431fb313cba7c23a38ad7af092a73e06a</id>
<content type='text'>
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>meson: compute config_all_devices directly</title>
<updated>2020-09-08T09:43:16+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2020-09-01T09:32:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=a98006bc798169e661d2e2f02f6efb105c55ffa0'/>
<id>urn:sha1:a98006bc798169e661d2e2f02f6efb105c55ffa0</id>
<content type='text'>
There is no need anymore to produce config-all-devices.mak, compute
the resulting dictionary directly instead of going through grepy.sh.

Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>rules.mak: drop unneeded macros</title>
<updated>2020-08-21T10:30:42+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2019-12-12T12:30:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=484e2cc730a86f7066b3e29c5bb8440747b61f01'/>
<id>urn:sha1:484e2cc730a86f7066b3e29c5bb8440747b61f01</id>
<content type='text'>
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
</feed>
