mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
* Updated to g20180210
Java semantic completion support has been added as experimental upstream. An option for this will be added in a future update of the port.
This commit is contained in:
parent
29e1eb7423
commit
cf4fbecc3a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=461643
@ -2,8 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= YouCompleteMe
|
||||
DISTVERSION= g20171203
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= g20180210
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= ultima@FreeBSD.org
|
||||
@ -28,9 +27,9 @@ RUN_DEPENDS= vim:editors/vim \
|
||||
USES= cmake python:2.7
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= Valloric
|
||||
GH_TAGNAME= 290dd9472
|
||||
GH_TUPLE= Valloric:ycmd:f58c1f7b6:ycm/third_party/ycmd \
|
||||
vheon:JediHTTP:67c8d27c6:ycmd5/third_party/ycmd/third_party/JediHTTP
|
||||
GH_TAGNAME= c2a7b3c
|
||||
GH_TUPLE= Valloric:ycmd:aa04988:ycm/third_party/ycmd \
|
||||
vheon:JediHTTP:d283a73:ycmd5/third_party/ycmd/third_party/JediHTTP
|
||||
|
||||
CMAKE_SOURCE_PATH+= ${WRKSRC}/third_party/ycmd/cpp
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
TIMESTAMP = 1513125436
|
||||
SHA256 (Valloric-YouCompleteMe-g20171203-290dd9472_GH0.tar.gz) = 035fef0f466eafd31c0020252098d6c8701575203d85658e7ea93ba1ae666b5f
|
||||
SIZE (Valloric-YouCompleteMe-g20171203-290dd9472_GH0.tar.gz) = 262862
|
||||
SHA256 (Valloric-ycmd-f58c1f7b6_GH0.tar.gz) = 56134203064bc65e57de89ed434910128ce0267d8cd0daa6271267d4a9e30c5a
|
||||
SIZE (Valloric-ycmd-f58c1f7b6_GH0.tar.gz) = 3432391
|
||||
SHA256 (vheon-JediHTTP-67c8d27c6_GH0.tar.gz) = 07b4e0193c43dde1139299af88999801fa42ce2d9382299e31c06ff9f418f6a6
|
||||
SIZE (vheon-JediHTTP-67c8d27c6_GH0.tar.gz) = 20955
|
||||
TIMESTAMP = 1518385235
|
||||
SHA256 (Valloric-YouCompleteMe-g20180210-c2a7b3c_GH0.tar.gz) = b9c43452dfe9bb3d49efb4dcccb30579008a5c04b2da89f8e70a49cbc5f3a120
|
||||
SIZE (Valloric-YouCompleteMe-g20180210-c2a7b3c_GH0.tar.gz) = 275077
|
||||
SHA256 (Valloric-ycmd-aa04988_GH0.tar.gz) = 7490cf826eed8416d477f7c0db182e4e19978b5c58a0929fb7dc23d4928d2aaf
|
||||
SIZE (Valloric-ycmd-aa04988_GH0.tar.gz) = 3780074
|
||||
SHA256 (vheon-JediHTTP-d283a73_GH0.tar.gz) = 54c150e89aa9f80e3838c8d30602dbb5b5a892beaa8a3d05179deaba6f4e109c
|
||||
SIZE (vheon-JediHTTP-d283a73_GH0.tar.gz) = 20959
|
||||
|
@ -12,6 +12,7 @@ share/vim/vimfiles/python/ycm/client/completer_available_request.py
|
||||
share/vim/vimfiles/python/ycm/client/completion_request.py
|
||||
share/vim/vimfiles/python/ycm/client/debug_info_request.py
|
||||
share/vim/vimfiles/python/ycm/client/event_notification.py
|
||||
share/vim/vimfiles/python/ycm/client/messages_request.py
|
||||
share/vim/vimfiles/python/ycm/client/omni_completion_request.py
|
||||
share/vim/vimfiles/python/ycm/client/shutdown_request.py
|
||||
share/vim/vimfiles/python/ycm/client/ycmd_keepalive.py
|
||||
@ -24,14 +25,17 @@ share/vim/vimfiles/python/ycm/syntax_parse.py
|
||||
share/vim/vimfiles/python/ycm/tests/__init__.py
|
||||
share/vim/vimfiles/python/ycm/tests/base_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/client/__init__.py
|
||||
share/vim/vimfiles/python/ycm/tests/client/base_request_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/client/command_request_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/client/completion_request_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/client/debug_info_request_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/client/messages_request_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/client/omni_completion_request_tests.py
|
||||
share/vim/vimfiles/python/ycm/tests/command_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/completion_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/diagnostic_filter_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/event_notification_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/mock_utils.py
|
||||
share/vim/vimfiles/python/ycm/tests/omni_completer_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/paths_test.py
|
||||
share/vim/vimfiles/python/ycm/tests/postcomplete_test.py
|
||||
@ -416,13 +420,6 @@ share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/select_type.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/sp_typeinfo.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/utf8_codecvt_facet.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/utf8_codecvt_facet.ipp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/winapi/basic_types.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/winapi/character_code_conversion.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/winapi/config.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/winapi/error_codes.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/winapi/error_handling.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/winapi/get_last_error.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/winapi/local_memory.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/detail/workaround.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/dynamic_bitset.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/dynamic_bitset/config.hpp
|
||||
@ -1601,6 +1598,7 @@ share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/optional/detail/optiona
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/optional/detail/optional_reference_spec.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/optional/detail/optional_relops.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/optional/detail/optional_swap.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/optional/detail/optional_trivially_copyable_base.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/optional/optional.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/optional/optional_fwd.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/parameter/aux_/arg_list.hpp
|
||||
@ -1702,6 +1700,7 @@ share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/language/stdcpp.
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/library.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/library/c.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/library/c/_prefix.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/library/c/cloudabi.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/library/c/gnu.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/library/c/uc.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/library/c/vms.h
|
||||
@ -1746,12 +1745,18 @@ share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/os/windows.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/other.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/other/endian.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/cloudabi.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/ios.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/mingw.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/mingw32.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/mingw64.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/windows_desktop.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/windows_phone.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/windows_runtime.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/windows_server.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/windows_store.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/windows_system.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/platform/windows_uwp.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/version.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/predef/version_number.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/preprocessor.hpp
|
||||
@ -2046,8 +2051,8 @@ share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/implic
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/obj_mgr_arg_from_python.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/object_manager.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/pointer_type_id.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/pyobject_traits.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/pyobject_type.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/%%PYTHON_PYOEXTENSION%%bject_traits.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/%%PYTHON_PYOEXTENSION%%bject_type.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/pytype_function.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/pytype_object_mgr_traits.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/converter/registered.hpp
|
||||
@ -2104,7 +2109,7 @@ share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/detail/prefix.hp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/detail/preprocessor.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/detail/python22_fixed.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/detail/python_type.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/detail/raw_pyobject.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/detail/raw_%%PYTHON_PYOEXTENSION%%bject.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/detail/referent_storage.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/detail/scope.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/python/detail/sfinae.hpp
|
||||
@ -2726,6 +2731,13 @@ share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/utility/value_init.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/version.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/visit_each.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/weak_ptr.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/winapi/basic_types.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/winapi/character_code_conversion.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/winapi/config.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/winapi/error_codes.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/winapi/error_handling.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/winapi/get_last_error.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/boost/winapi/local_memory.hpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/libs/filesystem/src/codecvt_error_category.cpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/libs/filesystem/src/operations.cpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/BoostParts/libs/filesystem/src/path.cpp
|
||||
@ -2817,7 +2829,6 @@ share/vim/vimfiles/third_party/ycmd/cpp/ycm/ClangCompleter/TranslationUnit.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/ClangCompleter/TranslationUnitStore.cpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/ClangCompleter/TranslationUnitStore.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/ClangCompleter/UnsavedFile.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/DLLDefines.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/IdentifierCompleter.cpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/IdentifierCompleter.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/IdentifierDatabase.cpp
|
||||
@ -2890,7 +2901,6 @@ share/vim/vimfiles/third_party/ycmd/cpp/ycm/benchmarks/benchmark/src/sysinfo.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/benchmarks/benchmark/src/timers.cc
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/benchmarks/benchmark/src/timers.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/benchmarks/main.cpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/exceptions.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/versioning.cpp
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/versioning.h
|
||||
share/vim/vimfiles/third_party/ycmd/cpp/ycm/ycm_core.cpp
|
||||
@ -2962,9 +2972,15 @@ share/vim/vimfiles/third_party/ycmd/ycmd/completers/general_completer.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/go/__init__.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/go/go_completer.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/go/hook.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/java/__init__.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/java/hook.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/java/java_completer.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/javascript/__init__.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/javascript/hook.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/javascript/tern_completer.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/language_server/__init__.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/language_server/language_server_completer.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/language_server/language_server_protocol.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/objc/hook.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/objcpp/hook.py
|
||||
share/vim/vimfiles/third_party/ycmd/ycmd/completers/python/__init__.py
|
||||
|
Loading…
Reference in New Issue
Block a user