mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-01 13:49:03 +03:00
Fixes CVE-2017-18342: In PyYAML before 4.1, the yaml.load() API
could execute arbitrary code.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 1cf071726d)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
16 lines
570 B
Makefile
16 lines
570 B
Makefile
################################################################################
|
|
#
|
|
# python-pyyaml
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_PYYAML_VERSION = 4.2b4
|
|
PYTHON_PYYAML_SOURCE = PyYAML-$(PYTHON_PYYAML_VERSION).tar.gz
|
|
PYTHON_PYYAML_SITE = https://files.pythonhosted.org/packages/a8/c6/a8d1555e795dbd0375c3c93b576ca13bbf139db51ea604afa19a2c35fc03
|
|
PYTHON_PYYAML_SETUP_TYPE = distutils
|
|
PYTHON_PYYAML_LICENSE = MIT
|
|
PYTHON_PYYAML_LICENSE_FILES = LICENSE
|
|
PYTHON_PYYAML_DEPENDENCIES = libyaml
|
|
|
|
$(eval $(python-package))
|