Received: by mail.netbsd.org (Postfix, from userid 605) id A5CDD84EA8; Tue, 16 May 2023 14:35:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D50FB84E63 for ; Tue, 16 May 2023 14:35:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id mSLM_GVPeHis for ; Tue, 16 May 2023 14:35:45 +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 365C284D21 for ; Tue, 16 May 2023 14:35:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 29B5DFA87; Tue, 16 May 2023 14:35:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1684247745278260" MIME-Version: 1.0 Date: Tue, 16 May 2023 14:35:45 +0000 From: "nikita" Subject: CVS commit: pkgsrc/devel/lua-language-server To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20230516143545.29B5DFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1684247745278260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Tue May 16 14:35:45 UTC 2023 Modified Files: pkgsrc/devel/lua-language-server: Makefile Log Message: lua-language-server: maybe fix build on EL Linux. (which encounters errors with -std=c++17) To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/lua-language-server/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1684247745278260 Content-Disposition: inline Content-Length: 798 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/lua-language-server/Makefile diff -u pkgsrc/devel/lua-language-server/Makefile:1.6 pkgsrc/devel/lua-language-server/Makefile:1.7 --- pkgsrc/devel/lua-language-server/Makefile:1.6 Fri May 12 21:37:32 2023 +++ pkgsrc/devel/lua-language-server/Makefile Tue May 16 14:35:44 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2023/05/12 21:37:32 nikita Exp $ +# $NetBSD: Makefile,v 1.7 2023/05/16 14:35:44 nikita Exp $ DISTNAME= lua-language-server-3.6.19 PKGNAME= ${DISTNAME:S/lua/${LUA_PKGPREFIX}/} @@ -22,6 +22,8 @@ TOOL_DEPENDS+= ninja-build-[0-9]*:../.. # 3rd/luamake, maybe needs path patching: DEPENDS+= clang-[0-9]*:../../lang/clang +USE_LANGUAGES+= c c++17 + BUILDLINK_TRANSFORM+= rm:-Werror INSTALLATION_DIRS+= share/lua-language-server/bin --_----------=_1684247745278260--