# HG changeset patch # User Hans-G?nter Theisgen # Date 1658584798 -3600 # Node ID be6d790548d744e5867a6cff856e630aeec972df # Parent 917dfc4833a113f28cf0a55d5bde52fbdc557ad3 updated strace (5.6 -> 5.18) diff -r 917dfc4833a1 -r be6d790548d7 strace/description.txt --- a/strace/description.txt Sat Jul 23 11:20:01 2022 +0100 +++ b/strace/description.txt Sat Jul 23 14:59:58 2022 +0100 @@ -1,8 +1,11 @@ -strace is a system call tracer, i.e. a debugging tool which prints out a trace -of all the system calls made by a another process/program. The program to be -traced need not be recompiled for this, so you can use it on binaries for which -you don't have source. +Strace is a system call tracer, i.e. a debugging tool which +prints out a trace of all the system calls made by a another +process or program. +The program to be traced need not be recompiled for this, so +you can use it on binaries for which you don't have source. -System calls and signals are events that happen at the user/kernel interface. -A close examination of this boundary is very useful for bug isolation, sanity -checking and attempting to capture race conditions. +System calls and signals are events that happen at the user +or kernel interface. +A close examination of this boundary is very useful for bug +isolation, sanity checking and attempting to capture race +conditions. diff -r 917dfc4833a1 -r be6d790548d7 strace/receipt --- a/strace/receipt Sat Jul 23 11:20:01 2022 +0100 +++ b/strace/receipt Sat Jul 23 14:59:58 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="strace" -VERSION="5.6" +VERSION="5.18" CATEGORY="development" TAGS="analysis debugger diagnostic" SHORT_DESC="System call tracer." @@ -12,6 +12,8 @@ TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" +SUGGESTED="perl" # for strace-graph + current_version() { wget -O - ${WGET_URL%/down*} 2>/dev/null | \ @@ -24,6 +26,7 @@ ./configure $CONFIGURE_ARGS && make && make install + cp -a src/strace-graph $install/usr/bin find $install -name strace.1 -exec gzip -9 \{\} \; }