Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6ECA084F95 for ; Tue, 18 Jul 2023 18:22:12 +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 avIrtdSxRkNi for ; Tue, 18 Jul 2023 18:22:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D4C5E84CFA for ; Tue, 18 Jul 2023 18:22:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CEC06FBDB; Tue, 18 Jul 2023 18:22:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1689704531202150" MIME-Version: 1.0 Date: Tue, 18 Jul 2023 18:22:11 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/inputmethod To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230718182211.CEC06FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1689704531202150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Jul 18 18:22:11 UTC 2023 Modified Files: pkgsrc/inputmethod/fcitx5-gtk: Makefile pkgsrc/inputmethod/fcitx5-mozc: Makefile.common pkgsrc/inputmethod/mozc-server: Makefile.common Log Message: inputmethod: Adapt packages to USE_(CC|CXX)_FEATURES where possible To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/inputmethod/fcitx5-gtk/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/inputmethod/fcitx5-mozc/Makefile.common cvs rdiff -u -r1.37 -r1.38 pkgsrc/inputmethod/mozc-server/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1689704531202150 Content-Disposition: inline Content-Length: 2297 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/inputmethod/fcitx5-gtk/Makefile diff -u pkgsrc/inputmethod/fcitx5-gtk/Makefile:1.11 pkgsrc/inputmethod/fcitx5-gtk/Makefile:1.12 --- pkgsrc/inputmethod/fcitx5-gtk/Makefile:1.11 Mon Jul 10 08:03:24 2023 +++ pkgsrc/inputmethod/fcitx5-gtk/Makefile Tue Jul 18 18:22:11 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2023/07/10 08:03:24 nia Exp $ +# $NetBSD: Makefile,v 1.12 2023/07/18 18:22:11 nia Exp $ DISTNAME= fcitx5-gtk-5.0.4 PKGREVISION= 5 @@ -17,8 +17,7 @@ USE_CMAKE= yes USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ -# C++17 -GCC_REQD+= 7 +USE_CXX_FEATURES+= c++17 PKGCONFIG_OVERRIDE+= fcitx-gclient/Fcitx5GClient.pc.in Index: pkgsrc/inputmethod/fcitx5-mozc/Makefile.common diff -u pkgsrc/inputmethod/fcitx5-mozc/Makefile.common:1.5 pkgsrc/inputmethod/fcitx5-mozc/Makefile.common:1.6 --- pkgsrc/inputmethod/fcitx5-mozc/Makefile.common:1.5 Tue Jun 6 12:41:39 2023 +++ pkgsrc/inputmethod/fcitx5-mozc/Makefile.common Tue Jul 18 18:22:11 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2023/06/06 12:41:39 riastradh Exp $ +# $NetBSD: Makefile.common,v 1.6 2023/07/18 18:22:11 nia Exp $ # used by inputmethod/fcitx5-mozc/Makefile # Find version number in src/data/version/mozc_version_template.bzl @@ -22,7 +22,8 @@ TOOL_DEPENDS+= ninja-build-[0-9]*:../../ USE_LANGUAGES= c c++ USE_TOOLS+= gmake pkg-config -GCC_REQD+= 4.7 # for c++11 + +USE_CXX_FEATURES+= c++11 PYTHON_VERSIONS_INCOMPATIBLE= 27 Index: pkgsrc/inputmethod/mozc-server/Makefile.common diff -u pkgsrc/inputmethod/mozc-server/Makefile.common:1.37 pkgsrc/inputmethod/mozc-server/Makefile.common:1.38 --- pkgsrc/inputmethod/mozc-server/Makefile.common:1.37 Tue Jun 6 12:41:40 2023 +++ pkgsrc/inputmethod/mozc-server/Makefile.common Tue Jul 18 18:22:11 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.37 2023/06/06 12:41:40 riastradh Exp $ +# $NetBSD: Makefile.common,v 1.38 2023/07/18 18:22:11 nia Exp $ # used by inputmethod/ibus-mozc/Makefile # used by inputmethod/mozc-elisp/Makefile @@ -36,7 +36,8 @@ TOOL_DEPENDS+= ninja-build-[0-9]*:../../ USE_LANGUAGES= c c++ USE_TOOLS+= gmake pkg-config -GCC_REQD+= 4.7 # for c++11 + +USE_CXX_FEATURES+= c++11 CHECK_PORTABILITY_SKIP+= third_party/protobuf/src/google/protobuf/compiler/zip_output_unittest.sh --_----------=_1689704531202150--