From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8BB4C15802F for ; Thu, 9 Mar 2023 05:46:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CE51E08ED; Thu, 9 Mar 2023 05:46:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 10613E08ED for ; Thu, 9 Mar 2023 05:46:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 12AC333BEF8 for ; Thu, 9 Mar 2023 05:46:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 998D38DC for ; Thu, 9 Mar 2023 05:46:24 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1678340762.347fa38461e86eda45f10a275b038386d4f608e1.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: syntax/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: syntax/ebuild.vim X-VCS-Directories: syntax/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 347fa38461e86eda45f10a275b038386d4f608e1 X-VCS-Branch: master Date: Thu, 9 Mar 2023 05:46:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b5d3c7cd-8cfc-4572-b85b-f39ab7a2345f X-Archives-Hash: 8a22255aaf7f00f5325fa3aa537cef45 commit: 347fa38461e86eda45f10a275b038386d4f608e1 Author: Patrick McLean sony com> AuthorDate: Fri Mar 3 19:09:11 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 9 05:46:02 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=347fa384 syntax/ebuild.vim: Add support for check-reqs.eclass Signed-off-by: Patrick McLean sony.com> Closes: https://github.com/gentoo/gentoo-syntax/pull/55 Signed-off-by: Michał Górny gentoo.org> syntax/ebuild.vim | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/syntax/ebuild.vim b/syntax/ebuild.vim index 7c6138b..17c774c 100644 --- a/syntax/ebuild.vim +++ b/syntax/ebuild.vim @@ -275,6 +275,9 @@ syn keyword EbuildTmpfilesKeyword dotmpfiles newtmpfiles tmpfiles_process syn keyword EbuildUdevKeyword get_udevdir udev_dorules udev_newrules udev_reload syn keyword EbuildDeprecatedKeyword udev_get_udevdir +" check-reqs +syn keyword EbuildCheckReqsKeyword check-reqs_pkg_setup check-reqs_pkg_pretend + " EXPORT_FUNCTIONS syn match EbuildExportFunctions /EXPORT_FUNCTIONS/ skipwhite nextgroup=EbuildExportFunctionsFunc,EbuildExportFunctionsFuncE syn match EbuildExportFunctionsFunc contained /\S\+\(\s\|$\)\@=/ skipwhite nextgroup=EbuildExportFunctionsFunc,EbuildExportFunctionsFuncE @@ -344,7 +347,8 @@ syn cluster EbuildThings add=EbuildDependApacheKeyword,EbuildApacheModuleKeyword syn cluster EbuildThings add=EbuildVirtualXKeyword,EbuildGnome2Keyword,EbuildAutoKeyword syn cluster EbuildThings add=EbuildDeprecatedKeyword,EbuildUnpackerKeyword,EbuildUserKeyword syn cluster EbuildThings add=EbuildCDROMKeyword,EbuildLinuxInfoKeyword,EbuildDistutilsFunction -syn cluster EbuildThings add=EbuildCMakeKeyword,EbuildTmpfilesKeyword,EbuildUdevKeyword +syn cluster EbuildThings add=EbuildCMakeKeyword,EbuildCMakeFunction,EbuildTmpfilesKeyword +syn cluster EbuildThings add=EbuildUdevKeyword,EbuildCheckReqsKeyword syn cluster shCommandSubList add=@EbuildThings syn cluster shCommentGroup add=GentooBug @@ -389,6 +393,7 @@ hi def link EbuildUserKeyword Identifier hi def link EbuildCMakeKeyword Identifier hi def link EbuildTmpfilesKeyword Identifier hi def link EbuildUdevKeyword Identifier +hi def link EbuildCheckReqsKeyword Identifier hi def link EbuildDistutilsFunction Special hi def link EclassDocumentationTag Identifier