summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@cn.fujitsu.com>2020-01-03 05:00:39 -0800
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-01-08 16:21:42 -0500
commit0df4b0ea71b33a66094cbbbf728f132b72aff368 (patch)
treed5123b35c2a245358c63cb52954bdbafa7beec2d /recipes-devtools
parentda2fc210f8f3292d017369a1fa1b490909a4f52c (diff)
downloadmeta-virtualization-0df4b0ea71b33a66094cbbbf728f132b72aff368.tar.gz
python-pyyaml: Remove the recipe
Because they already exist in meta-openembedded, remove the recipe. Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/python/python-pyyaml_5.1.2.bb32
1 files changed, 0 insertions, 32 deletions
diff --git a/recipes-devtools/python/python-pyyaml_5.1.2.bb b/recipes-devtools/python/python-pyyaml_5.1.2.bb
deleted file mode 100644
index 711675b0..00000000
--- a/recipes-devtools/python/python-pyyaml_5.1.2.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=a76b4c69bfcf82313bbdc0393b04438a"
19
20SRCNAME = "PyYAML"
21SRC_URI = "http://pyyaml.org/download/pyyaml/${SRCNAME}-${PV}.tar.gz"
22
23SRC_URI[md5sum] = "20f87ab421b0271dbf371dc5c1cddb5c"
24SRC_URI[sha256sum] = "01adf0b6c6f61bd11af6e10ca52b7d4057dd0be0343eb9283c878cf3af56aee4"
25
26S = "${WORKDIR}/${SRCNAME}-${PV}"
27
28DEFAULT_PREFERENCE = "-1"
29
30inherit setuptools
31
32DEPENDS += "libyaml python-cython-native"