mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-15 06:10:02 +00:00
e5a12d5252
Our hash does not point to exact tag and CVE patch is already in. We use: 33a8a275928b186381bb0aea0f9778e330e57ec3 Fix: https://github.com/labapart/gattlib/commit/60b813a770e42fdb0e85c1d2da7a55327784b8d6 git describe --tags --match=v0.2 33a8a275928b186381bb0aea0f9778e330e57ec3 60b813a770e42fdb0e85c1d2da7a55327784b8d6 v0.2-262-g33a8a27 v0.2-85-g60b813a Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
41 lines
1.3 KiB
BlitzBasic
41 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "Bluetooth library with attribute support"
|
|
SECTION = "libs/network"
|
|
|
|
LICENSE = "GPL-2.0-or-later | BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://CMakeLists.txt;beginline=1;endline=6;md5=a87ee154f005a6f035b8b34ac2191f3b"
|
|
|
|
DEPENDS = "bluez5 glib-2.0 glib-2.0-native python3-packaging-native"
|
|
|
|
PV = "0.2+git"
|
|
|
|
SRC_URI = "git://github.com/labapart/gattlib.git;branch=master;protocol=https \
|
|
file://dbus-avoid-strange-chars-from-the-build-dir.patch \
|
|
"
|
|
|
|
SRCBRANCH = "master"
|
|
SRCREV = "33a8a275928b186381bb0aea0f9778e330e57ec3"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
CVE_STATUS[CVE-2019-6498] = "fixed-version: patch is already included in sources"
|
|
|
|
PACKAGECONFIG[examples] = "-DGATTLIB_BUILD_EXAMPLES=ON,-DGATTLIB_BUILD_EXAMPLES=OFF"
|
|
|
|
# Set this to force use of DBus API if Bluez version is older than 5.42
|
|
PACKAGECONFIG[force-dbus] = "-DGATTLIB_FORCE_DBUS=TRUE,-DGATTLIB_FORCE_DBUS=FALSE"
|
|
|
|
EXTRA_OECMAKE += "-DGATTLIB_PYTHON_INTERFACE=OFF"
|
|
EXTRA_OECMAKE += "-DGATTLIB_BUILD_DOCS=OFF"
|
|
|
|
inherit pkgconfig cmake python3native
|
|
|
|
do_compile:append() {
|
|
for f in org-bluez-gattdescriptor1.c org-bluez-battery1.c org-bluez-adaptater1.c \
|
|
org-bluez-device1.c org-bluez-gattservice1.c org-bluez-gattcharacteristic1.c; do
|
|
sed -i -e 's|${B}/dbus/||g' ${B}/dbus/$f
|
|
done
|
|
}
|
|
|
|
FILES:${PN} = "${libdir}/*"
|
|
FILES:${PN}-dev = "${includedir}/* ${libdir}/pkgconfig"
|