The package rpms/gnutls.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/gnutls.git/commit/?id=ae52b0f1bdaa69....
Change: +%ifarch %{ix86}
Thanks.
Full change: ============
commit ae52b0f1bdaa6951b426cd61cde905cbb616296d Author: Daniel P. Berrangé berrange@redhat.com Date: Thu Mar 2 11:14:44 2023 +0000
Disable GNULIB's year2038 support for 64-bit time_t
GNUTLS exposes time_t in its public API and thus the size of time_t is ABI relevant. It can't be changed in size without breaking ABI compatibility with applications built against GNUTLS that use the default time_t size.
https://gitlab.com/gnutls/gnutls/-/issues/1466 https://bugzilla.redhat.com/show_bug.cgi?id=2174758 Signed-off-by: Daniel P. Berrangé berrange@redhat.com
diff --git a/gnutls.spec b/gnutls.spec index 55c9277..23c169a 100644 --- a/gnutls.spec +++ b/gnutls.spec @@ -241,6 +241,9 @@ pushd native_build %endif %if %{with_srp} --enable-srp-authentication \ +%endif +%ifarch %{ix86} + --disable-year2038 \ %endif --enable-sha1-support \ --disable-static \
arch-excludes@lists.fedoraproject.org