- v6.2 -> v6.3.
This commit is contained in:
Dmitry V. Levin 2023-05-08 10:24:36 +00:00
parent ed2487001d
commit 0db61a527e
3 changed files with 8 additions and 5 deletions

2
.gitignore vendored
View File

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

View File

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

View File

@ -1,6 +1,6 @@
Summary: Tracks and displays system calls associated with a running process
Name: strace
Version: 6.2
Version: 6.3
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 2023 > .year
echo -n 2022-10-16 > doc/.strace.1.in.date
echo -n 2023-05-06 > doc/.strace.1.in.date
echo -n 2022-01-01 > doc/.strace-log-merge.1.in.date
%build
@ -81,7 +81,7 @@ file -L /bin/sh
gcc --version |head -1
ld --version |head -1
kver="$(printf '%%s\n%%s\n' '#include <linux/version.h>' 'LINUX_VERSION_CODE' | gcc -E -P -)"
printf 'kernel-headers %%s.%%s.%%s\n' $(($kver/65536)) $(($kver/256%%256)) $(($kver%%256))
printf 'kernel-headers %%s.%%s.%%s\n' $((kver/65536)) $((kver/256%%256)) $((kver%%256))
echo 'END OF BUILD ENVIRONMENT INFORMATION'
CFLAGS_FOR_BUILD="$RPM_OPT_FLAGS"; export CFLAGS_FOR_BUILD
@ -122,6 +122,9 @@ fi
%{_mandir}/man1/*
%changelog
* Mon May 08 2023 Dmitry V. Levin <ldv@strace.io> - 6.3-1
- v6.2 -> v6.3.
* Sun Feb 26 2023 Dmitry V. Levin <ldv@strace.io> - 6.2-1
- v6.1 -> v6.2.