* [Buildroot] [PATCH 1/2] qt5base: fix build when PNG support is disabled @ 2013-10-05 21:16 Fatih Aşıcı 2013-10-05 21:16 ` [Buildroot] [PATCH 2/2] qt5base: add an option to build and install examples Fatih Aşıcı 2013-10-14 14:08 ` [Buildroot] [PATCH 1/2] qt5base: fix build when PNG support is disabled Ezequiel García 0 siblings, 2 replies; 7+ messages in thread From: Fatih Aşıcı @ 2013-10-05 21:16 UTC (permalink / raw) To: buildroot Signed-off-by: Fatih A??c? <fatih.asici@gmail.com> --- ...correct-path-for-private-header-inclusion.patch | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 package/qt5/qt5base/qt5base-0005-Use-the-correct-path-for-private-header-inclusion.patch diff --git a/package/qt5/qt5base/qt5base-0005-Use-the-correct-path-for-private-header-inclusion.patch b/package/qt5/qt5base/qt5base-0005-Use-the-correct-path-for-private-header-inclusion.patch new file mode 100644 index 0000000..85c2714 --- /dev/null +++ b/package/qt5/qt5base/qt5base-0005-Use-the-correct-path-for-private-header-inclusion.patch @@ -0,0 +1,32 @@ +From 4a5fa73c7c65f2b58da5288199f6af993a737273 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Fatih=20A=C5=9F=C4=B1c=C4=B1?= <fatih.asici@gmail.com> +Date: Sat, 5 Oct 2013 13:39:44 +0300 +Subject: [PATCH] Use the correct path for private header inclusion +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Fixes the build when PNG support is disabled. + +Reported-Upstream: https://bugreports.qt-project.org/browse/QTBUG-33496 +Signed-off-by: Fatih A??c? <fatih.asici@gmail.com> +--- + src/gui/kernel/qplatformtheme.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/gui/kernel/qplatformtheme.cpp b/src/gui/kernel/qplatformtheme.cpp +index 02b69bc..46b59b5 100644 +--- a/src/gui/kernel/qplatformtheme.cpp ++++ b/src/gui/kernel/qplatformtheme.cpp +@@ -48,7 +48,7 @@ + #include <QtCore/qfileinfo.h> + #include <qpalette.h> + #include <qtextformat.h> +-#include <qiconloader_p.h> ++#include "private/qiconloader_p.h" + + QT_BEGIN_NAMESPACE + +-- +1.8.4.rc3 + -- 1.8.4.rc3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] qt5base: add an option to build and install examples 2013-10-05 21:16 [Buildroot] [PATCH 1/2] qt5base: fix build when PNG support is disabled Fatih Aşıcı @ 2013-10-05 21:16 ` Fatih Aşıcı 2013-10-14 14:11 ` Ezequiel García 2013-10-14 14:08 ` [Buildroot] [PATCH 1/2] qt5base: fix build when PNG support is disabled Ezequiel García 1 sibling, 1 reply; 7+ messages in thread From: Fatih Aşıcı @ 2013-10-05 21:16 UTC (permalink / raw) To: buildroot Adds two patches to fix building of examples when configured with one of these options: * -no-opengl (patch fetched from upstream) * -no-gui (patch sent to upstream) Signed-off-by: Fatih A??c? <fatih.asici@gmail.com> --- package/qt5/qt5base/Config.in | 7 +++ ...e-build-failure-in-windowcontainer-exampl.patch | 28 ++++++++++ ...les-Fix-build-when-configured-with-no-gui.patch | 62 ++++++++++++++++++++++ package/qt5/qt5base/qt5base.mk | 18 ++++++- 4 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 package/qt5/qt5base/qt5base-0006-Fix-possible-build-failure-in-windowcontainer-exampl.patch create mode 100644 package/qt5/qt5base/qt5base-0007-examples-Fix-build-when-configured-with-no-gui.patch diff --git a/package/qt5/qt5base/Config.in b/package/qt5/qt5base/Config.in index e433373..278966b 100644 --- a/package/qt5/qt5base/Config.in +++ b/package/qt5/qt5base/Config.in @@ -28,6 +28,13 @@ config BR2_PACKAGE_QT5BASE_LICENSE_APPROVED See also http://qt-project.org/doc/qt-5.0/qtdoc/licensing.html +config BR2_PACKAGE_QT5BASE_EXAMPLES + bool "Compile and install examples (with code)" + select BR2_PACKAGE_QT5BASE_NETWORK + select BR2_PACKAGE_QT5BASE_XML + help + If unsure, say N. + config BR2_PACKAGE_QT5BASE_NETWORK bool "network module" help diff --git a/package/qt5/qt5base/qt5base-0006-Fix-possible-build-failure-in-windowcontainer-exampl.patch b/package/qt5/qt5base/qt5base-0006-Fix-possible-build-failure-in-windowcontainer-exampl.patch new file mode 100644 index 0000000..15c7a3b --- /dev/null +++ b/package/qt5/qt5base/qt5base-0006-Fix-possible-build-failure-in-windowcontainer-exampl.patch @@ -0,0 +1,28 @@ +From f6a7092309e81326bf1fced4f8deb15bebcae9f1 Mon Sep 17 00:00:00 2001 +From: Andrew Knight <andrew.knight@digia.com> +Date: Sat, 31 Aug 2013 16:36:25 +0300 +Subject: [PATCH] Fix possible build failure in windowcontainer example + +The windowcontainer example utilzes the openglwindow example, so it +must also check that OpenGL is available. + +Change-Id: I7ecb372cfd533bb56effe7c61ebee9bd53de4c54 +Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> +--- + examples/widgets/widgets.pro | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/examples/widgets/widgets.pro b/examples/widgets/widgets.pro +index 726494f..d45a805 100644 +--- a/examples/widgets/widgets.pro ++++ b/examples/widgets/widgets.pro +@@ -22,5 +22,6 @@ SUBDIRS = \ + widgets \ + windowcontainer + ++!contains(QT_CONFIG, opengl(es1|es2)?): SUBDIRS -= windowcontainer + contains(DEFINES, QT_NO_CURSOR): SUBDIRS -= mainwindows + contains(DEFINES, QT_NO_DRAGANDDROP): SUBDIRS -= draganddrop +-- +1.8.4.rc3 + diff --git a/package/qt5/qt5base/qt5base-0007-examples-Fix-build-when-configured-with-no-gui.patch b/package/qt5/qt5base/qt5base-0007-examples-Fix-build-when-configured-with-no-gui.patch new file mode 100644 index 0000000..9c5cc25 --- /dev/null +++ b/package/qt5/qt5base/qt5base-0007-examples-Fix-build-when-configured-with-no-gui.patch @@ -0,0 +1,62 @@ +From 35d2c2018371099fc07fdf3ddda4d37783705411 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Fatih=20A=C5=9F=C4=B1c=C4=B1?= <fatih.asici@gmail.com> +Date: Sat, 5 Oct 2013 22:57:41 +0300 +Subject: [PATCH] examples: Fix build when configured with -no-gui +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Building of examples fails when configured with -no-gui. This patch adds gui +dependency to the relevant .pro files. + +Reported-Upstream: https://bugreports.qt-project.org/browse/QTBUG-33910 +Signed-off-by: Fatih A??c? <fatih.asici@gmail.com> +--- + examples/gui/gui.pro | 2 ++ + examples/qpa/qpa.pro | 2 ++ + examples/qtconcurrent/qtconcurrent.pro | 1 + + examples/threads/threads.pro | 2 ++ + 4 files changed, 7 insertions(+) + +diff --git a/examples/gui/gui.pro b/examples/gui/gui.pro +index 8758a1b..5fb4241 100644 +--- a/examples/gui/gui.pro ++++ b/examples/gui/gui.pro +@@ -1,3 +1,5 @@ ++requires(qtHaveModule(gui)) ++ + TEMPLATE = subdirs + CONFIG += no_docs_target + +diff --git a/examples/qpa/qpa.pro b/examples/qpa/qpa.pro +index 6f07e50..2729348 100644 +--- a/examples/qpa/qpa.pro ++++ b/examples/qpa/qpa.pro +@@ -1,2 +1,4 @@ ++requires(qtHaveModule(gui)) ++ + TEMPLATE = subdirs + SUBDIRS = windows +diff --git a/examples/qtconcurrent/qtconcurrent.pro b/examples/qtconcurrent/qtconcurrent.pro +index 1df6f2d..5e8c77f 100644 +--- a/examples/qtconcurrent/qtconcurrent.pro ++++ b/examples/qtconcurrent/qtconcurrent.pro +@@ -1,4 +1,5 @@ + requires(qtHaveModule(concurrent)) ++requires(qtHaveModule(gui)) + + TEMPLATE = subdirs + SUBDIRS = imagescaling \ +diff --git a/examples/threads/threads.pro b/examples/threads/threads.pro +index e47da84..b5cf12a 100644 +--- a/examples/threads/threads.pro ++++ b/examples/threads/threads.pro +@@ -1,3 +1,5 @@ ++requires(qtHaveModule(gui)) ++ + TEMPLATE = subdirs + CONFIG += no_docs_target + +-- +1.8.4.rc3 + diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk index 0106c2c..ebf51c4 100644 --- a/package/qt5/qt5base/qt5base.mk +++ b/package/qt5/qt5base/qt5base.mk @@ -60,6 +60,12 @@ QT5BASE_LICENSE = Commercial license QT5BASE_REDISTRIBUTE = NO endif +ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y) +QT5BASE_CONFIGURE_OPTS += -make examples -compile-examples +else +QT5BASE_CONFIGURE_OPTS += -nomake examples +endif + # Qt5 SQL Plugins ifeq ($(BR2_PACKAGE_QT5BASE_SQL),y) ifeq ($(BR2_PACKAGE_QT5BASE_MYSQL),y) @@ -175,8 +181,9 @@ define QT5BASE_CONFIGURE_CMDS -hostprefix $(HOST_DIR)/usr \ -sysroot $(STAGING_DIR) \ -plugindir /usr/lib/qt/plugins \ + -examplesdir /usr/lib/qt/examples \ -no-rpath \ - -nomake examples -nomake tests \ + -nomake tests \ -device buildroot \ -no-c++11 \ $(QT5BASE_CONFIGURE_OPTS) \ @@ -212,15 +219,24 @@ define QT5BASE_INSTALL_TARGET_FONTS fi endef +define QT5BASE_INSTALL_TARGET_EXAMPLES + if [ -d $(STAGING_DIR)/usr/lib/qt/examples/ ] ; then \ + mkdir -p $(TARGET_DIR)/usr/lib/qt/examples ; \ + cp -dpfr $(STAGING_DIR)/usr/lib/qt/examples/* $(TARGET_DIR)/usr/lib/qt/examples ; \ + fi +endef + ifeq ($(BR2_PREFER_STATIC_LIB),y) define QT5BASE_INSTALL_TARGET_CMDS $(QT5BASE_INSTALL_TARGET_FONTS) + $(QT5BASE_INSTALL_TARGET_EXAMPLES) endef else define QT5BASE_INSTALL_TARGET_CMDS $(QT5BASE_INSTALL_TARGET_LIBS) $(QT5BASE_INSTALL_TARGET_PLUGINS) $(QT5BASE_INSTALL_TARGET_FONTS) + $(QT5BASE_INSTALL_TARGET_EXAMPLES) endef endif -- 1.8.4.rc3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] qt5base: add an option to build and install examples 2013-10-05 21:16 ` [Buildroot] [PATCH 2/2] qt5base: add an option to build and install examples Fatih Aşıcı @ 2013-10-14 14:11 ` Ezequiel García 2013-10-14 16:42 ` Thomas Petazzoni 0 siblings, 1 reply; 7+ messages in thread From: Ezequiel García @ 2013-10-14 14:11 UTC (permalink / raw) To: buildroot On 5 October 2013 18:16, Fatih A??c? <fatih.asici@gmail.com> wrote: > Adds two patches to fix building of examples when configured with one of > these options: > > * -no-opengl (patch fetched from upstream) > * -no-gui (patch sent to upstream) > > Signed-off-by: Fatih A??c? <fatih.asici@gmail.com> > --- > package/qt5/qt5base/Config.in | 7 +++ > ...e-build-failure-in-windowcontainer-exampl.patch | 28 ++++++++++ > ...les-Fix-build-when-configured-with-no-gui.patch | 62 ++++++++++++++++++++++ > package/qt5/qt5base/qt5base.mk | 18 ++++++- > 4 files changed, 114 insertions(+), 1 deletion(-) > create mode 100644 package/qt5/qt5base/qt5base-0006-Fix-possible-build-failure-in-windowcontainer-exampl.patch > create mode 100644 package/qt5/qt5base/qt5base-0007-examples-Fix-build-when-configured-with-no-gui.patch > [...] > diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk > index 0106c2c..ebf51c4 100644 > --- a/package/qt5/qt5base/qt5base.mk > +++ b/package/qt5/qt5base/qt5base.mk > @@ -60,6 +60,12 @@ QT5BASE_LICENSE = Commercial license > QT5BASE_REDISTRIBUTE = NO > endif > > +ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y) > +QT5BASE_CONFIGURE_OPTS += -make examples -compile-examples > +else > +QT5BASE_CONFIGURE_OPTS += -nomake examples > +endif > + Any reason why this is not with the rest of the options and using the simpler: QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_EXAMPLES), \ -make examples -compile-examples, \ -nomake examples) ? Regards, -- Ezequiel Garc?a, VanguardiaSur www.vanguardiasur.com.ar ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] qt5base: add an option to build and install examples 2013-10-14 14:11 ` Ezequiel García @ 2013-10-14 16:42 ` Thomas Petazzoni 2013-10-14 17:02 ` Ezequiel García 0 siblings, 1 reply; 7+ messages in thread From: Thomas Petazzoni @ 2013-10-14 16:42 UTC (permalink / raw) To: buildroot Dear Ezequiel Garc?a, On Mon, 14 Oct 2013 11:11:14 -0300, Ezequiel Garc?a wrote: > > +ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y) > > +QT5BASE_CONFIGURE_OPTS += -make examples -compile-examples > > +else > > +QT5BASE_CONFIGURE_OPTS += -nomake examples > > +endif > > + > > Any reason why this is not with the rest of the options > and using the simpler: > > QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_EXAMPLES), \ > -make examples -compile-examples, \ > -nomake examples) > > ? I agree with your first point (it should be with the other configure option), but I disagree with your second point. The choice Fatih has made is the one we make everywhere in Buildroot whenever the "if" becomes multiline. I'd very much prefer Fatih to keep its original proposal. We use $(if ...) only when it can be done like this: FOO_SOMETHING = $(if $(BR2_BLEH),foo,bar) when it becomes more complicated than that, we use ifeq ... else ... endif blocks on several lines. Thanks, Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] qt5base: add an option to build and install examples 2013-10-14 16:42 ` Thomas Petazzoni @ 2013-10-14 17:02 ` Ezequiel García 2013-10-28 0:11 ` Ezequiel García 0 siblings, 1 reply; 7+ messages in thread From: Ezequiel García @ 2013-10-14 17:02 UTC (permalink / raw) To: buildroot On 14 October 2013 13:42, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote: > Dear Ezequiel Garc?a, > > On Mon, 14 Oct 2013 11:11:14 -0300, Ezequiel Garc?a wrote: > >> > +ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y) >> > +QT5BASE_CONFIGURE_OPTS += -make examples -compile-examples >> > +else >> > +QT5BASE_CONFIGURE_OPTS += -nomake examples >> > +endif >> > + >> >> Any reason why this is not with the rest of the options >> and using the simpler: >> >> QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_EXAMPLES), \ >> -make examples -compile-examples, \ >> -nomake examples) >> >> ? > > I agree with your first point (it should be with the other configure > option), but I disagree with your second point. The choice Fatih has > made is the one we make everywhere in Buildroot whenever the "if" > becomes multiline. I'd very much prefer Fatih to keep its original > proposal. > > We use $(if ...) only when it can be done like this: > > FOO_SOMETHING = $(if $(BR2_BLEH),foo,bar) > > when it becomes more complicated than that, we use ifeq ... else ... > endif blocks on several lines. > Sure, no objections on my side. Fatih: if you re-submit this, you can add my: Tested-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> It's great to see the Qt5 support is moving forward! -- Ezequiel Garc?a, VanguardiaSur www.vanguardiasur.com.ar ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] qt5base: add an option to build and install examples 2013-10-14 17:02 ` Ezequiel García @ 2013-10-28 0:11 ` Ezequiel García 0 siblings, 0 replies; 7+ messages in thread From: Ezequiel García @ 2013-10-28 0:11 UTC (permalink / raw) To: buildroot Fatih, Peter: On 14 October 2013 14:02, Ezequiel Garc?a <ezequiel@vanguardiasur.com.ar> wrote: > On 14 October 2013 13:42, Thomas Petazzoni > <thomas.petazzoni@free-electrons.com> wrote: >> Dear Ezequiel Garc?a, >> >> On Mon, 14 Oct 2013 11:11:14 -0300, Ezequiel Garc?a wrote: >> >>> > +ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y) >>> > +QT5BASE_CONFIGURE_OPTS += -make examples -compile-examples >>> > +else >>> > +QT5BASE_CONFIGURE_OPTS += -nomake examples >>> > +endif >>> > + >>> >>> Any reason why this is not with the rest of the options >>> and using the simpler: >>> >>> QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_EXAMPLES), \ >>> -make examples -compile-examples, \ >>> -nomake examples) >>> >>> ? >> >> I agree with your first point (it should be with the other configure >> option), but I disagree with your second point. The choice Fatih has >> made is the one we make everywhere in Buildroot whenever the "if" >> becomes multiline. I'd very much prefer Fatih to keep its original >> proposal. >> >> We use $(if ...) only when it can be done like this: >> >> FOO_SOMETHING = $(if $(BR2_BLEH),foo,bar) >> >> when it becomes more complicated than that, we use ifeq ... else ... >> endif blocks on several lines. >> > > Sure, no objections on my side. > > Fatih: if you re-submit this, you can add my: > > Tested-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> > Peter: Will you take this as it is, or would you prefer a re-submit reordering as agreed above? -- Ezequiel Garc?a, VanguardiaSur www.vanguardiasur.com.ar ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/2] qt5base: fix build when PNG support is disabled 2013-10-05 21:16 [Buildroot] [PATCH 1/2] qt5base: fix build when PNG support is disabled Fatih Aşıcı 2013-10-05 21:16 ` [Buildroot] [PATCH 2/2] qt5base: add an option to build and install examples Fatih Aşıcı @ 2013-10-14 14:08 ` Ezequiel García 1 sibling, 0 replies; 7+ messages in thread From: Ezequiel García @ 2013-10-14 14:08 UTC (permalink / raw) To: buildroot On 5 October 2013 18:16, Fatih A??c? <fatih.asici@gmail.com> wrote: > Signed-off-by: Fatih A??c? <fatih.asici@gmail.com> > --- > ...correct-path-for-private-header-inclusion.patch | 32 ++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > create mode 100644 package/qt5/qt5base/qt5base-0005-Use-the-correct-path-for-private-header-inclusion.patch > > diff --git a/package/qt5/qt5base/qt5base-0005-Use-the-correct-path-for-private-header-inclusion.patch b/package/qt5/qt5base/qt5base-0005-Use-the-correct-path-for-private-header-inclusion.patch > new file mode 100644 > index 0000000..85c2714 > --- /dev/null > +++ b/package/qt5/qt5base/qt5base-0005-Use-the-correct-path-for-private-header-inclusion.patch > @@ -0,0 +1,32 @@ > +From 4a5fa73c7c65f2b58da5288199f6af993a737273 Mon Sep 17 00:00:00 2001 > +From: =?UTF-8?q?Fatih=20A=C5=9F=C4=B1c=C4=B1?= <fatih.asici@gmail.com> > +Date: Sat, 5 Oct 2013 13:39:44 +0300 > +Subject: [PATCH] Use the correct path for private header inclusion > +MIME-Version: 1.0 > +Content-Type: text/plain; charset=UTF-8 > +Content-Transfer-Encoding: 8bit > + > +Fixes the build when PNG support is disabled. > + > +Reported-Upstream: https://bugreports.qt-project.org/browse/QTBUG-33496 > +Signed-off-by: Fatih A??c? <fatih.asici@gmail.com> > +--- > + src/gui/kernel/qplatformtheme.cpp | 2 +- > + 1 file changed, 1 insertion(+), 1 deletion(-) > + > +diff --git a/src/gui/kernel/qplatformtheme.cpp b/src/gui/kernel/qplatformtheme.cpp > +index 02b69bc..46b59b5 100644 > +--- a/src/gui/kernel/qplatformtheme.cpp > ++++ b/src/gui/kernel/qplatformtheme.cpp > +@@ -48,7 +48,7 @@ > + #include <QtCore/qfileinfo.h> > + #include <qpalette.h> > + #include <qtextformat.h> > +-#include <qiconloader_p.h> > ++#include "private/qiconloader_p.h" > + > + QT_BEGIN_NAMESPACE > + > +-- > +1.8.4.rc3 > + > -- > 1.8.4.rc3 > This one lacks my Reported-by I think. Anyway: Tested-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Nice job! -- Ezequiel Garc?a, VanguardiaSur www.vanguardiasur.com.ar ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-10-28 0:11 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-10-05 21:16 [Buildroot] [PATCH 1/2] qt5base: fix build when PNG support is disabled Fatih Aşıcı 2013-10-05 21:16 ` [Buildroot] [PATCH 2/2] qt5base: add an option to build and install examples Fatih Aşıcı 2013-10-14 14:11 ` Ezequiel García 2013-10-14 16:42 ` Thomas Petazzoni 2013-10-14 17:02 ` Ezequiel García 2013-10-28 0:11 ` Ezequiel García 2013-10-14 14:08 ` [Buildroot] [PATCH 1/2] qt5base: fix build when PNG support is disabled Ezequiel García
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.