Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 May 2026 03:57:27 +0000
From:      Alexey Dokuchaev <danfe@freebsd.org>
To:        Max Brazhnikov <makc@freebsd.org>
Cc:        ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org
Subject:   Re: git: dac08b903d64 - main - graphics/drawy: Mark IGNORE for i386
Message-ID:  <agaZp54SXfNGvgNw@FreeBSD.org>
In-Reply-To: <6a043a75.315f2.47f3bddc@gitrepo.freebsd.org>

index | next in thread | previous in thread | raw e-mail

On Wed, May 13, 2026 at 08:46:45AM +0000, Max Brazhnikov wrote:
> commit dac08b903d64d39b2cb5a1bec79f0ad48820ecfc
> 
>     graphics/drawy: Mark IGNORE for i386
> [...]
> @@ -7,6 +7,8 @@ MAINTAINER=	kde@FreeBSD.org
>  COMMENT=	Infinite whiteboard application
>  WWW=		https://apps.kde.org/drawy/
>  
> +IGNORE_i386=	upstream does not test builds on i386

I don't think we should artificially limit our package coverage by
what resources upstream got for tests, we have our own test build
infrastructure. :)

In this case it's probably more appropriate to point out the actual
bug in the code (TextItem's overloaded getLineRange() method clash):

    [[nodiscard]] std::pair<qsizetype, qsizetype> getLineRange
    (int lineNumber) const; // int is 32-bit on all supported arches

    [[nodiscard]] std::pair<qsizetype, qsizetype> getLineRange
    (qsizetype position) const; // qsizetype is assumed to be 64-bit

BROKEN_i386=	text.hpp:59:51: error: class member cannot be redeclared

Ditto for armv7, ppc32, etc. I guess but I haven't tested those.

./danfe


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?agaZp54SXfNGvgNw>