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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B33F138334 for ; Wed, 27 Nov 2019 08:09:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E60C8E08CA; Wed, 27 Nov 2019 08:09:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D08E4E08CA for ; Wed, 27 Nov 2019 08:09:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E052B34D463 for ; Wed, 27 Nov 2019 08:09:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66E788B1 for ; Wed, 27 Nov 2019 08:09:21 +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: <1574841991.26a31e34d1fb805f9235fdc196769c0faac302a8.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: 26a31e34d1fb805f9235fdc196769c0faac302a8 X-VCS-Branch: master Date: Wed, 27 Nov 2019 08:09:21 +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: 6418e65e-d918-4641-9ee0-fb170ffd8e65 X-Archives-Hash: a961edef7a70ba3f9963a8134fd93046 commit: 26a31e34d1fb805f9235fdc196769c0faac302a8 Author: Patrick McLean sony com> AuthorDate: Tue Nov 26 22:15:22 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 27 08:06:31 2019 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=26a31e34 syntax/ebuild.vim: add new helpers for distutils-r1/python-r1 Closes: https://github.com/gentoo/gentoo-syntax/pull/25 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 b6ecb06..18fb2af 100644 --- a/syntax/ebuild.vim +++ b/syntax/ebuild.vim @@ -182,7 +182,7 @@ syn keyword EbuildPythonKeyword python_optimize python_scriptinto python_doexe syn keyword EbuildPythonKeyword python_newexe python_doscript python_newscript syn keyword EbuildPythonKeyword python_moduleinto python_domodule python_doheader syn keyword EbuildPythonKeyword python_wrapper_setup python_is_python3 python_is_installed -syn keyword EbuildPythonKeyword python_fix_shebang python_export_utf8_locale +syn keyword EbuildPythonKeyword python_fix_shebang python_export_utf8_locale build_sphinx " python-r1, python-single-r1 and python-any-r1 syn keyword EbuildPythonKeyword python_gen_usedep python_gen_useflags python_gen_cond_dep @@ -212,10 +212,15 @@ syn keyword EbuildDistutilsKeyword distutils-r1_python_install syn keyword EbuildDistutilsKeyword distutils-r1_python_install_all syn match EbuildDistutilsKeyword "esetup\.py" +" distutils-r1 global helpers +syn keyword EbuildDistutilsKeyword distutils_enable_tests +syn keyword EbuildDistutilsKeyword distutils_enable_sphinx + " distutils-r1 sub-phases syn keyword EbuildDistutilsFunction python_prepare python_prepare_all syn keyword EbuildDistutilsFunction python_configure python_configure_all syn keyword EbuildDistutilsFunction python_compile python_compile_all +syn keyword EbuildDistutilsFunction python_compile_all sphinx_compile_all syn keyword EbuildDistutilsFunction python_test python_test_all syn keyword EbuildDistutilsFunction python_install python_install_all