mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Add recipe for yamlloader, an ordered YAML loader and dumper for PyYAML. Changelog for 0.5.5: - As of Python version 3.7, the insertion order in dict is preserved by design. This is accounted for by allowing to dump and load to/from ordinary dictionaries in the same way as you do for OrderedDicts Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
14 lines
425 B
BlitzBasic
14 lines
425 B
BlitzBasic
SUMMARY = "Ordered YAML loader and dumper for PyYAML."
|
|
HOMEPAGE = "https://github.com/Phynix/yamlloader"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=6831ef36faa29329bce2420c5356f97e"
|
|
|
|
SRC_URI[md5sum] = "2e0750ace81235f750c072833d79c4c3"
|
|
SRC_URI[sha256sum] = "dcab5f16b39bb03d10dda4cd4f30c943675ec4c7771807fc67e7f1bb319bf4c8"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS_${PN}_class-target += "\
|
|
${PYTHON_PN}-pyyaml \
|
|
"
|