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 15BEF158062 for ; Thu, 9 Mar 2023 05:46:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28A41E08EC; 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 0EC12E08EC 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 DBC4633BEEB for ; Thu, 9 Mar 2023 05:46:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73D258D8 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: <1678340761.9dcae15c83ee35b69320313decc42f115714cbfa.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: 9dcae15c83ee35b69320313decc42f115714cbfa 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: 819683a2-8787-47bd-8028-a4ce0b014f41 X-Archives-Hash: 5ae02909f858080d55e2a49099abb712 commit: 9dcae15c83ee35b69320313decc42f115714cbfa Author: Patrick McLean sony com> AuthorDate: Fri Mar 3 19:08:12 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 9 05:46:01 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=9dcae15c syntax/ebuild.vim: Add support for tmpfiles.eclass Signed-off-by: Patrick McLean sony.com> Signed-off-by: Michał Górny gentoo.org> syntax/ebuild.vim | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/syntax/ebuild.vim b/syntax/ebuild.vim index 0027d5c..e87e031 100644 --- a/syntax/ebuild.vim +++ b/syntax/ebuild.vim @@ -268,6 +268,9 @@ syn keyword EbuildCMakeKeyword cmake_build mycmakeargs MYCMAKEARGS syn keyword EbuildCMakeKeyword cmake_src_prepare cmake_src_configure cmake_src_compile syn keyword EbuildCMakeKeyword cmake_src_test cmake_src_install +" tmpfiles +syn keyword EbuildTmpfilesKeyword dotmpfiles newtmpfiles tmpfiles_process + " EXPORT_FUNCTIONS syn match EbuildExportFunctions /EXPORT_FUNCTIONS/ skipwhite nextgroup=EbuildExportFunctionsFunc,EbuildExportFunctionsFuncE syn match EbuildExportFunctionsFunc contained /\S\+\(\s\|$\)\@=/ skipwhite nextgroup=EbuildExportFunctionsFunc,EbuildExportFunctionsFuncE @@ -337,7 +340,7 @@ 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 +syn cluster EbuildThings add=EbuildCMakeKeyword,EbuildTmpfilesKeyword syn cluster shCommandSubList add=@EbuildThings syn cluster shCommentGroup add=GentooBug @@ -380,6 +383,7 @@ hi def link EbuildLinuxInfoKeyword Identifier hi def link EbuildUnpackerKeyword Identifier hi def link EbuildUserKeyword Identifier hi def link EbuildCMakeKeyword Identifier +hi def link EbuildTmpfilesKeyword Identifier hi def link EbuildDistutilsFunction Special hi def link EclassDocumentationTag Identifier