diff options
Diffstat (limited to 'meta/recipes-kernel/lttng/lttng-tools_2.12.4.bb')
| -rw-r--r-- | meta/recipes-kernel/lttng/lttng-tools_2.12.4.bb | 177 |
1 files changed, 177 insertions, 0 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-tools_2.12.4.bb b/meta/recipes-kernel/lttng/lttng-tools_2.12.4.bb new file mode 100644 index 0000000000..133d7561b8 --- /dev/null +++ b/meta/recipes-kernel/lttng/lttng-tools_2.12.4.bb | |||
| @@ -0,0 +1,177 @@ | |||
| 1 | SECTION = "devel" | ||
| 2 | SUMMARY = "Linux Trace Toolkit Control" | ||
| 3 | DESCRIPTION = "The Linux trace toolkit is a suite of tools designed \ | ||
| 4 | to extract program execution details from the Linux operating system \ | ||
| 5 | and interpret them." | ||
| 6 | HOMEPAGE = "https://github.com/lttng/lttng-tools" | ||
| 7 | |||
| 8 | LICENSE = "GPLv2 & LGPLv2.1" | ||
| 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=40ef17463fbd6f377db3c47b1cbaded8 \ | ||
| 10 | file://LICENSES/GPL-2.0;md5=e68f69a54b44ba526ad7cb963e18fbce \ | ||
| 11 | file://LICENSES/LGPL-2.1;md5=9920968d0f2ff585ce61fae30344dd95" | ||
| 12 | |||
| 13 | include lttng-platforms.inc | ||
| 14 | |||
| 15 | DEPENDS = "liburcu popt libxml2 util-linux" | ||
| 16 | RDEPENDS_${PN} = "libgcc" | ||
| 17 | RRECOMMENDS_${PN} += "${LTTNGMODULES}" | ||
| 18 | RDEPENDS_${PN}-ptest += "make perl bash gawk babeltrace procps perl-module-overloading coreutils util-linux kmod ${LTTNGMODULES} sed python3-core grep" | ||
| 19 | RDEPENDS_${PN}-ptest_append_libc-glibc = " glibc-utils" | ||
| 20 | RDEPENDS_${PN}-ptest_append_libc-musl = " musl-utils" | ||
| 21 | # babelstats.pl wants getopt-long | ||
| 22 | RDEPENDS_${PN}-ptest += "perl-module-getopt-long" | ||
| 23 | |||
| 24 | PYTHON_OPTION = "am_cv_python_pyexecdir='${PYTHON_SITEPACKAGES_DIR}' \ | ||
| 25 | am_cv_python_pythondir='${PYTHON_SITEPACKAGES_DIR}' \ | ||
| 26 | PYTHON_INCLUDE='-I${STAGING_INCDIR}/python${PYTHON_BASEVERSION}${PYTHON_ABI}' \ | ||
| 27 | " | ||
| 28 | PACKAGECONFIG ??= "${LTTNGUST}" | ||
| 29 | PACKAGECONFIG[python] = "--enable-python-bindings ${PYTHON_OPTION},,python3 swig-native" | ||
| 30 | PACKAGECONFIG[lttng-ust] = "--with-lttng-ust, --without-lttng-ust, lttng-ust" | ||
| 31 | PACKAGECONFIG[kmod] = "--with-kmod, --without-kmod, kmod" | ||
| 32 | PACKAGECONFIG[manpages] = "--enable-man-pages, --disable-man-pages, asciidoc-native xmlto-native libxslt-native" | ||
| 33 | |||
| 34 | SRC_URI = "https://lttng.org/files/lttng-tools/lttng-tools-${PV}.tar.bz2 \ | ||
| 35 | file://0001-tests-do-not-strip-a-helper-library.patch \ | ||
| 36 | file://run-ptest \ | ||
| 37 | file://lttng-sessiond.service \ | ||
| 38 | file://0001-tests-regression-disable-the-tools-live-tests.patch \ | ||
| 39 | file://determinism.patch \ | ||
| 40 | " | ||
| 41 | |||
| 42 | SRC_URI[sha256sum] = "d729f8c2373a41194f171aeb0da0a9bb35ac181f31afa7e260786d19a500dea1" | ||
| 43 | |||
| 44 | inherit autotools ptest pkgconfig useradd python3-dir manpages systemd | ||
| 45 | |||
| 46 | SYSTEMD_SERVICE_${PN} = "lttng-sessiond.service" | ||
| 47 | SYSTEMD_AUTO_ENABLE = "disable" | ||
| 48 | |||
| 49 | USERADD_PACKAGES = "${PN}" | ||
| 50 | GROUPADD_PARAM_${PN} = "tracing" | ||
| 51 | |||
| 52 | FILES_${PN} += "${libdir}/lttng/libexec/* ${datadir}/xml/lttng \ | ||
| 53 | ${PYTHON_SITEPACKAGES_DIR}/*" | ||
| 54 | FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/*.a" | ||
| 55 | FILES_${PN}-dev += "${PYTHON_SITEPACKAGES_DIR}/*.la" | ||
| 56 | |||
| 57 | # Since files are installed into ${libdir}/lttng/libexec we match | ||
| 58 | # the libexec insane test so skip it. | ||
| 59 | # Python module needs to keep _lttng.so | ||
| 60 | INSANE_SKIP_${PN} = "libexec dev-so" | ||
| 61 | INSANE_SKIP_${PN}-dbg = "libexec" | ||
| 62 | |||
| 63 | PRIVATE_LIBS_${PN}-ptest = "libfoo.so" | ||
| 64 | |||
| 65 | do_install_append () { | ||
| 66 | # install systemd unit file | ||
| 67 | install -d ${D}${systemd_unitdir}/system | ||
| 68 | install -m 0644 ${WORKDIR}/lttng-sessiond.service ${D}${systemd_unitdir}/system | ||
| 69 | } | ||
| 70 | |||
| 71 | do_install_ptest () { | ||
| 72 | for f in Makefile tests/Makefile tests/utils/utils.sh tests/regression/tools/save-load/*.lttng \ | ||
| 73 | tests/regression/tools/save-load/configuration/load-42*.lttng tests/regression/tools/health/test_health.sh \ | ||
| 74 | tests/regression/tools/metadata/utils.sh tests/regression/tools/rotation/rotate_utils.sh \ | ||
| 75 | tests/regression/tools/base-path/*.lttng; do | ||
| 76 | install -D "${B}/$f" "${D}${PTEST_PATH}/$f" | ||
| 77 | done | ||
| 78 | |||
| 79 | for f in config/tap-driver.sh config/test-driver src/common/config/session.xsd src/common/mi-lttng-4.0.xsd; do | ||
| 80 | install -D "${S}/$f" "${D}${PTEST_PATH}/$f" | ||
| 81 | done | ||
| 82 | |||
| 83 | # Prevent 'make check' from recursing into non-test subdirectories. | ||
| 84 | sed -i -e 's!^SUBDIRS = .*!SUBDIRS = tests!' "${D}${PTEST_PATH}/Makefile" | ||
| 85 | |||
| 86 | # We don't need these | ||
| 87 | sed -i -e '/dist_noinst_SCRIPTS = /,/^$/d' "${D}${PTEST_PATH}/tests/Makefile" | ||
| 88 | |||
| 89 | # We shouldn't need to build anything in tests/utils | ||
| 90 | sed -i -e 's!am__append_1 = . utils!am__append_1 = . !' \ | ||
| 91 | "${D}${PTEST_PATH}/tests/Makefile" | ||
| 92 | |||
| 93 | # Copy the tests directory tree and the executables and | ||
| 94 | # Makefiles found within. | ||
| 95 | for d in $(find "${B}/tests" -type d -not -name .libs -printf '%P ') ; do | ||
| 96 | install -d "${D}${PTEST_PATH}/tests/$d" | ||
| 97 | find "${B}/tests/$d" -maxdepth 1 -executable -type f \ | ||
| 98 | -exec install -t "${D}${PTEST_PATH}/tests/$d" {} + | ||
| 99 | # Take all .py scripts for tests using the python bindings. | ||
| 100 | find "${B}/tests/$d" -maxdepth 1 -type f -name "*.py" \ | ||
| 101 | -exec install -t "${D}${PTEST_PATH}/tests/$d" {} + | ||
| 102 | test -r "${B}/tests/$d/Makefile" && \ | ||
| 103 | install -t "${D}${PTEST_PATH}/tests/$d" "${B}/tests/$d/Makefile" | ||
| 104 | done | ||
| 105 | |||
| 106 | for d in $(find "${B}/tests" -type d -name .libs -printf '%P ') ; do | ||
| 107 | for f in $(find "${B}/tests/$d" -maxdepth 1 -executable -type f -printf '%P ') ; do | ||
| 108 | cp ${B}/tests/$d/$f ${D}${PTEST_PATH}/tests/`dirname $d`/$f | ||
| 109 | case $f in | ||
| 110 | *.so) | ||
| 111 | install -d ${D}${PTEST_PATH}/tests/$d/ | ||
| 112 | ln -s ../$f ${D}${PTEST_PATH}/tests/$d/$f | ||
| 113 | # Remove any rpath/runpath to pass QA check. | ||
| 114 | chrpath --delete ${D}${PTEST_PATH}/tests/$d/$f | ||
| 115 | ;; | ||
| 116 | esac | ||
| 117 | done | ||
| 118 | done | ||
| 119 | |||
| 120 | chrpath --delete ${D}${PTEST_PATH}/tests/utils/testapp/userspace-probe-elf-binary/userspace-probe-elf-binary | ||
| 121 | chrpath --delete ${D}${PTEST_PATH}/tests/regression/ust/ust-dl/libbar.so | ||
| 122 | chrpath --delete ${D}${PTEST_PATH}/tests/regression/ust/ust-dl/libfoo.so | ||
| 123 | |||
| 124 | # | ||
| 125 | # Use the versioned libs of liblttng-ust-dl. | ||
| 126 | # | ||
| 127 | ustdl="${D}${PTEST_PATH}/tests/regression/ust/ust-dl/test_ust-dl.py" | ||
| 128 | if [ -e $ustdl ]; then | ||
| 129 | sed -i -e 's!:liblttng-ust-dl.so!:liblttng-ust-dl.so.0!' $ustdl | ||
| 130 | fi | ||
| 131 | |||
| 132 | install ${B}/tests/unit/ini_config/sample.ini ${D}${PTEST_PATH}/tests/unit/ini_config/ | ||
| 133 | |||
| 134 | # We shouldn't need to build anything in tests/regression/tools | ||
| 135 | sed -i -e 's!^SUBDIRS = tools !SUBDIRS = !' \ | ||
| 136 | "${D}${PTEST_PATH}/tests/regression/Makefile" | ||
| 137 | |||
| 138 | # Prevent attempts to update Makefiles during test runs, and | ||
| 139 | # silence "Making check in $SUBDIR" messages. | ||
| 140 | find "${D}${PTEST_PATH}" -name Makefile -type f -exec \ | ||
| 141 | sed -i -e '/Makefile:/,/^$/d' -e '/%: %.in/,/^$/d' \ | ||
| 142 | -e '/echo "Making $$target in $$subdir"; \\/d' \ | ||
| 143 | -e 's/^srcdir = \(.*\)/srcdir = ./' \ | ||
| 144 | -e 's/^builddir = \(.*\)/builddir = ./' \ | ||
| 145 | -e 's/^all-am:.*/all-am:/' \ | ||
| 146 | {} + | ||
| 147 | |||
| 148 | find "${D}${PTEST_PATH}" -name Makefile -type f -exec \ | ||
| 149 | touch -r "${B}/Makefile" {} + | ||
| 150 | |||
| 151 | # | ||
| 152 | # Need to stop generated binaries from rebuilding by removing their source dependencies | ||
| 153 | # | ||
| 154 | sed -e 's#\(^test.*OBJECTS.=\)#disable\1#g' \ | ||
| 155 | -e 's#\(^test.*DEPENDENCIES.=\)#disable\1#g' \ | ||
| 156 | -e 's#\(^test.*SOURCES.=\)#disable\1#g' \ | ||
| 157 | -e 's#\(^test.*LDADD.=\)#disable\1#g' \ | ||
| 158 | -i ${D}${PTEST_PATH}/tests/unit/Makefile | ||
| 159 | |||
| 160 | # Fix hardcoded build path | ||
| 161 | sed -e 's#TESTAPP_PATH=.*/tests/regression/#TESTAPP_PATH="${PTEST_PATH}/tests/regression/#' \ | ||
| 162 | -i ${D}${PTEST_PATH}/tests/regression/ust/python-logging/test_python_logging | ||
| 163 | |||
| 164 | # Substitute links to installed binaries. | ||
| 165 | for prog in lttng lttng-relayd lttng-sessiond lttng-consumerd lttng-crash; do | ||
| 166 | exedir="${D}${PTEST_PATH}/src/bin/${prog}" | ||
| 167 | install -d "$exedir" | ||
| 168 | case "$prog" in | ||
| 169 | lttng-consumerd) | ||
| 170 | ln -s "${libdir}/lttng/libexec/$prog" "$exedir" | ||
| 171 | ;; | ||
| 172 | *) | ||
| 173 | ln -s "${bindir}/$prog" "$exedir" | ||
| 174 | ;; | ||
| 175 | esac | ||
| 176 | done | ||
| 177 | } | ||
