Received: by mail.netbsd.org (Postfix, from userid 605) id 4331C84DA5; Tue, 25 Apr 2023 14:59:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 71D4E84D8D for ; Tue, 25 Apr 2023 14:59:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id IEyGMJAu0VaS for ; Tue, 25 Apr 2023 14:59:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C40CC84D4E for ; Tue, 25 Apr 2023 14:59:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BD84AFA85; Tue, 25 Apr 2023 14:59:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1682434797236700" MIME-Version: 1.0 Date: Tue, 25 Apr 2023 14:59:57 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/inputmethod/fcitx5-kkc To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230425145957.BD84AFA85@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1682434797236700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Apr 25 14:59:57 UTC 2023 Modified Files: pkgsrc/inputmethod/fcitx5-kkc: Makefile Log Message: fcitx5-kkc: required gcc 8 for std::underlying_type_t Not sure if that version is fine, but NetBSD 9 has 7.5 and that is not sufficient. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/inputmethod/fcitx5-kkc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1682434797236700 Content-Disposition: inline Content-Length: 786 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/inputmethod/fcitx5-kkc/Makefile diff -u pkgsrc/inputmethod/fcitx5-kkc/Makefile:1.9 pkgsrc/inputmethod/fcitx5-kkc/Makefile:1.10 --- pkgsrc/inputmethod/fcitx5-kkc/Makefile:1.9 Wed Apr 19 08:10:31 2023 +++ pkgsrc/inputmethod/fcitx5-kkc/Makefile Tue Apr 25 14:59:57 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2023/04/19 08:10:31 adam Exp $ +# $NetBSD: Makefile,v 1.10 2023/04/25 14:59:57 wiz Exp $ DISTNAME= fcitx5-kkc-5.0.4 PKGREVISION= 7 @@ -13,6 +13,10 @@ LICENSE= gnu-gpl-v3 BUILD_DEPENDS+= extra-cmake-modules-[0-9]*:../../devel/extra-cmake-modules +# for std::underlying_type_t +# TODO: check if '8' is correct +GCC_REQD+= 8 + DEPENDS+= skk-jisyo-[0-9]*:../../inputmethod/skk-jisyo DEPENDS+= libkkc-data-[0-9]*:../../misc/libkkc-data --_----------=_1682434797236700--