6.0-1
- v5.19 -> v6.0.
This commit is contained in:
parent
5d473c8227
commit
f47bfc4bfe
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
/strace-5.19.tar.xz
|
||||
/strace-6.0.tar.xz
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (strace-5.19.tar.xz) = 1ea1c6e12d05bf145bc3c74f8d06b08dfc3eae3a5a21bfe8ab080053dc4c2da8a95be5956652ea62bb083462015a55f9bc1d1023919dcf2929a05211b7dde963
|
||||
SHA512 (strace-6.0.tar.xz) = 2f5aa18949b9f64769eee4e7720e41bf4a61e3b552acad693ff7baed2e662407a7b5e8bfba94ac49bb71639d21cd54084de902fb4337904f48480b25b8e72b54
|
||||
|
33
strace.spec
33
strace.spec
@ -1,6 +1,6 @@
|
||||
Summary: Tracks and displays system calls associated with a running process
|
||||
Name: strace
|
||||
Version: 5.19
|
||||
Version: 6.0
|
||||
Release: 1%{?dist}
|
||||
# The test suite is GPLv2+, all the rest is LGPLv2.1+.
|
||||
%if 0%{?fedora} >= 35 || 0%{?centos} >= 9 || 0%{?rhel} >= 9
|
||||
@ -69,7 +69,7 @@ received by a process.
|
||||
%setup -q
|
||||
echo -n %version-%release > .tarball-version
|
||||
echo -n 2022 > .year
|
||||
echo -n 2022-07-19 > doc/.strace.1.in.date
|
||||
echo -n 2022-10-16 > doc/.strace.1.in.date
|
||||
echo -n 2022-01-01 > doc/.strace-log-merge.1.in.date
|
||||
|
||||
%build
|
||||
@ -98,13 +98,25 @@ done
|
||||
wait
|
||||
|
||||
%check
|
||||
%{buildroot}%{_bindir}/strace -V
|
||||
%make_build -k check VERBOSE=1
|
||||
echo 'BEGIN OF TEST SUITE INFORMATION'
|
||||
tail -n 99999 -- tests*/test-suite.log tests*/ksysent.gen.log
|
||||
find tests* -type f -name '*.log' -print0 |
|
||||
xargs -r0 grep -H '^KERNEL BUG:' -- ||:
|
||||
echo 'END OF TEST SUITE INFORMATION'
|
||||
is_x86=
|
||||
%ifarch %ix86
|
||||
is_x86=1
|
||||
%endif
|
||||
|
||||
is_latest_fedora=
|
||||
%if 0%{?fedora} >= 35
|
||||
is_latest_fedora=1
|
||||
%endif
|
||||
|
||||
if [ "${is_x86}${is_latest_fedora}" != 11 ]; then
|
||||
%{buildroot}%{_bindir}/strace -V
|
||||
%make_build -k check VERBOSE=1
|
||||
echo 'BEGIN OF TEST SUITE INFORMATION'
|
||||
tail -n 99999 -- tests*/test-suite.log tests*/ksysent.gen.log
|
||||
find tests* -type f -name '*.log' -print0 |
|
||||
xargs -r0 grep -H '^KERNEL BUG:' -- ||:
|
||||
echo 'END OF TEST SUITE INFORMATION'
|
||||
fi
|
||||
|
||||
%files
|
||||
%maybe_use_defattr
|
||||
@ -114,6 +126,9 @@ echo 'END OF TEST SUITE INFORMATION'
|
||||
%{_mandir}/man1/*
|
||||
|
||||
%changelog
|
||||
* Sat Oct 29 2022 Dmitry V. Levin <ldv@strace.io> - 6.0-1
|
||||
- v5.19 -> v6.0.
|
||||
|
||||
* Fri Aug 12 2022 Dmitry V. Levin <ldv@strace.io> - 5.19-1
|
||||
- v5.18 -> v5.19.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user