- v6.0 -> v6.1.
This commit is contained in:
Dmitry V. Levin 2022-12-12 18:29:45 +00:00
parent 7959649d1e
commit 55d04b21bc
3 changed files with 10 additions and 11 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
/strace-6.0.tar.xz
/strace-6.1.tar.xz

View File

@ -1 +1 @@
SHA512 (strace-6.0.tar.xz) = 2f5aa18949b9f64769eee4e7720e41bf4a61e3b552acad693ff7baed2e662407a7b5e8bfba94ac49bb71639d21cd54084de902fb4337904f48480b25b8e72b54
SHA512 (strace-6.1.tar.xz) = 3f0678d74c5c3e6b30c4dc4ed7ee4cb0829d3b7142dc014fcd887db3a68133bf7fedc623bae381dfe4305bd6cd15d4ca6776c6491009c2a053bb8c6ca1ae8e12

View File

@ -1,6 +1,6 @@
Summary: Tracks and displays system calls associated with a running process
Name: strace
Version: 6.0
Version: 6.1
Release: 1%{?dist}
# The test suite is GPLv2+, all the rest is LGPLv2.1+.
%if 0%{?fedora} >= 35 || 0%{?centos} >= 9 || 0%{?rhel} >= 9
@ -98,17 +98,13 @@ done
wait
%check
is_x86=
%ifarch %ix86
is_x86=1
%endif
is_latest_fedora=
width=$(echo __LONG_WIDTH__ |%__cc -E -P -)
skip_32bit=0
%if 0%{?fedora} >= 35 || 0%{?rhel} > 9
is_latest_fedora=1
skip_32bit=1
%endif
if [ "${is_x86}${is_latest_fedora}" != 11 ]; then
if [ "${width}" != 32 ] || [ "${skip_32bit}" != 1 ]; then
%{buildroot}%{_bindir}/strace -V
%make_build -k check VERBOSE=1
echo 'BEGIN OF TEST SUITE INFORMATION'
@ -126,6 +122,9 @@ fi
%{_mandir}/man1/*
%changelog
* Mon Dec 12 2022 Dmitry V. Levin <ldv@strace.io> - 6.1-1
- v6.0 -> v6.1.
* Sat Oct 29 2022 Dmitry V. Levin <ldv@strace.io> - 6.0-1
- v5.19 -> v6.0.