aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace/strace_4.8.bb
diff options
context:
space:
mode:
authorChong Lu <Chong.Lu@windriver.com>2014-09-30 17:33:05 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-11-09 10:17:05 +0000
commit826e36643a3fcb8b4ee4ed79612c63c3a9cc1536 (patch)
tree6ba11474878ae05acaa3b08948bde3e6aefcc604 /meta/recipes-devtools/strace/strace_4.8.bb
parent607d0099a652c83979b74cd8c8c3d8479221c513 (diff)
downloadopenembedded-core-contrib-826e36643a3fcb8b4ee4ed79612c63c3a9cc1536.tar.gz
strace: Upgrade to 4.9
Remove two backported patches: 0001-Work-around-conflict-between-sys-ptrace.h-and-linux-.patch strace-fix-64-bit-process-detection.patch Update two patches to fit new version: Makefile-ptest.patch strace-add-configure-options.patch Add coreutils, grep and gawk to RDEPENDS_${PN}-ptest for making ptest pass. Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/strace/strace_4.8.bb')
-rw-r--r--meta/recipes-devtools/strace/strace_4.8.bb48
1 files changed, 0 insertions, 48 deletions
diff --git a/meta/recipes-devtools/strace/strace_4.8.bb b/meta/recipes-devtools/strace/strace_4.8.bb
deleted file mode 100644
index ed738eaad7..0000000000
--- a/meta/recipes-devtools/strace/strace_4.8.bb
+++ /dev/null
@@ -1,48 +0,0 @@
-SUMMARY = "System call tracing tool"
-HOMEPAGE = "http://strace.sourceforge.net"
-SECTION = "console/utils"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://COPYING;md5=124500c21e856f0912df29295ba104c7"
-
-SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.xz \
- file://git-version-gen \
- file://strace-add-configure-options.patch \
- file://Makefile-ptest.patch \
- file://strace-fix-64-bit-process-detection.patch \
- file://run-ptest \
- file://0001-Work-around-conflict-between-sys-ptrace.h-and-linux-.patch \
- "
-
-SRC_URI[md5sum] = "c575ef43829586801f514fd91bfe7575"
-SRC_URI[sha256sum] = "f492291f07a7c805c07a8395cce1ea054a6401ad414f4cc12185672215e1d7f8"
-
-inherit autotools ptest
-RDEPENDS_${PN}-ptest += "make"
-
-PACKAGECONFIG_class-target ?= "libaio ${@bb.utils.contains('DISTRO_FEATURES', 'acl', 'acl', '', d)}"
-
-PACKAGECONFIG[libaio] = "--enable-aio,--disable-aio,libaio"
-PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl"
-
-export INCLUDES = "-I. -I./linux"
-
-TESTDIR = "tests"
-
-do_configure_prepend() {
- cp ${WORKDIR}/git-version-gen ${S}
-}
-
-do_install_append() {
- # We don't ship strace-graph here because it needs perl
- rm ${D}${bindir}/strace-graph
-}
-
-do_compile_ptest() {
- oe_runmake -C ${TESTDIR} buildtest-TESTS
-}
-
-do_install_ptest() {
- oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B} DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR}
-}
-
-BBCLASSEXTEND = "native"