Compare commits

...

4 Commits

Author SHA1 Message Date
Dmitry V. Levin ed2487001d 6.2-1
- v6.1 -> v6.2.
2023-02-26 21:21:40 +00:00
Fedora Release Engineering b72b196853 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-21 04:09:07 +00:00
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 15 additions and 13 deletions

2
.gitignore vendored
View File

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

View File

@ -1 +1 @@
SHA512 (strace-6.0.tar.xz) = 2f5aa18949b9f64769eee4e7720e41bf4a61e3b552acad693ff7baed2e662407a7b5e8bfba94ac49bb71639d21cd54084de902fb4337904f48480b25b8e72b54
SHA512 (strace-6.2.tar.xz) = 56708faa3f73c0673c98a5b8b8fe35289ecf2870f4f775bcb7a6be59451ef84685564c0129aca15b576d851f8efa1ff760e27658b914d1f31adf4de3b1ad721f

View File

@ -1,6 +1,6 @@
Summary: Tracks and displays system calls associated with a running process
Name: strace
Version: 6.0
Version: 6.2
Release: 1%{?dist}
# The test suite is GPLv2+, all the rest is LGPLv2.1+.
%if 0%{?fedora} >= 35 || 0%{?centos} >= 9 || 0%{?rhel} >= 9
@ -68,7 +68,7 @@ received by a process.
%prep
%setup -q
echo -n %version-%release > .tarball-version
echo -n 2022 > .year
echo -n 2023 > .year
echo -n 2022-10-16 > doc/.strace.1.in.date
echo -n 2022-01-01 > doc/.strace-log-merge.1.in.date
@ -98,17 +98,13 @@ done
wait
%check
is_x86=
%ifarch %ix86
is_x86=1
width=$(echo __LONG_WIDTH__ |%__cc -E -P -)
skip_32bit=0
%if 0%{?fedora} >= 35 || 0%{?rhel} > 9
skip_32bit=1
%endif
is_latest_fedora=
%if 0%{?fedora} >= 35
is_latest_fedora=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,12 @@ fi
%{_mandir}/man1/*
%changelog
* Sun Feb 26 2023 Dmitry V. Levin <ldv@strace.io> - 6.2-1
- v6.1 -> v6.2.
* 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.