Changelog:
* https://sqlparse.readthedocs.io/en/latest/changes.html#release-0-5-1-jul-15-2024
* https://sqlparse.readthedocs.io/en/latest/changes.html#release-0-5-0-apr-13-2024
Version 0.5.0 fixes the following security issue [1]:
Parsing heavily nested list leads to Denial of Service
Build backend switched from flit to hatchling in [2].
[1] https://github.com/andialbrecht/sqlparse/security/advisories/GHSA-2m57-hf25-phgg
[2] 326a316446
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
701 B
Makefile
18 lines
701 B
Makefile
################################################################################
|
|
#
|
|
# python-sqlparse
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SQLPARSE_VERSION = 0.5.1
|
|
PYTHON_SQLPARSE_SOURCE = sqlparse-$(PYTHON_SQLPARSE_VERSION).tar.gz
|
|
PYTHON_SQLPARSE_SITE = https://files.pythonhosted.org/packages/73/82/dfa23ec2cbed08a801deab02fe7c904bfb00765256b155941d789a338c68
|
|
PYTHON_SQLPARSE_SETUP_TYPE = pep517
|
|
PYTHON_SQLPARSE_LICENSE = BSD-3-Clause
|
|
PYTHON_SQLPARSE_LICENSE_FILES = LICENSE
|
|
PYTHON_SQLPARSE_DEPENDENCIES = host-python-hatchling
|
|
PYTHON_SQLPARSE_CPE_ID_VENDOR = sqlparse_project
|
|
PYTHON_SQLPARSE_CPE_ID_PRODUCT = sqlparse
|
|
|
|
$(eval $(python-package))
|