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..4496ed5e71 --- /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=5591701d32590f9fa94f3bfee820b634" + +SRCNAME = "pyyaml" +SRC_URI = "https://github.com/yaml/pyyaml/archive/${PV}.tar.gz" + +SRC_URI[md5sum] = "465f512c69e7ce426541407d7a39fbf7" +SRC_URI[sha256sum] = "2d3ccbb9705eceaf36e495cfaba30277a59aa3f0a5e3c8cfffe760d89625e3d2" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools + +DEPENDS += "libyaml python-cython-native"