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

[0, 17, 16]: 2021-08-28 - also handle issue 397 when comment is newline [0, 17, 15]: 2021-08-28 - fix issue 397, insert comment before key when a comment between key and value exists (reported by `Bastien gerard <https://sourceforge.net/u/bagerard/>`__) [0, 17, 14]: 2021-08-25 - fix issue 396, inserting key/val in merged-in dictionary (reported by `Bastien gerard <https://sourceforge.net/u/bagerard/>`__) Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
24 lines
596 B
BlitzBasic
24 lines
596 B
BlitzBasic
SUMMARY = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order."
|
|
AUTHOR = "Anthon van der Neut"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=fa0a51dfb461e2f803969e0f3fa71dfe"
|
|
|
|
PYPI_PACKAGE = "ruamel.yaml"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
SRC_URI[sha256sum] = "1a771fc92d3823682b7f0893ad56cb5a5c87c48e62b5399d6f42c8759a583b33"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
${PYTHON_PN}-shell \
|
|
${PYTHON_PN}-datetime \
|
|
${PYTHON_PN}-netclient \
|
|
"
|
|
|
|
do_install:prepend() {
|
|
export RUAMEL_NO_PIP_INSTALL_CHECK=1
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|