wok rev 25332

updated strace (5.6 -> 5.18)
author Hans-G?nter Theisgen
date Sat Jul 23 14:59:58 2022 +0100 (21 months ago)
parents 917dfc4833a1
children f606a1532612
files strace/description.txt strace/receipt
line diff
     1.1 --- a/strace/description.txt	Sat Jul 23 11:20:01 2022 +0100
     1.2 +++ b/strace/description.txt	Sat Jul 23 14:59:58 2022 +0100
     1.3 @@ -1,8 +1,11 @@
     1.4 -strace is a system call tracer, i.e. a debugging tool which prints out a trace
     1.5 -of all the system calls made by a another process/program. The program to be
     1.6 -traced need not be recompiled for this, so you can use it on binaries for which
     1.7 -you don't have source.
     1.8 +Strace is a system call tracer, i.e. a debugging tool which
     1.9 +prints out a trace of all the system calls made by a another
    1.10 +process or program.
    1.11 +The program to be traced need not be recompiled for this, so
    1.12 +you can use it on binaries for which you don't have source.
    1.13  
    1.14 -System calls and signals are events that happen at the user/kernel interface.
    1.15 -A close examination of this boundary is very useful for bug isolation, sanity
    1.16 -checking and attempting to capture race conditions.
    1.17 +System calls and signals are events that happen at the user
    1.18 +or kernel interface.
    1.19 +A close examination of this boundary is very useful for bug
    1.20 +isolation, sanity checking and attempting to capture race
    1.21 +conditions.
     2.1 --- a/strace/receipt	Sat Jul 23 11:20:01 2022 +0100
     2.2 +++ b/strace/receipt	Sat Jul 23 14:59:58 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="strace"
     2.7 -VERSION="5.6"
     2.8 +VERSION="5.18"
     2.9  CATEGORY="development"
    2.10  TAGS="analysis debugger diagnostic"
    2.11  SHORT_DESC="System call tracer."
    2.12 @@ -12,6 +12,8 @@
    2.13  TARBALL="$PACKAGE-$VERSION.tar.xz"
    2.14  WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    2.15  
    2.16 +SUGGESTED="perl"	# for strace-graph
    2.17 +
    2.18  current_version()
    2.19  {
    2.20  	wget -O - ${WGET_URL%/down*} 2>/dev/null | \
    2.21 @@ -24,6 +26,7 @@
    2.22  	./configure $CONFIGURE_ARGS &&
    2.23  	make &&
    2.24  	make install
    2.25 +	cp -a src/strace-graph	$install/usr/bin
    2.26  
    2.27  	find $install -name strace.1 -exec gzip -9 \{\} \;
    2.28  }