9f59b378a3
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-3c is BSD-3-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-3c/BSD-3-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
563 B
Makefile
15 lines
563 B
Makefile
################################################################################
|
|
#
|
|
# python-cssselect
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_CSSSELECT_VERSION = 1.0.1
|
|
PYTHON_CSSSELECT_SOURCE = cssselect-$(PYTHON_CSSSELECT_VERSION).tar.gz
|
|
PYTHON_CSSSELECT_SITE = https://pypi.python.org/packages/77/ff/9c865275cd19290feba56344eba570e719efb7ca5b34d67ed12b22ebbb0d
|
|
PYTHON_CSSSELECT_SETUP_TYPE = setuptools
|
|
PYTHON_CSSSELECT_LICENSE = BSD-3-Clause
|
|
PYTHON_CSSSELECT_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|