| Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 1 | HOMEPAGE = "http://www.pyyaml.org" | 
 | 2 | SUMMARY = "Python support for YAML" | 
 | 3 | DESCRIPTION = "\ | 
 | 4 |   YAML is a data serialization format designed for human readability \ | 
 | 5 |   and interaction with scripting languages.  PyYAML is a YAML parser \ | 
 | 6 |   and emitter for Python. \ | 
 | 7 |   .       \ | 
 | 8 |   PyYAML features a complete YAML 1.1 parser, Unicode support, pickle \ | 
 | 9 |   support, capable extension API, and sensible error messages.  PyYAML \ | 
 | 10 |   supports standard YAML tags and provides Python-specific tags that \ | 
 | 11 |   allow to represent an arbitrary Python object. \ | 
 | 12 |   .       \ | 
 | 13 |   PyYAML is applicable for a broad range of tasks from complex \ | 
 | 14 |   configuration files to object serialization and persistance. \ | 
 | 15 |   " | 
 | 16 | SECTION = "devel/python" | 
 | 17 | LICENSE = "MIT" | 
 | 18 | LIC_FILES_CHKSUM = "file://LICENSE;md5=6015f088759b10e0bc2bf64898d4ae17" | 
 | 19 |  | 
 | 20 | SRCNAME = "PyYAML" | 
| Brad Bishop | 6678373 | 2017-12-04 02:22:08 -0500 | [diff] [blame] | 21 | SRC_URI = "https://pyyaml.org/download/pyyaml/${SRCNAME}-${PV}.tar.gz" | 
| Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 22 |  | 
 | 23 | SRC_URI[md5sum] = "f50e08ef0fe55178479d3a618efe21db" | 
 | 24 | SRC_URI[sha256sum] = "c36c938a872e5ff494938b33b14aaa156cb439ec67548fcab3535bb78b0846e8" | 
 | 25 |  | 
 | 26 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 
 | 27 |  | 
 | 28 | inherit setuptools | 
 | 29 |  | 
 | 30 | DEPENDS += "libyaml python-cython-native" |