The package rpms/abrt.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/abrt.git/commit/?id=67fc5aa7565f8695....
Change: +%ifnarch riscv64
Thanks.
Full change: ============
commit 67fc5aa7565f8695eda11f3ba88f8edb2d6483f9 Author: David Abdurachmanov davidlt@rivosinc.com Date: Wed Nov 20 16:45:35 2024 +0000
Disable Requires on kexec-tools for riscv64
kexec is supported for riscv64 on the kernel side, but the tooling side is not yet upstreamed. Status is unknown.
See recent failed kexec-tools builds on riscv64 here: http://fedora.riscv.rocks/koji/packageinfo?packageID=17577
Signed-off-by: David Abdurachmanov davidlt@rivosinc.com Signed-off-by: Richard W.M. Jones rjones@redhat.com
diff --git a/abrt.spec b/abrt.spec index 6d83b4d..783d3c4 100644 --- a/abrt.spec +++ b/abrt.spec @@ -57,7 +57,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 2.17.6 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL-2.0-or-later URL: https://abrt.readthedocs.org/ Source: https://github.com/abrt/%%7Bname%7D/archive/%%7Bversion%7D/%%7Bname%7D-%%7Bv... @@ -249,7 +249,11 @@ log. Summary: %{name}'s vmcore addon Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops +# On riscv64, kexec-tools does not compile: +# "configure: error: unsupported architecture riscv64" +%ifnarch riscv64 Requires: kexec-tools +%endif %if %{with python3} Requires: python3-abrt Requires: python3-augeas @@ -982,6 +986,9 @@ killall abrt-dbus >/dev/null 2>&1 || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh
%changelog +* Wed Nov 20 2024 David Abdurachmanov davidlt@rivosinc.com - 2.17.6-3 +- Disable Requires for kexec-tools on riscv64 (not supported) + * Wed Sep 11 2024 Neal Gompa ngompa@fedoraproject.org - 2.17.6-2 - Drop container handler (rhbz#2295150)
arch-excludes@lists.fedoraproject.org