13c72e379b
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for AGPLv3 is AGPL-3.0. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/AGPLv3/AGPL-3.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 lines
659 B
Makefile
17 lines
659 B
Makefile
################################################################################
|
|
#
|
|
# python-crossbar
|
|
#
|
|
################################################################################
|
|
|
|
# don't bump version as newer setuptools package is needed,
|
|
# that still didn't make its way into Buildroot
|
|
PYTHON_CROSSBAR_VERSION = 0.14.0
|
|
PYTHON_CROSSBAR_SOURCE = crossbar-$(PYTHON_CROSSBAR_VERSION).tar.gz
|
|
PYTHON_CROSSBAR_SITE = https://pypi.python.org/packages/f0/9a/e0b77e15698c47b6293655bc0e1996dd8e87bd8af7bc7434a5c8281a024e
|
|
PYTHON_CROSSBAR_LICENSE = AGPL-3.0
|
|
PYTHON_CROSSBAR_LICENSE_FILES = LICENSE
|
|
PYTHON_CROSSBAR_SETUP_TYPE = setuptools
|
|
|
|
$(eval $(python-package))
|