Re: git: a416ffca6ce6 - main - lang/guile3: Ignore on 32-bit platforms

From: Alexey Dokuchaev <danfe_at_freebsd.org>
Date: Tue, 01 Oct 2024 17:48:26 UTC
On Tue, Oct 01, 2024 at 01:34:35PM +0000, Muhammad Moinur Rahman wrote:
> commit a416ffca6ce6b31318dce4324a4956f9dfd5a152
> 
>   lang/guile3: Ignore on 32-bit platforms
> 
>   - Fails to build on 32-bit platforms
> ...
> +NOT_FOR_ARCHS=	armv7 i386
> +NOT_FOR_ARCHS_REASON=	Does not build on armv7 and i386

NOT_FOR_ARCHS is when some software inherently (like, never) could not work
on a particular machine type.  When it's just broken, we have BROKEN_${arch}
knob, with a value of useful excerpt from the build error message.  You can
find plenty examples in the ports tree with correct usage.

./danfe