The package rpms/pcp.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/pcp.git/commit/?id=ed23474ee7041ab40....
Change: +%ifarch ix86
Thanks.
Full change: ============
commit ed23474ee7041ab408a492aa514edd53205e5ae4 Author: Nathan Scott nathans@redhat.com Date: Tue Jul 30 12:44:04 2024 +1000
Disable perl modules on 32-bit systems due to time64_t issues there
diff --git a/pcp.spec b/pcp.spec index 4acbcc0..9e10f3c 100644 --- a/pcp.spec +++ b/pcp.spec @@ -1,6 +1,6 @@ Name: pcp Version: 6.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: System-level performance monitoring and performance management License: GPL-2.0-or-later AND LGPL-2.1-or-later AND CC-BY-3.0 URL: https://pcp.io @@ -29,7 +29,12 @@ ExcludeArch: %{ix86} %global _ps_executable /bin/ps %endif
+# On 32-bit systems time64_t and perl modules do not play well together +%ifarch ix86 +%global disable_perl 1 +%else %global disable_perl 0 +%endif
%if 0%{?fedora} || 0%{?rhel} > 5 %global disable_selinux 0 @@ -3571,6 +3576,9 @@ fi %files zeroconf -f pcp-zeroconf-files.rpm
%changelog +* Tue Jul 30 2024 Nathan Scott nathans@redhat.com - 6.3.0-2 +- Disable perl components on i386 due to time64_t issues. + * Tue Jul 30 2024 Nathan Scott nathans@redhat.com - 6.3.0-1 - Updates to PCP selinux policy (BZ #2278017, #2278049, #2278050) - Resolved pmcheck.1 man page naming conflict (BZ #2290840)
arch-excludes@lists.fedoraproject.org