summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>2019-03-12 21:14:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-03-18 11:12:25 +0000
commit4b41992a683d70ec6610a7b0e4e2afc64182de02 (patch)
treec23037f8c0326aa457102bc7dbd53c5f74242fc8 /meta
parent3e7789eae96bf207bfc0a750eaab5f163a4a033e (diff)
downloadpoky-4b41992a683d70ec6610a7b0e4e2afc64182de02.tar.gz
lttng-ust: add python3-agent feature
Enable users to use lttng as an event sink for python3. For more details: https://lttng.org/docs/v2.10/#doc-python-application (From OE-Core rev: 7d055fe216759c5f88bd9bfde17b408163433c43) Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-kernel/lttng/lttng-ust_2.10.3.bb12
1 files changed, 11 insertions, 1 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-ust_2.10.3.bb b/meta/recipes-kernel/lttng/lttng-ust_2.10.3.bb
index b5c43200d6..c0f408eeec 100644
--- a/meta/recipes-kernel/lttng/lttng-ust_2.10.3.bb
+++ b/meta/recipes-kernel/lttng/lttng-ust_2.10.3.bb
@@ -8,7 +8,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=c963eb366b781252b0bf0fdf1624d9e9 \
8 file://snprintf/snprintf.c;endline=32;md5=d3d544959d8a3782b2e07451be0a903c \ 8 file://snprintf/snprintf.c;endline=32;md5=d3d544959d8a3782b2e07451be0a903c \
9 file://snprintf/various.h;endline=31;md5=89f2509b6b4682c4fc95255eec4abe44" 9 file://snprintf/various.h;endline=31;md5=89f2509b6b4682c4fc95255eec4abe44"
10 10
11inherit autotools lib_package manpages 11PYTHON_OPTION = "am_cv_python_pyexecdir='${PYTHON_SITEPACKAGES_DIR}' \
12 am_cv_python_pythondir='${PYTHON_SITEPACKAGES_DIR}' \
13 PYTHON_INCLUDE='-I${STAGING_INCDIR}/python${PYTHON_BASEVERSION}${PYTHON_ABI}' \
14"
15
16inherit autotools lib_package manpages python3native
12 17
13DEPENDS = "liburcu util-linux" 18DEPENDS = "liburcu util-linux"
14RDEPENDS_${PN}-bin = "python3-core" 19RDEPENDS_${PN}-bin = "python3-core"
@@ -29,6 +34,11 @@ SRC_URI[sha256sum] = "9e8420f90d5f963f7aa32bc6d44adc1e491136f687c69ffb7a3075d33b
29CVE_PRODUCT = "ust" 34CVE_PRODUCT = "ust"
30 35
31PACKAGECONFIG[manpages] = "--enable-man-pages, --disable-man-pages, asciidoc-native xmlto-native libxslt-native" 36PACKAGECONFIG[manpages] = "--enable-man-pages, --disable-man-pages, asciidoc-native xmlto-native libxslt-native"
37PACKAGECONFIG[python3-agent] = "--enable-python-agent ${PYTHON_OPTION}, --disable-python-agent, python3, python3"
38
39FILES_${PN} += " ${PYTHON_SITEPACKAGES_DIR}/*"
40FILES_${PN}-staticdev += " ${PYTHON_SITEPACKAGES_DIR}/*.a"
41FILES_${PN}-dev += " ${PYTHON_SITEPACKAGES_DIR}/*.la"
32 42
33do_install_append() { 43do_install_append() {
34 # Patch python tools to use Python 3; they should be source compatible, but 44 # Patch python tools to use Python 3; they should be source compatible, but