mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
050286a953
The following paths have been replaced with PYTHON_SITEPACKAGES_DIR:
- "${libdir}/${PYTHON_DIR}/site-packages"
- "${libdir}/python${PYTHON_BASEVERSION}/site-packages"
- "${libdir}/python*/site-packages"
- "${libdir}/python3.*/site-packages"
Signed-off-by: alperak <alperyasinak1@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
44 lines
1.3 KiB
BlitzBasic
44 lines
1.3 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+git"
|
|
|
|
SRCREV = "2cd858c679d25633077ca78b67182a9b77653816"
|
|
SRC_URI = "git://github.com/libimobiledevice/libplist;protocol=https;branch=master"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
CVE_STATUS_GROUPS += "CVE_STATUS_LIBLIST"
|
|
CVE_STATUS_LIBLIST[status] = "fixed-version: The CPE in the NVD database doesn't reflect correctly the vulnerable versions."
|
|
CVE_STATUS_LIBLIST = " \
|
|
CVE-2017-5834 \
|
|
CVE-2017-5835 \
|
|
CVE-2017-5836 \
|
|
"
|
|
|
|
do_configure:prepend() {
|
|
rm -f ${S}/m4/ax_python_devel.m4
|
|
}
|
|
|
|
do_install:append () {
|
|
if [ -e ${D}${PYTHON_SITEPACKAGES_DIR}/plist/_plist.so ]; then
|
|
chrpath -d ${D}${PYTHON_SITEPACKAGES_DIR}/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 = "${PYTHON_SITEPACKAGES_DIR}/*"
|