mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-21 13:50:22 +00:00
Changelog: ========= - Changes: * Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val() * Add support for JSON format * Add support for OpenStep format * Introduce error codes and format constants * Add return value to import/export functions to allow returning error codes * Add new plist_sort function * Add several human-readable output-only formats * Add new plist_write_to_string/_stream/_file functions * Add new plist_print function * Add new plist_read_from_file function * Add new plist_mem_free() function * Add a few C++ methods * Add C++ interface test * Add PLIST_NULL type * Some code housekeeping (mostly clang-tidy) - Breaking: * plist_from_memory() gets additional parameter - Bugfixes: * Fix multiple bugs in all of the parsers * Fix handling of PLIST_UID nodes Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
38 lines
1.1 KiB
BlitzBasic
38 lines
1.1 KiB
BlitzBasic
SUMMARY = "A library to handle Apple Property List format whereas it's binary or XML"
|
|
HOMEPAGE = "https://github.com/libimobiledevice/libplist"
|
|
LICENSE = "GPL-2.0-only & LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=ebb5c50ab7cab4baeffba14977030c07 \
|
|
file://COPYING.LESSER;md5=6ab17b41640564434dda85c06b7124f7"
|
|
|
|
DEPENDS = "libxml2 glib-2.0 swig python3"
|
|
|
|
inherit autotools pkgconfig python3native python3targetconfig
|
|
|
|
PV = "2.3.0"
|
|
|
|
SRCREV = "72480212cd8ec0ab8d0b5064df52c146cac603b4"
|
|
SRC_URI = "git://github.com/libimobiledevice/libplist;protocol=https;branch=master"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
CVE_CHECK_IGNORE += "\
|
|
CVE-2017-5834 \
|
|
CVE-2017-5835 \
|
|
CVE-2017-5836 \
|
|
"
|
|
|
|
do_install:append () {
|
|
if [ -e ${D}${libdir}/python*/site-packages/plist/_plist.so ]; then
|
|
chrpath -d ${D}${libdir}/python*/site-packages/plist/_plist.so
|
|
fi
|
|
}
|
|
|
|
PACKAGES =+ "${PN}-utils \
|
|
${PN}++ \
|
|
${PN}-python"
|
|
|
|
FILES:${PN} = "${libdir}/libplist-2.0${SOLIBS}"
|
|
FILES:${PN}++ = "${libdir}/libplist++-2.0${SOLIBS}"
|
|
FILES:${PN}-utils = "${bindir}/*"
|
|
FILES:${PN}-python = "${libdir}/python*/site-packages/*"
|