From b7c07955ac9a017ac96421c4f82561e2318d5825 Mon Sep 17 00:00:00 2001 From: Olaf Mersmann Date: Mon, 14 Dec 2020 23:27:52 +0100 Subject: [PATCH] strace: update to 5.10. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Érico Nogueira Rolim <34201958+ericonr@users.noreply.github.com> --- srcpkgs/strace/template | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/srcpkgs/strace/template b/srcpkgs/strace/template index ea6d6667857..27f9e927b77 100644 --- a/srcpkgs/strace/template +++ b/srcpkgs/strace/template @@ -1,19 +1,31 @@ # Template file for 'strace' pkgname=strace -version=5.9 +version=5.10 revision=1 build_style=gnu-configure -configure_args="--with-libunwind" +configure_args="--enable-silent-rules --with-libunwind" makedepends="libunwind-devel" short_desc="System Call Tracer" maintainer="Anthony Iliopoulos " license="LGPL-2.1-or-later" homepage="https://strace.io/" +changelog="https://raw.githubusercontent.com/strace/strace/master/NEWS" distfiles="https://github.com/strace/strace/releases/download/v${version}/strace-${version}.tar.xz" -checksum=39473eb8465546c3e940fb663cb381eba5613160c7302794699d194a4d5d66d9 +checksum=fe3982ea4cd9aeb3b4ba35f6279f0b577a37175d3282be24b9a5537b56b8f01c case "$XBPS_TARGET_MACHINE" in aarch64*|ppc64*) configure_args+=" --enable-mpers=no" ;; # work around https://github.com/strace/strace/issues/133 x86_64-musl) configure_args+=" --enable-mpers=no" ;; esac + +do_check() { + if [ "$XBPS_CHECK_PKGS" = full ]; then + # XXX: Some tests may fail inside of containers or if they are missing + # sufficient capabilities + make check + else + make check \ + TESTS="bpf.gen epoll_pwait.gen getcpu.gen open.gen read-write.gen readlink.gen seccomp-filter.gen mmap ioctl caps readv" + fi +}