337aa51f3f
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for GPLv3/GPLv3+ is GPL-3.0/GPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv3\>/GPL-3.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 lines
441 B
Makefile
14 lines
441 B
Makefile
################################################################################
|
|
#
|
|
# python-slob
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SLOB_VERSION = 31ad0e769360a5b10a4893f686587bb8e48c3895
|
|
PYTHON_SLOB_SITE = $(call github,itkach,slob,$(PYTHON_SLOB_VERSION))
|
|
PYTHON_SLOB_LICENSE = GPL-3.0
|
|
PYTHON_SLOB_LICENSE_FILES = LICENSE
|
|
PYTHON_SLOB_SETUP_TYPE = distutils
|
|
|
|
$(eval $(python-package))
|