commit: 9216ee5b0ccc95b0c122523c7470e9adce870742 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri Feb 19 13:27:38 2016 +0000 Commit: Tim Harder <radhermit <AT> gentoo <DOT> 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
