qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Subject: [PATCH 147/150] meson: convert po/
Date: Fri, 14 Aug 2020 05:13:23 -0400	[thread overview]
Message-ID: <20200814091326.16173-148-pbonzini@redhat.com> (raw)
In-Reply-To: <20200814091326.16173-1-pbonzini@redhat.com>

From: Marc-André Lureau <marcandre.lureau@redhat.com>

Meson warns if xgettext is not found.  In the future we may want to add
a required argument to i18n.gettext(); in the meanwhile, I am adding a
--enable-gettext/--disable-gettext option and feature detection in
configure.  This preserves QEMU's default behavior of detecting system
features, without any warning, if neither --enable-* nor --disable-*
is requested.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 Makefile          |  5 +---
 configure         | 21 +++++++++++++-
 meson.build       |  3 ++
 meson_options.txt |  1 +
 po/LINGUAS        |  8 +++++
 po/Makefile       | 52 ---------------------------------
 po/POTFILES       |  1 +
 po/meson.build    |  7 +++++
 po/messages.po    | 74 -----------------------------------------------
 tests/vm/freebsd  |  1 +
 tests/vm/netbsd   |  1 +
 tests/vm/openbsd  |  1 +
 12 files changed, 44 insertions(+), 131 deletions(-)
 create mode 100644 po/LINGUAS
 delete mode 100644 po/Makefile
 create mode 100644 po/POTFILES
 create mode 100644 po/meson.build
 delete mode 100644 po/messages.po

diff --git a/Makefile b/Makefile
index a69ec9d94b..84c9e2bd26 100644
--- a/Makefile
+++ b/Makefile
@@ -209,7 +209,7 @@ distclean: clean ninja-distclean
 	rm -f config-host.mak config-host.h*
 	rm -f tests/tcg/config-*.mak
 	rm -f config-all-disas.mak config.status
-	rm -f po/*.mo tests/qemu-iotests/common.env
+	rm -f tests/qemu-iotests/common.env
 	rm -f roms/seabios/config.mak roms/vgabios/config.mak
 	rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols
 	rm -f *-config-target.h *-config-devices.mak *-config-devices.h
@@ -287,9 +287,6 @@ endif
 	mkdir -p "$(DESTDIR)$(qemu_desktopdir)"
 	$(INSTALL_DATA) $(SRC_PATH)/ui/qemu.desktop \
 		"$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
-ifdef CONFIG_GTK
-	$(MAKE) -C po $@
-endif
 	$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
 	set -e; for x in $(KEYMAPS); do \
 		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
diff --git a/configure b/configure
index 140274ae4b..a00f4ca0e3 100755
--- a/configure
+++ b/configure
@@ -522,6 +522,7 @@ rng_none="no"
 secret_keyring=""
 libdaxctl=""
 meson=""
+gettext=""
 
 bogus_os="no"
 malloc_trim=""
@@ -1112,6 +1113,10 @@ for opt do
   ;;
   --enable-vnc) vnc="enabled"
   ;;
+  --disable-gettext) gettext="false"
+  ;;
+  --enable-gettext) gettext="true"
+  ;;
   --oss-lib=*) oss_lib="$optarg"
   ;;
   --audio-drv-list=*) audio_drv_list="$optarg"
@@ -2983,6 +2988,19 @@ if test "$whpx" != "no" ; then
     fi
 fi
 
+##########################################
+# gettext probe
+if test "$gettext" != "false" ; then
+  if has xgettext; then
+    gettext=true
+  else
+    if test "$gettext" = "true" ; then
+      feature_not_found "gettext" "Install xgettext binary"
+    fi
+    gettext=false
+  fi
+fi
+
 ##########################################
 # Sparse probe
 if test "$sparse" != "no" ; then
@@ -8045,7 +8063,7 @@ DIRS="$DIRS docs docs/interop fsdev scsi"
 DIRS="$DIRS pc-bios/optionrom pc-bios/s390-ccw"
 DIRS="$DIRS roms/seabios"
 LINKS="Makefile"
-LINKS="$LINKS tests/tcg/lm32/Makefile po/Makefile"
+LINKS="$LINKS tests/tcg/lm32/Makefile"
 LINKS="$LINKS tests/tcg/Makefile.target"
 LINKS="$LINKS pc-bios/optionrom/Makefile pc-bios/keymaps"
 LINKS="$LINKS pc-bios/s390-ccw/Makefile"
@@ -8172,6 +8190,7 @@ NINJA=$PWD/ninjatool $meson setup \
         -Db_coverage=$(if test "$gcov" = yes; then echo true; else echo false; fi) \
 	-Dsdl=$sdl -Dsdl_image=$sdl_image \
 	-Dvnc=$vnc -Dvnc_sasl=$vnc_sasl -Dvnc_jpeg=$vnc_jpeg -Dvnc_png=$vnc_png \
+	-Dgettext=$gettext \
         $cross_arg \
         "$PWD" "$source_path"
 
diff --git a/meson.build b/meson.build
index 67cd2a05c9..dd2cffc6aa 100644
--- a/meson.build
+++ b/meson.build
@@ -1109,6 +1109,9 @@ subdir('tools')
 subdir('pc-bios')
 subdir('tests')
 subdir('docs')
+if 'CONFIG_GTK' in config_host
+  subdir('po')
+endif
 
 if build_docs
   makeinfo = find_program('makeinfo', required: build_docs)
diff --git a/meson_options.txt b/meson_options.txt
index 67455c57bc..e5f45243ce 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,3 +1,4 @@
+option('gettext', type : 'boolean', value : true)
 option('sdl', type : 'feature', value : 'auto')
 option('sdl_image', type : 'feature', value : 'auto')
 option('vnc', type : 'feature', value : 'enabled')
diff --git a/po/LINGUAS b/po/LINGUAS
new file mode 100644
index 0000000000..cc4b5c3b36
--- /dev/null
+++ b/po/LINGUAS
@@ -0,0 +1,8 @@
+bg
+de_DE
+fr_FR
+hu
+it
+sv
+tr
+zh_CN
diff --git a/po/Makefile b/po/Makefile
deleted file mode 100644
index c041f4c858..0000000000
--- a/po/Makefile
+++ /dev/null
@@ -1,52 +0,0 @@
-# This makefile is very special as it's meant to build as part of the build
-# process and also within the source tree to update the translation files.
-
-# Set SRC_PATH for in-tree builds without configuration.
-SRC_PATH=..
-
-# The default target must come before any include statements.
-all:
-
-.PHONY:	all build clean install update
-
-%.mo: %.po
-	$(call quiet-command, msgfmt -o $@ $<,"GEN","$@")
-
--include ../config-host.mak
-include $(SRC_PATH)/rules.mak
-
-PO_PATH=$(SRC_PATH)/po
-
-VERSION=$(shell cat $(SRC_PATH)/VERSION)
-SRCS=$(filter-out $(PO_PATH)/messages.po,$(wildcard $(PO_PATH)/*.po))
-OBJS=$(patsubst $(PO_PATH)/%.po,%.mo,$(SRCS))
-
-vpath %.po $(PO_PATH)
-
-all:
-	@echo "Use 'make update' to update translation files or use 'make build'"
-	@echo "or 'make install' to build and install the translation files."
-
-update: $(SRCS)
-
-build: $(OBJS)
-
-clean:
-	rm -f $(OBJS)
-
-install: $(OBJS)
-	for obj in $(OBJS); do \
-	    base=$$(basename $$obj .mo); \
-	    $(INSTALL) -d $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES; \
-	    $(INSTALL) -m644 $$obj $(DESTDIR)$(prefix)/share/locale/$$base/LC_MESSAGES/qemu.mo; \
-	done
-
-$(PO_PATH)/messages.po: $(SRC_PATH)/ui/gtk.c
-	$(call quiet-command, ( cd $(SRC_PATH) && \
-          xgettext -o - --from-code=UTF-8 --foreign-user --no-location \
-	    --package-name=QEMU --package-version=$(VERSION) \
-	    --msgid-bugs-address=qemu-devel@nongnu.org -k_ -C ui/gtk.c | \
-	  sed -e s/CHARSET/UTF-8/) >$@,"GEN","$@")
-
-$(PO_PATH)/%.po: $(PO_PATH)/messages.po
-	$(call quiet-command, msgmerge -q $@ $< > $@.bak && mv $@.bak $@,"GEN","$@")
diff --git a/po/POTFILES b/po/POTFILES
new file mode 100644
index 0000000000..d34d5ed9aa
--- /dev/null
+++ b/po/POTFILES
@@ -0,0 +1 @@
+ui/gtk.c
diff --git a/po/meson.build b/po/meson.build
new file mode 100644
index 0000000000..1387fd979a
--- /dev/null
+++ b/po/meson.build
@@ -0,0 +1,7 @@
+i18n = import('i18n')
+
+if get_option('gettext')
+  i18n.gettext(meson.project_name(),
+               args: '--msgid-bugs-address=qemu-devel@nongnu.org',
+               preset: 'glib')
+endif
diff --git a/po/messages.po b/po/messages.po
deleted file mode 100644
index 065bd459a0..0000000000
--- a/po/messages.po
+++ /dev/null
@@ -1,74 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# This file is put in the public domain.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: QEMU 2.12.91\n"
-"Report-Msgid-Bugs-To: qemu-devel@nongnu.org\n"
-"POT-Creation-Date: 2018-07-18 07:56+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-msgid " - Press Ctrl+Alt+G to release grab"
-msgstr ""
-
-msgid " [Paused]"
-msgstr ""
-
-msgid "_Pause"
-msgstr ""
-
-msgid "_Reset"
-msgstr ""
-
-msgid "Power _Down"
-msgstr ""
-
-msgid "_Quit"
-msgstr ""
-
-msgid "_Fullscreen"
-msgstr ""
-
-msgid "_Copy"
-msgstr ""
-
-msgid "Zoom _In"
-msgstr ""
-
-msgid "Zoom _Out"
-msgstr ""
-
-msgid "Best _Fit"
-msgstr ""
-
-msgid "Zoom To _Fit"
-msgstr ""
-
-msgid "Grab On _Hover"
-msgstr ""
-
-msgid "_Grab Input"
-msgstr ""
-
-msgid "Show _Tabs"
-msgstr ""
-
-msgid "Detach Tab"
-msgstr ""
-
-msgid "Show Menubar"
-msgstr ""
-
-msgid "_Machine"
-msgstr ""
-
-msgid "_View"
-msgstr ""
diff --git a/tests/vm/freebsd b/tests/vm/freebsd
index b34b14fc53..5f866e09c4 100755
--- a/tests/vm/freebsd
+++ b/tests/vm/freebsd
@@ -39,6 +39,7 @@ class FreeBSDVM(basevm.BaseVM):
         "bash",
         "gmake",
         "gsed",
+        "gettext",
 
         # libs: crypto
         "gnutls",
diff --git a/tests/vm/netbsd b/tests/vm/netbsd
index 93d48b6fdd..ffb65a89be 100755
--- a/tests/vm/netbsd
+++ b/tests/vm/netbsd
@@ -37,6 +37,7 @@ class NetBSDVM(basevm.BaseVM):
         "bash",
         "gmake",
         "gsed",
+        "gettext",
 
         # libs: crypto
         "gnutls",
diff --git a/tests/vm/openbsd b/tests/vm/openbsd
index 7e27fda642..8356646f21 100755
--- a/tests/vm/openbsd
+++ b/tests/vm/openbsd
@@ -36,6 +36,7 @@ class OpenBSDVM(basevm.BaseVM):
         "bash",
         "gmake",
         "gsed",
+        "gettext",
 
         # libs: usb
         "libusb1",
-- 
2.26.2




  parent reply	other threads:[~2020-08-14 10:17 UTC|newest]

Thread overview: 166+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-14  9:10 [PATCH v2 000/150] Meson integration for 5.2 Paolo Bonzini
2020-08-14  9:10 ` [PATCH 001/150] oss-fuzz/build: remove LIB_FUZZING_ENGINE Paolo Bonzini
2020-08-14  9:10 ` [PATCH 002/150] optionrom: simplify Makefile Paolo Bonzini
2020-08-14  9:10 ` [PATCH 003/150] pc-bios/s390-ccw: do not use rules.mak Paolo Bonzini
2020-08-14  9:11 ` [PATCH 004/150] trace: switch position of headers to what Meson requires Paolo Bonzini
2020-08-14  9:11 ` [PATCH 005/150] meson: rename included C source files to .c.inc Paolo Bonzini
2020-08-14  9:11 ` [PATCH 006/150] meson: rename .inc.h files to .h.inc Paolo Bonzini
2020-08-14  9:11 ` [PATCH 007/150] build-sys hack: ensure target directory is there Paolo Bonzini
2020-08-14  9:11 ` [PATCH 008/150] tests/vm: do not pollute configure with --efi-aarch64 Paolo Bonzini
2020-08-14  9:11 ` [PATCH 009/150] tests/vm: check for Python YAML parser in the Makefile Paolo Bonzini
2020-08-14  9:11 ` [PATCH 010/150] tests/docker: add test script for static linux-user builds Paolo Bonzini
2020-08-14  9:11 ` [PATCH 011/150] nsis: use "make DESTDIR=" instead of "make prefix=" Paolo Bonzini
2020-08-14  9:11 ` [PATCH 012/150] configure: do not include $(...) variables in config-host.mak Paolo Bonzini
2020-08-14  9:11 ` [PATCH 013/150] configure: expand path variables for meson configure Paolo Bonzini
2020-08-14  9:11 ` [PATCH 014/150] configure: prepare CFLAGS/CXXFLAGS/LDFLAGS for Meson Paolo Bonzini
2020-08-14  9:11 ` [PATCH 015/150] tests/vm: include setuptools Paolo Bonzini
2020-08-14  9:11 ` [PATCH 016/150] configure: integrate Meson in the build system Paolo Bonzini
2020-08-14  9:11 ` [PATCH 017/150] configure: generate Meson cross file Paolo Bonzini
2020-08-14  9:11 ` [PATCH 018/150] build-sys hack: link with whole .fa archives Paolo Bonzini
2020-08-14  9:11 ` [PATCH 019/150] build-sys: add meson submodule Paolo Bonzini
2020-08-14  9:11 ` [PATCH 020/150] meson: move summary to meson.build Paolo Bonzini
2020-08-14  9:11 ` [PATCH 021/150] meson: enable pie Paolo Bonzini
2020-08-14  9:11 ` [PATCH 022/150] meson: use coverage option Paolo Bonzini
2020-08-14  9:11 ` [PATCH 023/150] meson: add sparse support Paolo Bonzini
2020-08-14  9:11 ` [PATCH 024/150] meson: add testsuite Makefile generator Paolo Bonzini
2020-08-14  9:11 ` [PATCH 025/150] libqemuutil, qapi, trace: convert to meson Paolo Bonzini
2020-08-17 11:10   ` Roman Bolshakov
2020-08-17 13:38     ` Philippe Mathieu-Daudé
2020-08-17 13:44     ` Paolo Bonzini
2020-08-14  9:11 ` [PATCH 026/150] meson: add remaining generated tcg trace helpers Paolo Bonzini
2020-08-14  9:11 ` [PATCH 027/150] meson: add version.o Paolo Bonzini
2020-08-14  9:11 ` [PATCH 028/150] contrib/libvhost-user: convert to Meson Paolo Bonzini
2020-08-14  9:11 ` [PATCH 029/150] tools/virtiofsd: " Paolo Bonzini
2020-08-14  9:11 ` [PATCH 030/150] contrib/vhost-user-blk: " Paolo Bonzini
2020-08-14  9:11 ` [PATCH 031/150] vhost-user-scsi: add compatibility for libiscsi 1.9.0 Paolo Bonzini
2020-08-14  9:11 ` [PATCH 032/150] contrib/vhost-user-scsi: convert to Meson Paolo Bonzini
2020-08-14  9:11 ` [PATCH 033/150] contrib/rdmacm-mux: " Paolo Bonzini
2020-08-14  9:11 ` [PATCH 034/150] contrib/vhost-user-input: convert to meson Paolo Bonzini
2020-08-14  9:11 ` [PATCH 035/150] contrib/vhost-user-gpu: " Paolo Bonzini
2020-08-14  9:11 ` [PATCH 036/150] contrib/ivshmem: " Paolo Bonzini
2020-08-14  9:11 ` [PATCH 037/150] contrib/elf2dmp: " Paolo Bonzini
2020-08-14  9:11 ` [PATCH 038/150] meson: add macos dependencies Paolo Bonzini
2020-08-14  9:11 ` [PATCH 039/150] meson: add solaris and Haiku libraries Paolo Bonzini
2020-08-14  9:11 ` [PATCH 040/150] meson: convert qemu-ga Paolo Bonzini
2020-08-14  9:11 ` [PATCH 041/150] meson: convert vss-win32 Paolo Bonzini
2020-08-14  9:11 ` [PATCH 042/150] meson: add msi generation Paolo Bonzini
2020-08-14  9:11 ` [PATCH 043/150] meson: convert dummy Windows qga/qemu-ga target Paolo Bonzini
2020-08-14  9:11 ` [PATCH 044/150] meson: add qemu-bridge-helper Paolo Bonzini
2020-08-14  9:11 ` [PATCH 045/150] meson: add qemu-keymap Paolo Bonzini
2020-08-14  9:11 ` [PATCH 046/150] meson: add qemu-edid Paolo Bonzini
2020-08-14  9:11 ` [PATCH 047/150] meson: add virtfs-proxy-helper Paolo Bonzini
2020-08-14  9:11 ` [PATCH 048/150] meson: keymap-gen Paolo Bonzini
2020-08-14  9:11 ` [PATCH 049/150] meson: generate qemu-version.h Paolo Bonzini
2020-08-14  9:11 ` [PATCH 050/150] meson: generate shader headers Paolo Bonzini
2020-08-14  9:11 ` [PATCH 051/150] meson: generate hxtool files Paolo Bonzini
2020-08-14  9:11 ` [PATCH 052/150] meson: handle edk2 bios and descriptors Paolo Bonzini
2020-08-14  9:11 ` [PATCH 053/150] meson: convert check-decodetree Paolo Bonzini
2020-08-14  9:11 ` [PATCH 054/150] meson: convert tests/fp and check-softfloat Paolo Bonzini
2020-08-14  9:11 ` [PATCH 055/150] meson: convert check-qapi-schema Paolo Bonzini
2020-08-14  9:11 ` [PATCH 056/150] meson: convert qom directory to Meson (tools part) Paolo Bonzini
2020-08-14  9:11 ` [PATCH 057/150] meson: convert authz directory to Meson Paolo Bonzini
2020-08-14  9:11 ` [PATCH 058/150] meson: convert crypto " Paolo Bonzini
2020-08-14  9:11 ` [PATCH 059/150] meson: convert io " Paolo Bonzini
2020-08-14  9:11 ` [PATCH 060/150] meson: convert target/s390x/gen-features.h Paolo Bonzini
2020-08-14  9:11 ` [PATCH 061/150] meson: infrastructure for building emulators Paolo Bonzini
2020-08-14  9:11 ` [PATCH 062/150] meson: add modules infrastructure Paolo Bonzini
2020-08-14  9:11 ` [PATCH 063/150] meson: convert chardev directory to Meson (tools part) Paolo Bonzini
2020-08-14  9:12 ` [PATCH 064/150] meson: convert block Paolo Bonzini
2020-08-14  9:12 ` [PATCH 065/150] meson: qemu-{img,io,nbd} Paolo Bonzini
2020-08-14  9:12 ` [PATCH 066/150] meson: qemu-pr-helper Paolo Bonzini
2020-08-14  9:12 ` [PATCH 067/150] configure, Makefile; remove TOOLS and HELPERS-y variable Paolo Bonzini
2020-08-14  9:12 ` [PATCH 068/150] meson: convert chardev directory to Meson (emulator part) Paolo Bonzini
2020-08-14  9:12 ` [PATCH 069/150] meson: convert tests/qtest to meson Paolo Bonzini
2020-08-14  9:12 ` [PATCH 070/150] meson: convert audio directory to Meson Paolo Bonzini
2020-08-14  9:12 ` [PATCH 071/150] meson: convert ui " Paolo Bonzini
2020-08-14  9:12 ` [PATCH 072/150] meson: convert root " Paolo Bonzini
2020-08-14  9:12 ` [PATCH 073/150] meson: convert most of softmmu/ Paolo Bonzini
2020-08-14  9:12 ` [PATCH 074/150] meson: convert trace/ Paolo Bonzini
2020-08-14  9:12 ` [PATCH 075/150] meson: convert dump/ Paolo Bonzini
2020-08-14  9:12 ` [PATCH 076/150] meson: convert common QMP bits for qemu and qemu-storage-daemon Paolo Bonzini
2020-08-14  9:12 ` [PATCH 077/150] meson: convert qemu-storage-daemon Paolo Bonzini
2020-08-14  9:12 ` [PATCH 078/150] meson: convert replay directory to Meson Paolo Bonzini
2020-08-14  9:12 ` [PATCH 079/150] meson: convert migration " Paolo Bonzini
2020-08-14  9:12 ` [PATCH 080/150] meson: convert net " Paolo Bonzini
2020-08-14  9:12 ` [PATCH 081/150] meson: convert backends " Paolo Bonzini
2020-08-14  9:12 ` [PATCH 082/150] meson: convert fsdev/ Paolo Bonzini
2020-08-14  9:12 ` [PATCH 083/150] meson: convert disas directory to Meson Paolo Bonzini
2020-08-14  9:12 ` [PATCH 084/150] meson: convert qapi-specific to meson Paolo Bonzini
2020-08-14  9:12 ` [PATCH 085/150] meson: convert hw/xen Paolo Bonzini
2020-08-14  9:12 ` [PATCH 086/150] meson: convert hw/core Paolo Bonzini
2020-08-14  9:12 ` [PATCH 087/150] meson: convert hw/semihosting Paolo Bonzini
2020-08-14  9:12 ` [PATCH 088/150] meson: convert hw/nubus Paolo Bonzini
2020-08-14  9:12 ` [PATCH 089/150] meson: convert hw/smbios Paolo Bonzini
2020-08-14  9:12 ` [PATCH 090/150] meson: convert hw/mem Paolo Bonzini
2020-08-14  9:12 ` [PATCH 091/150] meson: convert hw/watchdog Paolo Bonzini
2020-08-14  9:12 ` [PATCH 092/150] meson: convert hw/virtio Paolo Bonzini
2020-08-14  9:12 ` [PATCH 093/150] meson: convert hw/vfio Paolo Bonzini
2020-08-14  9:12 ` [PATCH 094/150] meson: convert hw/usb Paolo Bonzini
2020-08-14  9:12 ` [PATCH 095/150] meson: convert hw/tpm Paolo Bonzini
2020-08-14  9:12 ` [PATCH 096/150] meson: convert hw/timer Paolo Bonzini
2020-08-14  9:12 ` [PATCH 097/150] meson: convert hw/rtc Paolo Bonzini
2020-08-14  9:12 ` [PATCH 098/150] meson: convert hw/ssi Paolo Bonzini
2020-08-14  9:12 ` [PATCH 099/150] meson: convert hw/sd Paolo Bonzini
2020-08-14  9:12 ` [PATCH 100/150] meson: convert hw/scsi Paolo Bonzini
2020-08-14  9:12 ` [PATCH 101/150] meson: convert hw/pcmcia Paolo Bonzini
2020-08-14  9:12 ` [PATCH 102/150] meson: convert hw/pci-host Paolo Bonzini
2020-08-14  9:12 ` [PATCH 103/150] meson: convert hw/pci-bridge Paolo Bonzini
2020-08-14  9:12 ` [PATCH 104/150] meson: convert hw/pci Paolo Bonzini
2020-08-14  9:12 ` [PATCH 105/150] meson: convert hw/nvram Paolo Bonzini
2020-08-14  9:12 ` [PATCH 106/150] meson: convert hw/rdma Paolo Bonzini
2020-08-14  9:12 ` [PATCH 107/150] meson: convert hw/net Paolo Bonzini
2020-08-14  9:12 ` [PATCH 108/150] meson: convert hw/misc Paolo Bonzini
2020-08-14  9:12 ` [PATCH 109/150] meson: convert hw/isa Paolo Bonzini
2020-08-14  9:12 ` [PATCH 110/150] meson: convert hw/ipmi Paolo Bonzini
2020-08-14  9:12 ` [PATCH 111/150] meson: convert hw/ipack Paolo Bonzini
2020-08-14  9:12 ` [PATCH 112/150] meson: convert hw/intc Paolo Bonzini
2020-08-14  9:12 ` [PATCH 113/150] meson: convert hw/input Paolo Bonzini
2020-08-14  9:12 ` [PATCH 114/150] meson: convert hw/ide Paolo Bonzini
2020-08-14  9:12 ` [PATCH 115/150] meson: convert hw/i2c Paolo Bonzini
2020-08-14  9:12 ` [PATCH 116/150] meson: convert hw/hyperv Paolo Bonzini
2020-08-14  9:12 ` [PATCH 117/150] meson: convert hw/gpio Paolo Bonzini
2020-08-14  9:12 ` [PATCH 118/150] meson: convert hw/dma Paolo Bonzini
2020-08-14  9:12 ` [PATCH 119/150] meson: convert hw/display Paolo Bonzini
2020-08-14  9:12 ` [PATCH 120/150] meson: convert hw/cpu Paolo Bonzini
2020-08-14  9:12 ` [PATCH 121/150] meson: convert hw/char Paolo Bonzini
2020-08-14  9:12 ` [PATCH 122/150] meson: convert hw/block Paolo Bonzini
2020-08-14  9:12 ` [PATCH 123/150] meson: convert hw/audio Paolo Bonzini
2020-08-14  9:13 ` [PATCH 124/150] meson: convert hw/adc Paolo Bonzini
2020-08-14  9:13 ` [PATCH 125/150] meson: convert hw/acpi Paolo Bonzini
2020-08-14  9:13 ` [PATCH 126/150] meson: convert hw/9pfs, cleanup Paolo Bonzini
2020-08-14  9:13 ` [PATCH 127/150] meson: convert hw/arch* Paolo Bonzini
2020-08-14  9:13 ` [PATCH 128/150] meson: target Paolo Bonzini
2020-08-14  9:13 ` [PATCH 129/150] meson: accel Paolo Bonzini
2020-08-14  9:13 ` [PATCH 130/150] meson: linux-user Paolo Bonzini
2020-08-14  9:13 ` [PATCH 131/150] meson: bsd-user Paolo Bonzini
2020-08-14  9:13 ` [PATCH 132/150] meson: cpu-emu Paolo Bonzini
2020-08-14  9:13 ` [PATCH 133/150] meson: plugins Paolo Bonzini
2020-08-14  9:13 ` [PATCH 134/150] meson: link emulators without Makefile.target Paolo Bonzini
2020-08-14  9:13 ` [PATCH 135/150] meson: convert systemtap files Paolo Bonzini
2020-08-14  9:13 ` [PATCH 136/150] rules.mak: remove version.o Paolo Bonzini
2020-08-14  9:13 ` [PATCH 137/150] remove Makefile.target Paolo Bonzini
2020-08-14  9:13 ` [PATCH 138/150] meson: sphinx-build Paolo Bonzini
2020-08-14  9:13 ` [PATCH 139/150] docs: automatically track manual dependencies Paolo Bonzini
2020-08-14  9:13 ` [PATCH 140/150] meson: build texi doc Paolo Bonzini
2020-08-14  9:13 ` [PATCH 141/150] meson: convert check-block Paolo Bonzini
2020-08-14  9:13 ` [PATCH 142/150] rules.mak: drop unneeded macros Paolo Bonzini
2020-08-14  9:13 ` [PATCH 143/150] meson: replace create-config with meson configure_file Paolo Bonzini
2020-08-14  9:13 ` [PATCH 144/150] meson: convert sample plugins Paolo Bonzini
2020-08-14  9:13 ` [PATCH 145/150] meson: move SDL and SDL-image detection to meson Paolo Bonzini
2020-08-14  9:13 ` [PATCH 146/150] meson: convert VNC and dependent libraries " Paolo Bonzini
2020-08-14  9:13 ` Paolo Bonzini [this message]
2020-08-14  9:13 ` [PATCH 148/150] meson: avoid unstable module warning with Meson 0.56.0 or newer Paolo Bonzini
2020-08-14  9:13 ` [PATCH 149/150] meson: update build-system documentation Paolo Bonzini
2020-08-14  9:13 ` [PATCH 150/150] docs: convert build system documentation to rST Paolo Bonzini
2020-08-14 10:49 ` [PATCH v2 000/150] Meson integration for 5.2 no-reply
2020-08-14 10:55 ` no-reply
2020-08-14 10:58 ` no-reply
2020-08-15  9:01 ` Howard Spoelstra
2020-08-17 11:02 ` Roman Bolshakov
2020-08-17 11:24   ` Paolo Bonzini
2020-08-17 11:49     ` Roman Bolshakov
2020-08-17 13:36     ` Philippe Mathieu-Daudé
2020-08-17 13:44       ` Paolo Bonzini
2020-08-17 12:26 ` Cornelia Huck
2020-08-17 13:57   ` Paolo Bonzini
2020-08-17 14:33     ` Cornelia Huck

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=20200814091326.16173-148-pbonzini@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=marcandre.lureau@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 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).