The package rpms/qm-dsp.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/qm-dsp.git/commit/?id=b669b329dbb5f7....
Change: +%ifarch %{ix86}
Thanks.
Full change: ============
commit b669b329dbb5f7d6c8f5d3ad90ddde1443f7bff5 Author: Yaakov Selkowitz yselkowi@redhat.com Date: Thu Jan 23 23:20:16 2025 -0500
Fix i686 build
Since GCC 14, builds fail if -Werror=incompatible-pointer-type is triggered. While the 64-bit arches build successfully, there are type mismatches on 32-bit arches (namely, i686) between long and int. Since i686 is only a multilib, and is only still built because its dependents have not yet excluded it (even though they could already), better to just ignore the issue than try to fix it.
diff --git a/qm-dsp.spec b/qm-dsp.spec index c52ffae..d4f1d88 100644 --- a/qm-dsp.spec +++ b/qm-dsp.spec @@ -1,6 +1,11 @@ # debuginfo not supported for static libraries, RB #209316 %global debug_package %{nil}
+# Avoid -Werror=incompatible-pointer-type on 32-bit arches +%ifarch %{ix86} +%global build_type_safety_c 2 +%endif + Name: qm-dsp Version: 1.7.1 Release: 25%{?dist}
commit 24660335de2c687aa905269820f222298a92eb6b Author: Fedora Release Engineering releng@fedoraproject.org Date: Sat Jan 18 21:21:06 2025 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
diff --git a/qm-dsp.spec b/qm-dsp.spec index 291c59e..c52ffae 100644 --- a/qm-dsp.spec +++ b/qm-dsp.spec @@ -3,7 +3,7 @@
Name: qm-dsp Version: 1.7.1 -Release: 24%{?dist} +Release: 25%{?dist} Summary: Library for DSP and Music Informatics purposes
# some source files with different original licenses, see README.txt @@ -98,6 +98,9 @@ LDFLAGS="%{?__global_ldflags}" \
%changelog +* Sat Jan 18 2025 Fedora Release Engineering releng@fedoraproject.org - 1.7.1-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 26 2024 Miroslav Suchý msuchy@redhat.com - 1.7.1-24 - convert license to SPDX
arch-excludes@lists.fedoraproject.org