From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4F74259CA3 for ; Sun, 6 Mar 2016 12:02:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFDCA21C01A for ; Sun, 6 Mar 2016 12:02:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76C75E07C7 for ; Sat, 5 Mar 2016 23:35:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7A22C340B19 for ; Sat, 5 Mar 2016 23:35:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7697823BD for ; Sat, 5 Mar 2016 23:35:18 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1457220670.9216ee5b0ccc95b0c122523c7470e9adce870742.radhermit@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: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 9216ee5b0ccc95b0c122523c7470e9adce870742 X-VCS-Branch: master Date: Sat, 5 Mar 2016 23:35:18 +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-Archives-Salt: eddf3d6e-8129-42b1-bf27-c47d06785686 X-Archives-Hash: b80576c3f268a617cae96369d86896d6 commit: 9216ee5b0ccc95b0c122523c7470e9adce870742 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 19 13:27:38 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat Mar 5 23:31:10 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=9216ee5b syntax/ebuild: Update for python-r1 syntax/ebuild.vim | 39 +++++++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 10 deletions(-) diff --git a/syntax/ebuild.vim b/syntax/ebuild.vim index ca134ac..d690629 100644 --- a/syntax/ebuild.vim +++ b/syntax/ebuild.vim @@ -159,16 +159,35 @@ syn keyword EbuildAltKeyword alternatives_pkg_postrm " rpm syn keyword EbuildRPMKeyword rpm_unpack rpm_src_unpack -" python -syn keyword EbuildPythonKeyword python_pkg_setup python_convert_shebangs python_clean_installation_image -syn keyword EbuildPythonKeyword python_src_prepare python_src_configure python_src_compile python_src_test -syn keyword EbuildPythonKeyword python_src_install python_execute_function python_copy_sources -syn keyword EbuildPythonKeyword python_generate_wrapper_scripts python_set_active_version python_need_rebuild -syn keyword EbuildPythonKeyword PYTHON python_get_implementation python_get_implementational_package -syn keyword EbuildPythonKeyword python_get_includedir python_get_libdir python_get_sitedir python_get_library -syn keyword EbuildPythonKeyword python_get_version python_execute_nosetests python_execute_py.test -syn keyword EbuildPythonKeyword python_execute_trial python_enable_pyc python_disable_pyc python_mod_optimize -syn keyword EbuildPythonKeyword python_mod_cleanup +" python (deprecated) +syn keyword EbuildDeprecatedKeyword python_pkg_setup python_convert_shebangs python_clean_installation_image +syn keyword EbuildDeprecatedKeyword python_src_prepare python_src_configure python_src_compile python_src_test +syn keyword EbuildDeprecatedKeyword python_src_install python_execute_function +syn keyword EbuildDeprecatedKeyword python_generate_wrapper_scripts python_set_active_version python_need_rebuild +syn keyword EbuildDeprecatedKeyword PYTHON python_get_implementation python_get_implementational_package +syn keyword EbuildDeprecatedKeyword python_get_libdir python_get_library +syn keyword EbuildDeprecatedKeyword python_get_version python_execute_nosetests python_execute_py.test +syn keyword EbuildDeprecatedKeyword python_execute_trial python_enable_pyc python_disable_pyc python_mod_optimize +syn keyword EbuildDeprecatedKeyword python_mod_cleanup + +" python-utils-r1 +syn keyword EbuildPythonKeyword python_export python_get_sitedir python_get_includedir +syn keyword EbuildPythonKeyword python_get_library_path python_get_CFLAGS python_get_LIBS +syn keyword EbuildPythonKeyword python_get_PYTHON_CONFIG python_get_scriptdir +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 + +" python-r1, python-single-r1 and python-any-r1 +syn keyword EbuildPythonKeyword python_gen_usedep python_gen_useflags python_gen_cond_dep +syn keyword EbuildPythonKeyword python_gen_impl_dep python_copy_sources python_foreach_impl +syn keyword EbuildPythonKeyword python_setup python_replicate_script python_gen_any_dep +syn keyword EbuildPythonKeyword python-single-r1_pkg_setup python-any-r1_pkg_setup + +" deprecated functions +syn keyword EbuildDeprecatedKeyword python_parallel_foreach_impl python_export_best " check-kernel syn keyword EbuildCheckKernelKeyword check_version_h get_KV_info is_2_4_kernel is_2_5_kernel is_2_6_kernel