6.1-1
- v6.0 -> v6.1.
This commit is contained in:
parent
7959649d1e
commit
55d04b21bc
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
/strace-6.0.tar.xz
|
/strace-6.1.tar.xz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (strace-6.0.tar.xz) = 2f5aa18949b9f64769eee4e7720e41bf4a61e3b552acad693ff7baed2e662407a7b5e8bfba94ac49bb71639d21cd54084de902fb4337904f48480b25b8e72b54
|
SHA512 (strace-6.1.tar.xz) = 3f0678d74c5c3e6b30c4dc4ed7ee4cb0829d3b7142dc014fcd887db3a68133bf7fedc623bae381dfe4305bd6cd15d4ca6776c6491009c2a053bb8c6ca1ae8e12
|
||||||
|
17
strace.spec
17
strace.spec
@ -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
|
|
||||||
%endif
|
|
||||||
|
|
||||||
is_latest_fedora=
|
|
||||||
%if 0%{?fedora} >= 35 || 0%{?rhel} > 9
|
%if 0%{?fedora} >= 35 || 0%{?rhel} > 9
|
||||||
is_latest_fedora=1
|
skip_32bit=1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
if [ "${is_x86}${is_latest_fedora}" != 11 ]; then
|
if [ "${width}" != 32 ] || [ "${skip_32bit}" != 1 ]; 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.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user