summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/python/python-pyyaml_3.11.bb
diff options
context:
space:
mode:
authorZang Ruochen <zangrc.fnst@cn.fujitsu.com>2019-08-22 13:44:29 +0800
committerBruce Ashfield <bruce.ashfield@gmail.com>2019-08-25 22:22:44 -0400
commita822d7630b720e2c0b4618db92ca929dcd23a77d (patch)
tree2e8d8d994fab61b668e3bb0fb9478a4a4cee9605 /recipes-devtools/python/python-pyyaml_3.11.bb
parent6d6b2e1cb887a8d25277e3e71ce2602b42ceed1c (diff)
downloadmeta-virtualization-a822d7630b720e2c0b4618db92ca929dcd23a77d.tar.gz
python-pyyaml: upgrade 3.11 -> 5.1.2
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-devtools/python/python-pyyaml_3.11.bb')
-rw-r--r--recipes-devtools/python/python-pyyaml_3.11.bb32
1 files changed, 0 insertions, 32 deletions
diff --git a/recipes-devtools/python/python-pyyaml_3.11.bb b/recipes-devtools/python/python-pyyaml_3.11.bb
deleted file mode 100644
index ecb1719a..00000000
--- a/recipes-devtools/python/python-pyyaml_3.11.bb
+++ /dev/null
@@ -1,32 +0,0 @@
1HOMEPAGE = "http://www.pyyaml.org"
2SUMMARY = "Python support for YAML"
3DESCRIPTION = "\
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 "
16SECTION = "devel/python"
17LICENSE = "MIT"
18LIC_FILES_CHKSUM = "file://LICENSE;md5=6015f088759b10e0bc2bf64898d4ae17"
19
20SRCNAME = "PyYAML"
21SRC_URI = "http://pyyaml.org/download/pyyaml/${SRCNAME}-${PV}.tar.gz"
22
23SRC_URI[md5sum] = "f50e08ef0fe55178479d3a618efe21db"
24SRC_URI[sha256sum] = "c36c938a872e5ff494938b33b14aaa156cb439ec67548fcab3535bb78b0846e8"
25
26S = "${WORKDIR}/${SRCNAME}-${PV}"
27
28DEFAULT_PREFERENCE = "-1"
29
30inherit setuptools
31
32DEPENDS += "libyaml python-cython-native"