96e9480fbc
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-2c is BSD-2-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-2c/BSD-2-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
545 B
Makefile
15 lines
545 B
Makefile
################################################################################
|
|
#
|
|
# python-futures
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_FUTURES_VERSION = 3.0.5
|
|
PYTHON_FUTURES_SOURCE = futures-$(PYTHON_FUTURES_VERSION).tar.gz
|
|
PYTHON_FUTURES_SITE = https://pypi.python.org/packages/55/db/97c1ca37edab586a1ae03d6892b6633d8eaa23b23ac40c7e5bbc55423c78
|
|
PYTHON_FUTURES_SETUP_TYPE = setuptools
|
|
PYTHON_FUTURES_LICENSE = BSD-2-Clause
|
|
PYTHON_FUTURES_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|