git: 77f3f88c8ffa - main - mail/mailpit: only for aarch64 and amd64

From: Robert Clausecker <fuz_at_FreeBSD.org>
Date: Sun, 16 Mar 2025 10:20:18 UTC
The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=77f3f88c8ffafda0566efb87f8481413f6f318d8

commit 77f3f88c8ffafda0566efb87f8481413f6f318d8
Author:     Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2025-02-25 09:17:19 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2025-03-16 10:19:25 +0000

    mail/mailpit: only for aarch64 and amd64
    
    The modernc.org/sqlite package is not supported on other architectures.
    
    See also:       https://pkg.go.dev/modernc.org/sqlite#hdr-Supported_platforms_and_architectures
    Approved by:    portmgr (build fix blanket)
---
 mail/mailpit/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mail/mailpit/Makefile b/mail/mailpit/Makefile
index 9b82da498753..2f5e437417a2 100644
--- a/mail/mailpit/Makefile
+++ b/mail/mailpit/Makefile
@@ -13,7 +13,8 @@ WWW=		https://github.com/axllent/mailpit
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BROKEN_i386=	Fails to build on i386
+ONLY_FOR_ARCHS=	aarch64 amd64
+ONLY_FOR_ARCHS_REASON=	dependency modernc.org/sqlite only supported on these
 
 BUILD_DEPENDS=	npm>0:www/npm