From: <yann.morin@orange.com>
To: <buildroot@buildroot.org>
Cc: "Yann E . MORIN" <yann.morin@orange.com>,
Danomi Manchego <danomimanchego123@gmail.com>,
Titouan Christophe <titouan.christophe@mind.be>,
Fiona Klute <fiona.klute@gmx.de>
Subject: [Buildroot] [PATCH 0/8 v2] package/mosquitto: bump version
Date: Mon, 23 Feb 2026 15:17:45 +0100 [thread overview]
Message-ID: <cover.1771856259.git.yann.morin@orange.com> (raw)
From: "Yann E. MORIN" <yann.morin@orange.com>
Hello All!
This series brings a new version of mosquitto; it is quite a big
endeavour, as it has switched to using cmake. With this, it becomes
possible to easily install only the parts of mosquitto that are needed,
and we do add some options to that effect;
- CLI tools to talk MQTT
- CLI apps to interact with the the daemon
- native websockets, or legacy using libwebsockets
- HTTP API
- plugins
The 2.1.x series is still quite recent, and has already accumulated
quite a few fixes; the most releveant ones have been backported. As
for the few patches I've authored, I'm still waiting for internal
validation of the Eclipse CLA before I can push them upstream...
Changes v1 -> v2:
- clarify help text about broker-related apps (Fiona)
Changes since RFC:
- add options for various parts
Regards,
Yann E. MORIN.
The following changes since commit bed675a240de6643792edd879cbe187b2ee6e0f5
package/c-ares: security bump to v1.34.6 (2026-02-22 21:56:31 +0100)
are available as patches in this mail series,
for you to apply patches up to 4a23d0cf09f1c12e1a93552b59113153b2078511
package/mosquitto: add option to enable the persist-sqlite plugin (2026-02-23 09:36:13 +0100)
----------------------------------------------------------------
Yann E. MORIN (8):
package/cjson: add host variant
package/mosquitto: bump to version 2.1.2
pakcage.mosquitto: add option to install CLI tools
package/mosquitto: add option to build broker-related apps
package/mosquitto: add option for websockets
package/mosquitto: enable HTTP API with libmicrohttpd
package/mosquitto: add options for password and ACL plugin
package/mosquitto: add option to enable the persist-sqlite plugin
package/cjson/cjson.mk | 7 +
.../0001-Fix-CMake-builds-with-WITH_TLS-OFF.patch | 50 -----
...T_DISCONNECT-being-called-before-MOSQ_EVT.patch | 41 ++++
.../0002-Add-configure-time-check-for-lanl.patch | 47 -----
...ntial-crash-if-group-id-has-no-group-name.patch | 36 ++++
...to_loop_start-leaving-the-mosq-struct-in-.patch | 62 ++++++
package/mosquitto/0004-Fix-missing-SONAME.patch | 139 ++++++++++++
...d-length-not-being-passed-to-MOSQ_EVT_BAS.patch | 234 +++++++++++++++++++++
...-outgoing-maximum-packet-size-limit-check.patch | 155 ++++++++++++++
...x-will-messages-being-incorrectly-delayed.patch | 213 +++++++++++++++++++
...ct-parsing-of-unix-socket-address-in-prox.patch | 30 +++
...eList-only-require-C-when-actually-needed.patch | 46 ++++
...0-broker-properly-check-for-getaddrinfo_a.patch | 38 ++++
.../0011-libcommon-check-for-getrandom.patch | 83 ++++++++
package/mosquitto/Config.in | 98 ++++++++-
package/mosquitto/mosquitto.hash | 7 +-
package/mosquitto/mosquitto.mk | 198 +++++++++--------
17 files changed, 1290 insertions(+), 194 deletions(-)
delete mode 100644 package/mosquitto/0001-Fix-CMake-builds-with-WITH_TLS-OFF.patch
create mode 100644 package/mosquitto/0001-Fix-MOSQ_EVT_DISCONNECT-being-called-before-MOSQ_EVT.patch
delete mode 100644 package/mosquitto/0002-Add-configure-time-check-for-lanl.patch
create mode 100644 package/mosquitto/0002-Fix-potential-crash-if-group-id-has-no-group-name.patch
create mode 100644 package/mosquitto/0003-Fix-mosquitto_loop_start-leaving-the-mosq-struct-in-.patch
create mode 100644 package/mosquitto/0004-Fix-missing-SONAME.patch
create mode 100644 package/mosquitto/0005-Fix-password-length-not-being-passed-to-MOSQ_EVT_BAS.patch
create mode 100644 package/mosquitto/0006-Fix-outgoing-maximum-packet-size-limit-check.patch
create mode 100644 package/mosquitto/0007-Fix-will-messages-being-incorrectly-delayed.patch
create mode 100644 package/mosquitto/0008-Fix-incorrect-parsing-of-unix-socket-address-in-prox.patch
create mode 100644 package/mosquitto/0009-CMakeList-only-require-C-when-actually-needed.patch
create mode 100644 package/mosquitto/0010-broker-properly-check-for-getaddrinfo_a.patch
create mode 100644 package/mosquitto/0011-libcommon-check-for-getrandom.patch
--
____________
.-----------------.--------------------: _ :------------------.
| Yann E. MORIN | Real-Time Embedded | __/ ) | /"\ ASCII RIBBON |
| | Software Designer | _/ - /' | \ / CAMPAIGN |
| +33 638.411.245 '--------------------: (_ `--, | X AGAINST |
| yann.morin (at) orange.com |_=" ,--' | / \ HTML MAIL |
'--------------------------------------:______/_____:------------------'
____________________________________________________________________________________________________________
Ce message et ses pieces jointes peuvent contenir des informations confidentielles ou privilegiees et ne doivent donc
pas etre diffuses, exploites ou copies sans autorisation. Si vous avez recu ce message par erreur, veuillez le signaler
a l'expediteur et le detruire ainsi que les pieces jointes. Les messages electroniques etant susceptibles d'alteration,
Orange decline toute responsabilite si ce message a ete altere, deforme ou falsifie. Merci.
This message and its attachments may contain confidential or privileged information that may be protected by law;
they should not be distributed, used or copied without authorisation.
If you have received this email in error, please notify the sender and delete this message and its attachments.
As emails may be altered, Orange is not liable for messages that have been modified, changed or falsified.
Thank you.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next reply other threads:[~2026-02-23 14:17 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-23 14:17 yann.morin [this message]
2026-02-23 14:17 ` [Buildroot] [PATCH 1/8 v2] package/cjson: add host variant yann.morin
2026-02-23 14:17 ` [Buildroot] [PATCH 2/8 v2] package/mosquitto: bump to version 2.1.2 yann.morin
2026-02-23 14:17 ` [Buildroot] [PATCH 3/8 v2] pakcage.mosquitto: add option to install CLI tools yann.morin
2026-02-23 14:17 ` [Buildroot] [PATCH 4/8 v2] package/mosquitto: add option to build broker-related apps yann.morin
2026-02-23 14:17 ` [Buildroot] [PATCH 5/8 v2] package/mosquitto: add option for websockets yann.morin
2026-02-23 14:17 ` [Buildroot] [PATCH 6/8 v2] package/mosquitto: enable HTTP API with libmicrohttpd yann.morin
2026-02-23 14:17 ` [Buildroot] [PATCH 7/8 v2] package/mosquitto: add options for password and ACL plugin yann.morin
2026-02-23 14:17 ` [Buildroot] [PATCH 8/8 v2] package/mosquitto: add option to enable the persist-sqlite plugin yann.morin
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=cover.1771856259.git.yann.morin@orange.com \
--to=yann.morin@orange.com \
--cc=buildroot@buildroot.org \
--cc=danomimanchego123@gmail.com \
--cc=fiona.klute@gmx.de \
--cc=titouan.christophe@mind.be \
/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 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.