From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Roy Kollen Svendsen <roykollensvendsen@gmail.com>
Cc: Roy Kollen Svendsen <roy.kollen.svendsen@akersolutions.com>,
Samuel Martin <s.martin49@gmail.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
buildroot@buildroot.org, Zoltan Gyarmati <zgyarmati@zgyarmati.de>,
Jesse Van Gavere <jesseevg@gmail.com>
Subject: Re: [Buildroot] [PATCH v5 09/14] package/qt6/qt6declarative: new package
Date: Sat, 1 Jun 2024 19:15:08 +0200 [thread overview]
Message-ID: <ZltXHCyhxx8XkbTm@landeda> (raw)
In-Reply-To: <20240531151325.2443323-9-roy.kollen.svendsen@akersolutions.com>
Roy, All,
On 2024-05-31 17:13 +0200, Roy Kollen Svendsen spake thusly:
> We add the patch to avoid checking for FEATURE_ssl when FEATURE_network
> is not available. FEATURE_ssl is defined by the Qt Network module. So
> we will get the following build failure if the patch is not applied and
> FEATURE_network=ON:
>
> CMake Error at qt6base-6.7.0/cmake/QtFeature.cmake:376 (message):
> Attempting to evaluate feature ssl but its definition is missing. Either
> the feature does not exist or a dependency to the module that defines it is
> missing
> Call Stack (most recent call first):
> qt6base-6.7.0/cmake/QtFeature.cmake:141 (qt_evaluate_feature)
> qt6base-6.7.0/cmake/QtFeature.cmake:180 (qt_internal_evaluate_config_expression)
> qt6base-6.7.0/cmake/QtFeature.cmake:396 (qt_evaluate_config_expression)
> qt6base-6.7.0/cmake/QtFeature.cmake:711 (qt_evaluate_feature)
> qt6base-6.7.0/cmake/QtFeature.cmake:680 (qt_feature_module_end)
> src/qml/CMakeLists.txt:13 (qt_feature_evaluate_features)
>
> To avoid the following build error, we also make sure the host qt6base is
> built with Testlib enabled:
>
> CMake Error at buildroot/output/build/qt6base-6.7.0/cmake/QtToolHelpers.cmake:684 (message):
> Failed to find the host tool "Qt6::qmltestrunner". It is part of the
This is the kind of explanation (even if a bit verbose) that we indeed
need for the requirement on the host qt6base having some modules
enabled. If you can provide that for the other packages, that would be
awesome!
Regards,
Yann E. MORIN.
> Qt6QmlTools package, but the package did not contain the tool. Make sure
> that the host module Qml was built with all features enabled (no explicitly
> disabled tools).
> Call Stack (most recent call first):
> buildroot/output/build/qt6base-6.7.0/cmake/QtToolHelpers.cmake:72 (qt_internal_find_tool)
> tools/qmltestrunner/CMakeLists.txt:11 (qt_internal_add_tool)
>
> Signed-off-by: Roy Kollen Svendsen <roy.kollen.svendsen@akersolutions.com>
> ---
> Changes v4 -> v5:
> - Bump to v6.7.1
>
> package/qt6/Config.in | 1 +
> ...1-Fix-build-with--no-feature-network.patch | 28 ++++++++++
> package/qt6/qt6declarative/Config.in | 24 ++++++++
> .../qt6/qt6declarative/qt6declarative.hash | 11 ++++
> package/qt6/qt6declarative/qt6declarative.mk | 56 +++++++++++++++++++
> 5 files changed, 120 insertions(+)
> create mode 100644 package/qt6/qt6declarative/0001-Fix-build-with--no-feature-network.patch
> create mode 100644 package/qt6/qt6declarative/Config.in
> create mode 100644 package/qt6/qt6declarative/qt6declarative.hash
> create mode 100644 package/qt6/qt6declarative/qt6declarative.mk
>
> diff --git a/package/qt6/Config.in b/package/qt6/Config.in
> index 81682af476..625134d281 100644
> --- a/package/qt6/Config.in
> +++ b/package/qt6/Config.in
> @@ -45,6 +45,7 @@ if BR2_PACKAGE_QT6
>
> source "package/qt6/qt6base/Config.in"
> source "package/qt6/qt6core5compat/Config.in"
> +source "package/qt6/qt6declarative/Config.in"
> source "package/qt6/qt6languageserver/Config.in"
> source "package/qt6/qt6serialbus/Config.in"
> source "package/qt6/qt6serialport/Config.in"
> diff --git a/package/qt6/qt6declarative/0001-Fix-build-with--no-feature-network.patch b/package/qt6/qt6declarative/0001-Fix-build-with--no-feature-network.patch
> new file mode 100644
> index 0000000000..bef5794229
> --- /dev/null
> +++ b/package/qt6/qt6declarative/0001-Fix-build-with--no-feature-network.patch
> @@ -0,0 +1,28 @@
> +From 8377691a0998fd84e6fc8349a5db450bf2d79164 Mon Sep 17 00:00:00 2001
> +From: Tasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>
> +Date: Tue, 21 Nov 2023 23:58:43 +0900
> +Subject: Fix build with -no-feature-network
> +
> +Change-Id: Ib21012301da6afb5458f707b39a9a8079d93eb93
> +Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
> +Upstream: https://code.qt.io/cgit/qt/qtdeclarative.git/commit/?id=8377691a0998fd84e6fc8349a5db450bf2d79164
> +Signed-off-by: Roy Kollen Svendsen <roy.kollen.svendsen@akersolutions.com>
> +---
> + src/qml/configure.cmake | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/src/qml/configure.cmake b/src/qml/configure.cmake
> +index 2d0434643a..d1ff90bd54 100644
> +--- a/src/qml/configure.cmake
> ++++ b/src/qml/configure.cmake
> +@@ -82,7 +82,7 @@ qt_feature("qml-ssl" PUBLIC
> + SECTION "QML"
> + LABEL "QML SSL support"
> + PURPOSE "Provides ssl support in QML."
> +- CONDITION QT_FEATURE_ssl
> ++ CONDITION QT_FEATURE_qml_network AND QT_FEATURE_ssl
> + )
> +
> + # On arm and arm64 we need a specialization of cacheFlush() for each OS to be
> +--
> +cgit v1.2.3
> diff --git a/package/qt6/qt6declarative/Config.in b/package/qt6/qt6declarative/Config.in
> new file mode 100644
> index 0000000000..1daa645413
> --- /dev/null
> +++ b/package/qt6/qt6declarative/Config.in
> @@ -0,0 +1,24 @@
> +config BR2_PACKAGE_QT6DECLARATIVE
> + bool "qt6declarative"
> + # Enable host test module to ensure that qmltestrunner is built
> + select BR2_PACKAGE_HOST_QT6BASE_TEST if BR2_PACKAGE_QT6BASE_TEST
> + help
> + Qt is a cross-platform application and UI framework for
> + developers using C++.
> +
> + This package corresponds to the qt6declarative module.
> +
> + https://doc.qt.io/qt-6/qtdeclarative-index.html
> +
> +if BR2_PACKAGE_QT6DECLARATIVE
> +
> +config BR2_PACKAGE_QT6DECLARATIVE_QUICK
> + bool "quick module"
> + select BR2_PACKAGE_QT6BASE_GUI
> + select BR2_PACKAGE_QT6LANGUAGESERVER
> + select BR2_PACKAGE_QT6SHADERTOOLS
> + select BR2_PACKAGE_QT6BASE_OPENGL if BR2_PACKAGE_QT6_GL_SUPPORTS
> + select BR2_PACKAGE_HOST_QT6SVG
> + select BR2_PACKAGE_HOST_QT6DECLARATIVE
> +
> +endif
> diff --git a/package/qt6/qt6declarative/qt6declarative.hash b/package/qt6/qt6declarative/qt6declarative.hash
> new file mode 100644
> index 0000000000..480e3805ca
> --- /dev/null
> +++ b/package/qt6/qt6declarative/qt6declarative.hash
> @@ -0,0 +1,11 @@
> +# Hash from: https://download.qt.io/official_releases/qt/6.7/6.7.1/submodules/qtdeclarative-everywhere-src-6.7.1.tar.xz.sha256
> +sha256 81135c96ed2f599385b8a68c57f4f438dad193c62f946f5b200a321558fd9f1c qtdeclarative-everywhere-src-6.7.1.tar.xz
> +
> +# Hashes for license files:
> +sha256 9f0490f18656c6f2435bd14f603ef0c96434d1825615363dce43abb42ed1dcce LICENSES/BSD-3-Clause.txt
> +sha256 110535522396708cea37c72a802c5e7e81391139f5f7985631c93ef242b206a4 LICENSES/GFDL-1.3-no-invariants-only.txt
> +sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSES/GPL-2.0-only.txt
> +sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSES/GPL-3.0-only.txt
> +sha256 da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768 LICENSES/LGPL-3.0-only.txt
> +sha256 9b1f50aae6267f9d5e0ceb6775ee86450262c25ec7c0573e151fe5d3f18a4700 LICENSES/LicenseRef-Qt-Commercial.txt
> +sha256 40678d338ce53cd93f8b22b281a2ecbcaa3ee65ce60b25ffb0c462b0530846b2 LICENSES/Qt-GPL-exception-1.0.txt
> diff --git a/package/qt6/qt6declarative/qt6declarative.mk b/package/qt6/qt6declarative/qt6declarative.mk
> new file mode 100644
> index 0000000000..2348ff2dae
> --- /dev/null
> +++ b/package/qt6/qt6declarative/qt6declarative.mk
> @@ -0,0 +1,56 @@
> +################################################################################
> +#
> +# qt6declaratve
> +#
> +################################################################################
> +
> +QT6DECLARATIVE_VERSION = $(QT6_VERSION)
> +QT6DECLARATIVE_SITE = $(QT6_SITE)
> +QT6DECLARATIVE_SOURCE = qtdeclarative-$(QT6_SOURCE_TARBALL_PREFIX)-$(QT6DECLARATIVE_VERSION).tar.xz
> +QT6DECLARATIVE_INSTALL_STAGING = YES
> +
> +QT6DECLARATIVE_SUPPORTS_IN_SOURCE_BUILD = NO
> +
> +QT6DECLARATIVE_CMAKE_BACKEND = ninja
> +
> +QT6DECLARATIVE_LICENSE = \
> + GPL-2.0+ or LGPL-3.0, \
> + GPL-3.0, GFDL-1.3 no invariants (docs)
> +
> +QT6DECLARATIVE_LICENSE_FILES = \
> + LICENSES/GPL-2.0-only.txt \
> + LICENSES/GPL-3.0-only.txt \
> + LICENSES/LGPL-3.0-only.txt \
> + LICENSES/GFDL-1.3-no-invariants-only.txt
> +
> +QT6DECLARATIVE_CONF_OPTS = \
> + -DQT_FEATURE_qml_profiler=OFF \
> + -DQT_HOST_PATH=$(HOST_DIR) \
> + -DBUILD_WITH_PCH=OFF \
> + -DQT_BUILD_EXAMPLES=OFF \
> + -DQT_BUILD_TESTS=OFF
> +
> +HOST_QT6DECLARATIVE_CONF_OPTS = \
> + -DQT_HOST_PATH=$(HOST_DIR) \
> + -DBUILD_WITH_PCH=OFF \
> + -DQT_BUILD_EXAMPLES=OFF \
> + -DQT_BUILD_TESTS=OFF \
> + -DQT_FEATURE_ssl=OFF
> +
> +QT6DECLARATIVE_DEPENDENCIES = \
> + host-qt6base \
> + host-qt6svg \
> + host-qt6shadertools \
> + host-qt6declarative \
> + qt6base \
> + qt6shadertools \
> + qt6languageserver \
> + qt6svg
> +
> +HOST_QT6DECLARATIVE_DEPENDENCIES = \
> + host-qt6base \
> + host-qt6svg \
> + host-qt6shadertools
> +
> +$(eval $(cmake-package))
> +$(eval $(host-cmake-package))
> --
> 2.45.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2024-06-01 17:15 UTC|newest]
Thread overview: 114+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1934329>
2024-05-13 22:03 ` [Buildroot] [PATCH v4 01/14] package/qt6: bump version to 6.7.0 Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 02/14] package/qt6/qt6base: add blind option to enable GUI support on host Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 03/14] package/qt6/qt6base: add blind option to enable Network " Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 04/14] package/qt6/qt6base: add blind option to enable Test " Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 05/14] package/qt6/qt6base: add blind option to enable Sql " Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 06/14] package/qt6/qt6shadertools: new package Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 07/14] package/qt6/qt6svg: allow building for host Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 08/14] package/qt6/qt6languageserver: new package Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 09/14] package/qt6/qt6declarative: " Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 10/14] package/qt6/qt6websockets: " Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 11/14] package/qt6/qt6wayland: " Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 12/14] package/qt6/qt6tools: " Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 13/14] package/qt6/qt6virtualkeyboard: " Roy Kollen Svendsen
2024-05-13 22:03 ` [Buildroot] [PATCH v4 14/14] package/qt6/qt6mqtt: " Roy Kollen Svendsen
2024-05-13 22:13 ` [Buildroot] [PATCH v4 01/14] package/qt6: bump version to 6.7.0 Jesse Van Gavere
2024-05-31 15:13 ` [Buildroot] [PATCH v5 01/14] package/qt6: bump version to 6.7.1 Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 02/14] package/qt6/qt6base: add blind option to enable GUI support on host Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 03/14] package/qt6/qt6base: add blind option to enable Network " Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 04/14] package/qt6/qt6base: add blind option to enable Test " Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 05/14] package/qt6/qt6base: add blind option to enable Sql " Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 06/14] package/qt6/qt6shadertools: new package Roy Kollen Svendsen
2024-06-01 17:10 ` Yann E. MORIN
2024-06-01 22:48 ` Roy Kollen Svendsen
2024-06-02 8:24 ` Yann E. MORIN
2024-06-03 12:24 ` Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 07/14] package/qt6/qt6svg: allow building for host Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 08/14] package/qt6/qt6languageserver: new package Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 09/14] package/qt6/qt6declarative: " Roy Kollen Svendsen
2024-06-01 17:15 ` Yann E. MORIN [this message]
2024-06-02 8:03 ` Roy Kollen Svendsen
2024-06-03 9:24 ` Roy Kollen Svendsen
2024-06-03 9:59 ` Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 01/14] package/qt6: bump version to 6.7.1 Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 02/14] package/qt6/qt6base: add blind option to enable GUI support on host Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 03/14] package/qt6/qt6base: add blind option to enable Network " Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 04/14] package/qt6/qt6base: add blind option to enable Test " Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 05/14] package/qt6/qt6base: add blind option to enable Sql " Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 06/14] package/qt6/qt6shadertools: new package Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 07/14] package/qt6/qt6svg: allow building for host Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 08/14] package/qt6/qt6languageserver: new package Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 09/14] package/qt6/qt6declarative: " Roy Kollen Svendsen
2024-06-13 22:01 ` Hannah Kiekens via buildroot
2024-06-16 6:55 ` Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 01/14] package/qt6: bump version to 6.7.1 Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 02/14] package/qt6/qt6base: add blind option to enable GUI support on host Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 03/14] package/qt6/qt6base: add blind option to enable Network " Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 04/14] package/qt6/qt6base: add blind option to enable Test " Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 05/14] package/qt6/qt6base: add blind option to enable Sql " Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 06/14] package/qt6/qt6shadertools: new package Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 07/14] package/qt6/qt6svg: allow building for host Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 08/14] package/qt6/qt6languageserver: new package Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 09/14] package/qt6/qt6declarative: " Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 01/14] package/qt6: bump version to 6.7.1 Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 02/14] package/qt6/qt6base: add blind option to enable GUI support on host Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 03/14] package/qt6/qt6base: add blind option to enable Network " Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 04/14] package/qt6/qt6base: add blind option to enable Test " Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 05/14] package/qt6/qt6base: add blind option to enable Sql " Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 06/14] package/qt6/qt6shadertools: new package Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 07/14] package/qt6/qt6svg: allow building for host Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 08/14] package/qt6/qt6languageserver: new package Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 09/14] package/qt6/qt6declarative: " Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 10/14] package/qt6/qt6websockets: " Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 11/14] package/qt6/qt6wayland: " Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 12/14] package/qt6/qt6tools: " Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 13/14] package/qt6/qt6virtualkeyboard: " Roy Kollen Svendsen
2024-06-18 21:26 ` [Buildroot] [PATCH v8 14/14] package/qt6/qt6mqtt: " Roy Kollen Svendsen
2024-06-25 21:18 ` [Buildroot] [PATCH v9 01/14] package/qt6: bump version to 6.7.2 Roy Kollen Svendsen
2024-06-25 21:18 ` [Buildroot] [PATCH v9 02/14] package/qt6/qt6base: add blind option to enable GUI support on host Roy Kollen Svendsen
2024-07-12 8:47 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 03/14] package/qt6/qt6base: add blind option to enable Network " Roy Kollen Svendsen
2024-07-12 8:47 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 04/14] package/qt6/qt6base: add blind option to enable Test " Roy Kollen Svendsen
2024-07-12 8:47 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 05/14] package/qt6/qt6base: add blind option to enable Sql " Roy Kollen Svendsen
2024-07-12 8:47 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 06/14] package/qt6/qt6shadertools: new package Roy Kollen Svendsen
2024-07-12 8:51 ` Thomas Petazzoni via buildroot
2024-07-14 8:33 ` Roy Kollen Svendsen
2024-08-28 11:14 ` Roy Kollen Svendsen
2024-06-25 21:18 ` [Buildroot] [PATCH v9 07/14] package/qt6/qt6svg: allow building for host Roy Kollen Svendsen
2024-07-12 8:51 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 08/14] package/qt6/qt6languageserver: new package Roy Kollen Svendsen
2024-07-12 8:59 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 09/14] package/qt6/qt6declarative: " Roy Kollen Svendsen
2024-07-12 10:02 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 10/14] package/qt6/qt6websockets: " Roy Kollen Svendsen
2024-07-12 10:03 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 11/14] package/qt6/qt6wayland: " Roy Kollen Svendsen
2024-07-12 10:05 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 12/14] package/qt6/qt6tools: " Roy Kollen Svendsen
2024-07-12 10:24 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 13/14] package/qt6/qt6virtualkeyboard: " Roy Kollen Svendsen
2024-07-12 10:43 ` Thomas Petazzoni via buildroot
2024-06-25 21:18 ` [Buildroot] [PATCH v9 14/14] package/qt6/qt6mqtt: " Roy Kollen Svendsen
2024-07-12 10:54 ` Thomas Petazzoni via buildroot
2024-07-12 8:45 ` [Buildroot] [PATCH v9 01/14] package/qt6: bump version to 6.7.2 Thomas Petazzoni via buildroot
2024-07-12 9:20 ` Thomas Petazzoni via buildroot
2024-07-14 9:08 ` Roy Kollen Svendsen
2024-07-14 12:46 ` Thomas Petazzoni via buildroot
2024-06-18 13:18 ` [Buildroot] [PATCH v7 10/14] package/qt6/qt6websockets: new package Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 11/14] package/qt6/qt6wayland: " Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 12/14] package/qt6/qt6tools: " Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 13/14] package/qt6/qt6virtualkeyboard: " Roy Kollen Svendsen
2024-06-18 13:18 ` [Buildroot] [PATCH v7 14/14] package/qt6/qt6mqtt: " Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 10/14] package/qt6/qt6websockets: " Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 11/14] package/qt6/qt6wayland: " Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 12/14] package/qt6/qt6tools: " Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 13/14] package/qt6/qt6virtualkeyboard: " Roy Kollen Svendsen
2024-06-03 11:51 ` [Buildroot] [PATCH v6 14/14] package/qt6/qt6mqtt: " Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 10/14] package/qt6/qt6websockets: " Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 11/14] package/qt6/qt6wayland: " Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 12/14] package/qt6/qt6tools: " Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 13/14] package/qt6/qt6virtualkeyboard: " Roy Kollen Svendsen
2024-05-31 15:13 ` [Buildroot] [PATCH v5 14/14] package/qt6/qt6mqtt: " Roy Kollen Svendsen
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=ZltXHCyhxx8XkbTm@landeda \
--to=yann.morin.1998@free.fr \
--cc=buildroot@buildroot.org \
--cc=jesseevg@gmail.com \
--cc=roy.kollen.svendsen@akersolutions.com \
--cc=roykollensvendsen@gmail.com \
--cc=s.martin49@gmail.com \
--cc=thomas.petazzoni@bootlin.com \
--cc=zgyarmati@zgyarmati.de \
/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