4.11.0.163.9720-1
- New upstream snapshot v4.11-163-g972018f: + fixed decoding of syscalls unknown to the kernel on s390/s390x (#1298294).
This commit is contained in:
parent
49b2ac4b75
commit
529251077c
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
/strace-4.11.tar.xz
|
||||
/strace-4.11.0.163-9720.tar.xz
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
a15d2555a7febb56d00c6e1a51c655dc strace-4.11.tar.xz
|
||||
597ea2b8c152bb0c7b4a986733fe54e7 strace-4.11.0.163-9720.tar.xz
|
||||
|
26
strace.spec
26
strace.spec
@ -1,12 +1,13 @@
|
||||
Summary: Tracks and displays system calls associated with a running process
|
||||
Name: strace
|
||||
Version: 4.11
|
||||
Release: 2%{?dist}
|
||||
Version: 4.11.0.163.9720
|
||||
%define srcname %name-4.11.0.163-9720
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
Group: Development/Debuggers
|
||||
URL: http://sourceforge.net/projects/strace/
|
||||
Source: http://downloads.sourceforge.net/strace/%{name}-%{version}.tar.xz
|
||||
BuildRequires: libacl-devel, time
|
||||
Source: http://downloads.sourceforge.net/strace/%{srcname}.tar.xz
|
||||
BuildRequires: time
|
||||
%ifarch x86_64
|
||||
# for experimental -k option
|
||||
BuildRequires: libunwind-devel
|
||||
@ -43,7 +44,7 @@ The `strace' program in the `strace' package is for 32-bit processes.
|
||||
%endif
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%setup -q -n %{srcname}
|
||||
|
||||
%build
|
||||
%configure
|
||||
@ -67,7 +68,16 @@ rm -f %{buildroot}%{_bindir}/strace-graph
|
||||
%endif
|
||||
|
||||
%check
|
||||
make -k check VERBOSE=1
|
||||
uname -a |head -1
|
||||
libc="$(ldd /bin/sh |sed -n 's|^[^/]*\(/[^ ]*/libc\.so[^ ]*\).*|\1|p' |head -1)"
|
||||
$libc |head -1
|
||||
file -L /bin/sh
|
||||
gcc --version |head -1
|
||||
kver="$(echo -e '#include <linux/version.h>\nLINUX_VERSION_CODE' | gcc -E -P -)"
|
||||
printf 'kernel-headers %%s.%%s.%%s\n' $(($kver/65536)) $(($kver/256%%256)) $(($kver%%256))
|
||||
export SLEEP_A_BIT='sleep 0.1'
|
||||
make %{?_smp_mflags} -k check VERBOSE=1
|
||||
cat tests/test-suite.log tests/ksysent.log
|
||||
|
||||
%files
|
||||
%doc CREDITS ChangeLog ChangeLog-CVS COPYING NEWS README
|
||||
@ -81,6 +91,10 @@ make -k check VERBOSE=1
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jan 15 2016 Dmitry V. Levin <ldv@altlinux.org> - 4.11.0.163.9720-1
|
||||
- New upstream snapshot v4.11-163-g972018f:
|
||||
+ fixed decoding of syscalls unknown to the kernel on s390/s390x (#1298294).
|
||||
|
||||
* Wed Dec 23 2015 Dmitry V. Levin <ldv@altlinux.org> - 4.11-2
|
||||
- Enabled experimental -k option on x86_64 (#1170296).
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user