Compare commits

...

2 Commits

Author SHA1 Message Date
Dmitry V. Levin 55d04b21bc 6.1-1
- v6.0 -> v6.1.
2022-12-12 18:29:45 +00:00
Yaakov Selkowitz 7959649d1e Disable tests on ELN ix86 2022-11-24 16:44:37 +00:00
3 changed files with 11 additions and 12 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 Summary: Tracks and displays system calls associated with a running process
Name: strace Name: strace
Version: 6.0 Version: 6.1
Release: 1%{?dist} Release: 1%{?dist}
# The test suite is GPLv2+, all the rest is LGPLv2.1+. # The test suite is GPLv2+, all the rest is LGPLv2.1+.
%if 0%{?fedora} >= 35 || 0%{?centos} >= 9 || 0%{?rhel} >= 9 %if 0%{?fedora} >= 35 || 0%{?centos} >= 9 || 0%{?rhel} >= 9
@ -98,17 +98,13 @@ done
wait wait
%check %check
is_x86= width=$(echo __LONG_WIDTH__ |%__cc -E -P -)
%ifarch %ix86 skip_32bit=0
is_x86=1 %if 0%{?fedora} >= 35 || 0%{?rhel} > 9
skip_32bit=1
%endif %endif
is_latest_fedora= if [ "${width}" != 32 ] || [ "${skip_32bit}" != 1 ]; then
%if 0%{?fedora} >= 35
is_latest_fedora=1
%endif
if [ "${is_x86}${is_latest_fedora}" != 11 ]; then
%{buildroot}%{_bindir}/strace -V %{buildroot}%{_bindir}/strace -V
%make_build -k check VERBOSE=1 %make_build -k check VERBOSE=1
echo 'BEGIN OF TEST SUITE INFORMATION' echo 'BEGIN OF TEST SUITE INFORMATION'
@ -126,6 +122,9 @@ fi
%{_mandir}/man1/* %{_mandir}/man1/*
%changelog %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 * Sat Oct 29 2022 Dmitry V. Levin <ldv@strace.io> - 6.0-1
- v5.19 -> v6.0. - v5.19 -> v6.0.