strace: update to 4.22

This commit is contained in:
cvh 2018-05-11 23:22:42 +02:00 committed by CvH
parent 164f1bbd22
commit 26c3b430e5
2 changed files with 8 additions and 9 deletions

View File

@ -17,18 +17,17 @@
################################################################################
PKG_NAME="strace"
PKG_VERSION="4.17"
PKG_SHA256="81f35b085fbb3cfa806eb521a8522ac3406deaccfe121ce35064bad268237419"
PKG_VERSION="4.22"
PKG_SHA256="068cd09264c95e4d591bbcd3ea08f99a693ed8663cd5169b0fdad72eb5bdb39d"
PKG_ARCH="any"
PKG_LICENSE="BSD"
PKG_SITE="http://sourceforge.net/projects/strace/"
PKG_URL="$SOURCEFORGE_SRC/strace/strace/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.xz"
PKG_SITE="https://strace.io/"
PKG_URL="https://strace.io/files/strace/strace-$PKG_VERSION.tar.xz"
PKG_DEPENDS_TARGET="toolchain"
PKG_SECTION="tools"
PKG_SHORTDESC="strace: Trace system calls and signals"
PKG_LONGDESC="In the simplest case strace runs the specified command until it exits. It intercepts and records the system calls which are called by a process and the signals which are received by a process. The name of each system call, its arguments and its return value are printed on standard error or to the file specified with the -o option."
PKG_LONGDESC="strace is a diagnostic, debugging and instructional userspace utility"
PKG_TOOLCHAIN="autotools"
makeinstall_target() {
: # nothing to do here
:
}

View File

@ -6,10 +6,10 @@
AC_PREREQ(2.57)
-AC_INIT([strace],
- m4_esyscmd([./git-version-gen .tarball-version]),
- [strace-devel@lists.sourceforge.net],
- [strace-devel@lists.strace.io],
- [strace],
- [https://strace.io])
+AC_INIT([strace],[4.17])
+AC_INIT([strace],[4.22])
m4_define([copyright_year], m4_esyscmd([./copyright-year-gen .year]))
AC_COPYRIGHT([Copyright (C) 1999-]copyright_year[ The strace developers.])
AC_CONFIG_SRCDIR([strace.c])