mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-23 15:54:21 -09:00
package/python-paho-mqtt is dual-licensed, so licenses should be
connected by "or". EDL v1.0 is a BSD-3-Clause license, as confirmed by
the ESF [1] (see listed SPDX License Identifier), also confirmed as
intended in the pyproject.toml file [2].
[1] https://www.eclipse.org/org/documents/edl-v10/
[2] af64a4365c/pyproject.toml (L10-L12)
Signed-off-by: Fiona Klute (Othermo GmbH) <fiona.klute@gmx.de>
Signed-off-by: Julien Olivain <ju.o@free.fr>
15 lines
536 B
Makefile
15 lines
536 B
Makefile
################################################################################
|
|
#
|
|
# python-paho-mqtt
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_PAHO_MQTT_VERSION = 2.1.0
|
|
PYTHON_PAHO_MQTT_SITE = $(call github,eclipse,paho.mqtt.python,v$(PYTHON_PAHO_MQTT_VERSION))
|
|
# LICENSE.txt, EDLv1.0 is a BSD-3-Clause license
|
|
PYTHON_PAHO_MQTT_LICENSE = EPL-2.0 or BSD-3-Clause
|
|
PYTHON_PAHO_MQTT_LICENSE_FILES = LICENSE.txt epl-v20 edl-v10
|
|
PYTHON_PAHO_MQTT_SETUP_TYPE = hatch
|
|
|
|
$(eval $(python-package))
|