wok-current rev 19168

Up strace(4.12)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jun 01 02:52:45 2016 +0300 (2016-06-01)
parents 5f6dfba73c57
children 0a411c8beacd
files awstats-hotspot/receipt awstats/receipt bootchart/receipt ht/receipt pflogsumm/receipt strace/description.txt strace/receipt wireshark/receipt
line diff
     1.1 --- a/awstats-hotspot/receipt	Sun May 29 10:13:52 2016 +0200
     1.2 +++ b/awstats-hotspot/receipt	Wed Jun 01 02:52:45 2016 +0300
     1.3 @@ -8,7 +8,7 @@
     1.4  LICENSE="GPL2"
     1.5  DEPENDS="squid awstats"
     1.6  WEB_SITE="http://www.slitaz.org/"
     1.7 -TAGS="log analyze"
     1.8 +TAGS="log analysis"
     1.9  
    1.10  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.11  genpkg_rules()
     2.1 --- a/awstats/receipt	Sun May 29 10:13:52 2016 +0200
     2.2 +++ b/awstats/receipt	Wed Jun 01 02:52:45 2016 +0300
     2.3 @@ -9,7 +9,7 @@
     2.4  WEB_SITE="http://awstats.sourceforge.net/"
     2.5  TARBALL="$PACKAGE-$VERSION.tar.gz"
     2.6  WGET_URL="http://prdownloads.sourceforge.net/awstats/$TARBALL"
     2.7 -TAGS="log analyze web mail ftp"
     2.8 +TAGS="log analysis web mail ftp"
     2.9  
    2.10  DEPENDS="perl"
    2.11  SUGGESTED="perl-net-xwhois"
     3.1 --- a/bootchart/receipt	Sun May 29 10:13:52 2016 +0200
     3.2 +++ b/bootchart/receipt	Wed Jun 01 02:52:45 2016 +0300
     3.3 @@ -9,7 +9,7 @@
     3.4  WEB_SITE="http://www.bootchart.org/"
     3.5  TARBALL="$PACKAGE-$VERSION.tar.bz2"
     3.6  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
     3.7 -TAGS="boot performance profile analyze"
     3.8 +TAGS="boot performance profile analysis"
     3.9  
    3.10  SUGGESTED="pybootchartgui"
    3.11  
     4.1 --- a/ht/receipt	Sun May 29 10:13:52 2016 +0200
     4.2 +++ b/ht/receipt	Wed Jun 01 02:52:45 2016 +0300
     4.3 @@ -9,7 +9,7 @@
     4.4  TARBALL="$PACKAGE-$VERSION.tar.bz2"
     4.5  WEB_SITE="http://hte.sourceforge.net/"
     4.6  WGET_URL="$SF_MIRROR/hte/$TARBALL"
     4.7 -TAGS="viewer text-editor analyzer"
     4.8 +TAGS="viewer text-editor analysis"
     4.9  
    4.10  DEPENDS="gcc-lib-base lzo ncurses xorg-libX11 xorg-libXau xorg-libXdmcp"
    4.11  BUILD_DEPENDS="lzo-dev ncurses-dev"
     5.1 --- a/pflogsumm/receipt	Sun May 29 10:13:52 2016 +0200
     5.2 +++ b/pflogsumm/receipt	Wed Jun 01 02:52:45 2016 +0300
     5.3 @@ -9,7 +9,7 @@
     5.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     5.5  WEB_SITE="http://jimsun.linxnet.com/postfix_contrib.html"
     5.6  WGET_URL="http://jimsun.linxnet.com/downloads/$TARBALL"
     5.7 -TAGS="postfix mail logs analyzer"
     5.8 +TAGS="postfix mail logs analysis"
     5.9  
    5.10  DEPENDS="perl-date-calc"
    5.11  SUGGESTED="postfix"
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/strace/description.txt	Wed Jun 01 02:52:45 2016 +0300
     6.3 @@ -0,0 +1,8 @@
     6.4 +strace is a system call tracer, i.e. a debugging tool which prints out a trace
     6.5 +of all the system calls made by a another process/program. The program to be
     6.6 +traced need not be recompiled for this, so you can use it on binaries for which
     6.7 +you don't have source.
     6.8 +
     6.9 +System calls and signals are events that happen at the user/kernel interface.
    6.10 +A close examination of this boundary is very useful for bug isolation, sanity
    6.11 +checking and attempting to capture race conditions.
     7.1 --- a/strace/receipt	Sun May 29 10:13:52 2016 +0200
     7.2 +++ b/strace/receipt	Wed Jun 01 02:52:45 2016 +0300
     7.3 @@ -1,32 +1,25 @@
     7.4  # SliTaz package receipt.
     7.5  
     7.6  PACKAGE="strace"
     7.7 -VERSION="4.5.20"
     7.8 +VERSION="4.12"
     7.9  CATEGORY="development"
    7.10 -SHORT_DESC="Trace system calls and signals"
    7.11 +SHORT_DESC="System call tracer"
    7.12  MAINTAINER="erjo@slitaz.org"
    7.13  LICENSE="BSD"
    7.14 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    7.15 -WEB_SITE="http://sourceforge.net/projects/strace/"
    7.16 -WGET_URL="http://ovh.dl.sourceforge.net/sourceforge/strace/$TARBALL"
    7.17 -
    7.18 -DEPENDS=""
    7.19 +WEB_SITE="https://sourceforge.net/projects/strace/"
    7.20 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    7.21 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    7.22 +TAGS="analysis debugger diagnostic"
    7.23  
    7.24  # Rules to configure and make the package.
    7.25  compile_rules()
    7.26  {
    7.27 -    cd $src
    7.28 -    ./configure --prefix=/usr --infodir=/usr/share/info \
    7.29 -    --mandir=/usr/share/man $CONFIGURE_ARGS
    7.30 -    make
    7.31 -    make DESTDIR=$DESTDIR install
    7.32 +	./configure $CONFIGURE_ARGS && make && make install
    7.33 +	find $install -name strace.1 -exec gzip -9 \{\} \;
    7.34  }
    7.35  
    7.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    7.37  genpkg_rules()
    7.38  {
    7.39 -    mkdir -p $fs/usr
    7.40 -    cp -a $install/usr/bin $fs/usr
    7.41 +	cp -a $install/* $fs
    7.42  }
    7.43 -
    7.44 -
     8.1 --- a/wireshark/receipt	Sun May 29 10:13:52 2016 +0200
     8.2 +++ b/wireshark/receipt	Wed Jun 01 02:52:45 2016 +0300
     8.3 @@ -9,7 +9,7 @@
     8.4  TARBALL="$PACKAGE-$VERSION.tar.bz2"
     8.5  WEB_SITE="http://www.wireshark.org/"
     8.6  WGET_URL="https://1.eu.dl.wireshark.org/src/$TARBALL"
     8.7 -TAGS="network analyzer"
     8.8 +TAGS="network analysis"
     8.9  
    8.10  DEPENDS="gnutls libgpg-error libcap gtk+ pcre xorg-libXdamage libcomerr3 attr \
    8.11  libgcrypt portaudio libpcap libkrb5"