From c55e848fcdc23db8ecbdb6695198d9aeed037a0b Mon Sep 17 00:00:00 2001 From: Ricardo Salveti Date: Tue, 10 Sep 2019 16:40:10 -0300 Subject: [PATCH] python3-pyyaml: add 4.2b2 5.1.2 (which is now in meta-oe) is not really recommended by upstream due incompatibilities caused by the release, which are supposed to be fixed in 5.2, but which is pending to be released. More at https://github.com/yaml/pyyaml/issues/265 Signed-off-by: Ricardo Salveti --- .../python/python3-pyyaml_4.2b2.bb | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 recipes-devtools/python/python3-pyyaml_4.2b2.bb diff --git a/recipes-devtools/python/python3-pyyaml_4.2b2.bb b/recipes-devtools/python/python3-pyyaml_4.2b2.bb new file mode 100644 index 0000000000..31b0189f3a --- /dev/null +++ b/recipes-devtools/python/python3-pyyaml_4.2b2.bb @@ -0,0 +1,30 @@ +HOMEPAGE = "http://www.pyyaml.org" +SUMMARY = "Python support for YAML" +DESCRIPTION = "\ + YAML is a data serialization format designed for human readability \ + and interaction with scripting languages. PyYAML is a YAML parser \ + and emitter for Python. \ + . \ + PyYAML features a complete YAML 1.1 parser, Unicode support, pickle \ + support, capable extension API, and sensible error messages. PyYAML \ + supports standard YAML tags and provides Python-specific tags that \ + allow to represent an arbitrary Python object. \ + . \ + PyYAML is applicable for a broad range of tasks from complex \ + configuration files to object serialization and persistance. \ + " +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=a76b4c69bfcf82313bbdc0393b04438a" + +SRCNAME = "PyYAML" +SRC_URI = "http://pyyaml.org/download/pyyaml/${SRCNAME}-${PV}.tar.gz" + +SRC_URI[md5sum] = "20f87ab421b0271dbf371dc5c1cddb5c" +SRC_URI[sha256sum] = "01adf0b6c6f61bd11af6e10ca52b7d4057dd0be0343eb9283c878cf3af56aee4" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools + +DEPENDS += "libyaml python-cython-native"