The new rpm-build-4.13.90-0.git14002.2.fc27 is stricter in handling macros
<http://rpm.org/wiki/Releases/4.14.0#macros>. As a result you can experience
build failures like this:

error: Too many levels of recursion in macro expansion. It is likely caused by 
recursive macro declaration.
error: Macro %__requires_exclude failed to expand
error: line 33: %global __requires_exclude %__requires_exclude|^perl\\(Glib\\)$

This example comes from perl-Cairo-GObject.spec that contained:

%{?perl_default_filter}
%global __requires_exclude %__requires_exclude|^perl\\(Cairo\\)$
%global __requires_exclude %__requires_exclude|^perl\\(Glib\\)$

The spec code raises the error if %__requires_exclude has not yet been
defined. This happens if perl_default_filter is not defined and that happens
if perl-macros is not installed and that's true in source RPM build root (the
build root where source packages are created before koji hub distributes them to
full-arch build workers).

The fix is to rewrite the __requires_exclude macro definition in the way that
it expands the original __requires_exclude macro only if it exists:

%global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(Cairo\\)$

This used to be good practise even before emerging the 4.14 RPM. But some
people used the shorter form for legibility with the excuse that it does not
cause any harm. Well, now it causes.

-- Petr

Attachment: signature.asc
Description: PGP signature

_______________________________________________
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org

Reply via email to