package/qt6/qt6mqtt: new package

Signed-off-by: Roy Kollen Svendsen <roykollensvendsen@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Roy Kollen Svendsen 2024-06-25 23:18:38 +02:00 committed by Thomas Petazzoni
parent 4d609f369c
commit ba8e85bc06
5 changed files with 56 additions and 0 deletions

View File

@ -47,6 +47,7 @@ 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/qt6mqtt/Config.in"
source "package/qt6/qt6serialbus/Config.in"
source "package/qt6/qt6serialport/Config.in"
source "package/qt6/qt6shadertools/Config.in"

View File

@ -9,4 +9,6 @@ QT6_VERSION = $(QT6_VERSION_MAJOR).2
QT6_SOURCE_TARBALL_PREFIX = everywhere-src
QT6_SITE = https://download.qt.io/archive/qt/$(QT6_VERSION_MAJOR)/$(QT6_VERSION)/submodules
QT6_GIT = git://code.qt.io
include $(sort $(wildcard package/qt6/*/*.mk))

View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_QT6MQTT
bool "qt6mqtt"
select BR2_PACKAGE_QT6BASE_NETWORK
help
Qt is a cross-platform application and UI framework for
developers using C++.
This package corresponds to the qt6mqtt module.
https://doc.qt.io/qt-6/qtmqtt-index.html

View File

@ -0,0 +1,8 @@
sha256 be2d3f12378a8e2a103c328201b1e308f8c6c09bd752322592b3164cebba5bde qt6mqtt-6.7.2-git4.tar.gz
# Hashes for license files:
sha256 9f0490f18656c6f2435bd14f603ef0c96434d1825615363dce43abb42ed1dcce LICENSES/BSD-3-Clause.txt
sha256 110535522396708cea37c72a802c5e7e81391139f5f7985631c93ef242b206a4 LICENSES/GFDL-1.3-no-invariants-only.txt
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSES/GPL-3.0-only.txt
sha256 9b1f50aae6267f9d5e0ceb6775ee86450262c25ec7c0573e151fe5d3f18a4700 LICENSES/LicenseRef-Qt-Commercial.txt
sha256 40678d338ce53cd93f8b22b281a2ecbcaa3ee65ce60b25ffb0c462b0530846b2 LICENSES/Qt-GPL-exception-1.0.txt

View File

@ -0,0 +1,35 @@
################################################################################
#
# qt6mqtt
#
################################################################################
QT6MQTT_VERSION = $(QT6_VERSION)
QT6MQTT_SITE = $(QT6_GIT)/qt/qtmqtt.git
QT6MQTT_INSTALL_STAGING = YES
QT6MQTT_SUPPORTS_IN_SOURCE_BUILD = NO
QT6MQTT_CMAKE_BACKEND = ninja
QT6MQTT_LICENSE = \
BSD-3-Clause (examples), \
GFDL-1.3-invariants-only (docs), \
GPL-3.0
QT6MQTT_LICENSE_FILES = \
LICENSES/BSD-3-Clause.txt \
LICENSES/GFDL-1.3-no-invariants-only.txt \
LICENSES/GPL-3.0-only.txt
QT6MQTT_CONF_OPTS = \
-DQT_HOST_PATH=$(HOST_DIR) \
-DBUILD_WITH_PCH=OFF \
-DQT_BUILD_EXAMPLES=OFF \
-DQT_BUILD_TESTS=OFF
QT6MQTT_DEPENDENCIES = \
qt6base
$(eval $(cmake-package))