mirror of
				https://github.com/TrentSPalmer/gentoo-overlay-trent.git
				synced 2025-10-31 01:41:41 -07:00 
			
		
		
		
	add youcompleteme-20190418
This commit is contained in:
		| @@ -1,4 +1,5 @@ | ||||
| EBUILD youcompleteme-20190320.ebuild 5793 BLAKE2B 6cfab65d09706aa8876db7ba5ae7de63a6fbd506fe3d022fb3c78e40a14d5678f6ded1facaabf22ee3304a538916122de2d1c665b182198026d44ca452dde250 SHA512 3ab091138a9b73772b51c91f1daab6a88cca391068f69c18c5858e2f2ff9aed99d3c1993c0cd4e0b8216835a93f61eaf9289f43d172a5d93a13cb202165a1fcc | ||||
| EBUILD youcompleteme-20190407.ebuild 5793 BLAKE2B eea2c7cc3576de95fdbe6d334e23e3d4c65a1a6979c9ea3c0f8e173ffee8c90062cfb6cb7db02d45a1ea517a0d6a12eac418f710cfae8e97a8f1cb2d9e3afdaa SHA512 d60bdf17c353fad03ca65767513534cb27cc99147b432962f416199ed3f9328fa27ac8396be30919967a4dd360577a2618ae7ae8d70a283a74047d23b3dca9ff | ||||
| EBUILD youcompleteme-20190418.ebuild 5793 BLAKE2B 3d2638a59b50136592c7f63c295fe5762e440baa1bd12cb38728be2701f7e8531c674e0fa5e2f2002a07bfffef6e808a80efc04986659126d0702460f8ab2551 SHA512 f4c38f24df73175c8ab4ebca72b4a33607a13fe9309509d1511dc7c4910e33f4f51f6e7a7bc2a998a94f58ba8c58501389a1c4e6e941e2d870892798dc06c480 | ||||
| MISC README.md 1017 BLAKE2B b3ceff351a191e710ae7b9d55602a1a6d1858c403b61d5bcde8c1aac2203093ee15994ced762e9fc996e4b88e65f8f73fd0fd1e27dc5b7fe032291a75b3a53fe SHA512 fb8d02d90df215addc2b13e60975a3d1e41d3cca945294ca1a3013ab337b7dcd834151aabb7712036fb13189a53e69b14a531110cc3820431416cd620404d08f | ||||
| MISC metadata.xml 672 BLAKE2B 27d98400640fe6befc7cc4f35803af907c631d7204b24cafe2f799d528fbfda3be5e1fb2e9dbf93ebc72a66e0ac5a0a7e3c164bb29596a8bde3b1ec2579bed8a SHA512 8cff7a413256f2fed659c9757c6162970d35544ba665c023f3d555b1203d812a3b9caa4e3163a2e708192aaa986435d0f246c76569e30801116ade112a453a70 | ||||
|   | ||||
							
								
								
									
										198
									
								
								app-vim/youcompleteme/youcompleteme-20190418.ebuild
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										198
									
								
								app-vim/youcompleteme/youcompleteme-20190418.ebuild
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,198 @@ | ||||
| # Copyright 1999-2018 Gentoo Foundation | ||||
| # Distributed under the terms of the GNU General Public License v2 | ||||
|  | ||||
| EAPI=6 | ||||
|  | ||||
| PYTHON_COMPAT=( python3_6 ) | ||||
|  | ||||
| inherit eutils cmake-utils git-r3 multilib python-single-r1 vim-plugin | ||||
|  | ||||
| DESCRIPTION="vim plugin: a code-completion engine for Vim" | ||||
| HOMEPAGE="https://github.com/Valloric/YouCompleteMe" | ||||
| EGIT_REPO_URI="https://github.com/Valloric/YouCompleteMe" | ||||
| EGIT_COMMIT="9dee2b4e3f5de5f8b9fdc4790eac35eb2c40257a" | ||||
| SRC_URI="" | ||||
|  | ||||
| LICENSE="GPL-3" | ||||
| SLOT="0" | ||||
| KEYWORDS="~amd64 ~x86" | ||||
| IUSE="clang +doc test mono go rust nodejs +neovim" | ||||
| REQUIRED_USE="${PYTHON_REQUIRED_USE}" | ||||
|  | ||||
| COMMON_DEPEND=" | ||||
| 	${PYTHON_DEPS} | ||||
| 	clang? ( >=sys-devel/clang-7.0:= ) | ||||
| 	mono? ( dev-lang/mono ) | ||||
| 	go?   ( dev-lang/go ) | ||||
| 	rust? ( dev-lang/rust | ||||
| 	        app-vim/rust-vim | ||||
| 	) | ||||
| 	nodejs? ( net-libs/nodejs ) | ||||
| 	neovim? ( app-editors/neovim[python] ) | ||||
| 	dev-libs/boost[python,threads,${PYTHON_USEDEP}] | ||||
| 	|| ( | ||||
| 		app-editors/vim[python,${PYTHON_USEDEP}] | ||||
| 		app-editors/gvim[python,${PYTHON_USEDEP}] | ||||
| 	) | ||||
| " | ||||
|  | ||||
| RDEPEND=" | ||||
| 	${COMMON_DEPEND} | ||||
| 	dev-python/bottle[${PYTHON_USEDEP}] | ||||
| 	dev-python/future[${PYTHON_USEDEP}] | ||||
| 	dev-python/requests[${PYTHON_USEDEP}] | ||||
| 	dev-python/sh[${PYTHON_USEDEP}] | ||||
| 	dev-python/waitress[${PYTHON_USEDEP}] | ||||
| 	virtual/python-futures[${PYTHON_USEDEP}] | ||||
| " | ||||
| DEPEND=" | ||||
| 	${COMMON_DEPEND} | ||||
| 	test? ( | ||||
| 		>=dev-python/mock-1.0.1[${PYTHON_USEDEP}] | ||||
| 		>=dev-python/nose-1.3.0[${PYTHON_USEDEP}] | ||||
| 		dev-cpp/gmock | ||||
| 		dev-cpp/gtest | ||||
| 	) | ||||
| " | ||||
|  | ||||
| CMAKE_IN_SOURCE_BUILD=1 | ||||
| CMAKE_USE_DIR=${S}/third_party/ycmd/cpp | ||||
|  | ||||
| VIM_PLUGIN_HELPFILES="${PN}" | ||||
|  | ||||
| src_prepare() { | ||||
| 	default | ||||
|  | ||||
| 	if ! use test ; then | ||||
| 		sed -i '/^add_subdirectory( tests )/d' third_party/ycmd/cpp/ycm/CMakeLists.txt || die | ||||
| 	fi | ||||
| 	# Argparse is included in python 2.7 | ||||
| 	rm -r "${S}"/third_party/ycmd/cpp/BoostParts || die "Failed to remove bundled boost" | ||||
|  | ||||
| } | ||||
|  | ||||
| src_configure() { | ||||
| 	local mycmakeargs=( | ||||
| 		-DUSE_CLANG_COMPLETER="$(usex clang)" | ||||
| 		-DUSE_SYSTEM_LIBCLANG="$(usex clang)" | ||||
| 		-DUSE_SYSTEM_BOOST=ON | ||||
| 		-DUSE_SYSTEM_GMOCK=ON | ||||
| 		-DUSE_PYTHON2=OFF | ||||
| 	) | ||||
| 	cmake-utils_src_configure | ||||
| } | ||||
|  | ||||
| src_compile() { | ||||
| 	cmake-utils_src_compile | ||||
|  | ||||
| 	if use rust; | ||||
| 	then | ||||
| 		cd "${S}"/third_party/ycmd/third_party/racerd || die "no dir third_party/racerd" | ||||
| 		cargo build --release || die "cargo build failed" | ||||
| 	fi | ||||
|  | ||||
| 	if use mono; | ||||
| 	then | ||||
| 		cd "${S}/third_party/ycmd/third_party/OmniSharpServer" || die "failed cd to OmniSharpServer" | ||||
| 		xbuild /property:Configuration=Release || die "xbuild command failed" | ||||
| 	fi | ||||
|  | ||||
| 	if use go; | ||||
| 	then | ||||
| 		export GOPATH="$GOPATH:${S}/third_party/ycmd/third_party/go" | ||||
| 		cd "${S}/third_party/ycmd/third_party/go/src/github.com/mdempsky/gocode" || die "failed cd to gocode" | ||||
| 		go build || die "failed to go build gocode GOPATH is $GOPATH" | ||||
| 		cd "${S}/third_party/ycmd/third_party/go/src/github.com/rogpeppe/godef" || die "failed cd to godef" | ||||
| 		go build || die "failed to go build godef GOPATH is $GOPATH" | ||||
| 	fi | ||||
|  | ||||
| 	if use nodejs; | ||||
| 	then | ||||
| 		cd "${S}/third_party/ycmd/third_party/tern_runtime" || die "no dir third_party/tern_runtime" | ||||
| 		npm install --production --python=python3 || die "npm install failed" | ||||
| 	fi | ||||
|  | ||||
| } | ||||
|  | ||||
| src_test() { | ||||
| 	cd "${S}/third_party/ycmd/cpp/ycm/tests" | ||||
| 	LD_LIBRARY_PATH="${EROOT}"/usr/$(get_libdir)/llvm \ | ||||
| 		./ycm_core_tests || die | ||||
|  | ||||
| 	cd "${S}"/python/ycm | ||||
|  | ||||
| 	local dirs=( "${S}"/third_party/*/ "${S}"/third_party/ycmd/third_party/*/ ) | ||||
| 	local -x PYTHONPATH=${PYTHONPATH}:$(IFS=:; echo "${dirs[*]}") | ||||
|  | ||||
| 	nosetests --verbose || die | ||||
| } | ||||
|  | ||||
| src_install() { | ||||
|  | ||||
| 	if use rust; | ||||
| 	then | ||||
| 		cd "${S}/third_party/ycmd/third_party/racerd" || die "racerd target wasn't built" | ||||
| 		for f in $(ls -a | tail -n +3 | grep -v target) | ||||
| 		do | ||||
| 			rm -rf "${f}" | ||||
| 		done | ||||
| 		cd "${S}/third_party/ycmd/third_party/racerd/target/release" || die "racerd target wasn't built" | ||||
| 		for f in $(ls -a | tail -n +3 | grep -v '^racerd$') | ||||
| 		do | ||||
| 			rm -rf "${f}" | ||||
| 		done | ||||
| 	fi | ||||
|  | ||||
| 	if use mono; | ||||
| 	then | ||||
| 		cd "${S}/third_party/ycmd/third_party/OmniSharpServer" | ||||
| 		for f in $(ls -a | tail -n +3 | grep -v '^OmniSharp$') | ||||
| 		do | ||||
| 			rm -rf "${f}" | ||||
| 		done | ||||
| 		cd "${S}/third_party/ycmd/third_party/OmniSharpServer/OmniSharp" | ||||
| 		for f in $(ls -a | tail -n +3 | grep -v '^bin$') | ||||
| 		do | ||||
| 			rm -rf "${f}" | ||||
| 		done | ||||
| 	fi | ||||
|  | ||||
| 	if use go; | ||||
| 	then | ||||
| 		cd "${S}/third_party/ycmd/third_party/go/src/github.com/mdempsky/gocode" | ||||
| 		for f in $(ls -a | tail -n +3 | grep -v '^gocode$') | ||||
| 		do | ||||
| 			rm -rf "${f}" | ||||
| 		done | ||||
| 		cd "${S}/third_party/ycmd/third_party/go/src/github.com/rogpeppe/godef" | ||||
| 		for f in $(ls -a | tail -n +3 | grep -v '^godef$') | ||||
| 		do | ||||
| 			rm -rf "${f}" | ||||
| 		done | ||||
| 	fi | ||||
|  | ||||
| 	cd "${S}" | ||||
| 	use doc && dodoc *.md third_party/ycmd/*.md | ||||
| 	rm -r *.md *.sh *.py* *.ini *.yml COPYING.txt ci third_party/ycmd/cpp third_party/ycmd/ci third_party/ycmd/ycmd/tests third_party/ycmd/examples/samples || die | ||||
| 	rm -r third_party/ycmd/{*.md,*.sh,*.yml,.coveragerc,.gitignore,.gitmodules,.travis.yml,build.*,*.txt,run_tests.*,*.ini,update*} || die | ||||
| 	find python -name *test* -exec rm -rf {} + || die | ||||
| 	find third_party/ycmd/third_party -name test -exec rm -rf {} + || die | ||||
| 	egit_clean | ||||
| 	use clang && (rm third_party/ycmd/third_party/clang/lib/libclang.so* || die) | ||||
|  | ||||
| 	vim-plugin_src_install | ||||
|  | ||||
| 	use mono || rm -rf "${D}/usr/share/vim/vimfiles/third_party/ycmd/third_party/OmniSharpServer" | ||||
| 	use rust || rm -rf "${D}/usr/share/vim/vimfiles/third_party/ycmd/third_party/racerd" | ||||
| 	use rust || rm -rf "${D}/usr/share/vim/vimfiles/third_party/ycmd/ycmd/completers/rust" | ||||
| 	use go || rm -rf "${D}/usr/share/vim/vimfiles/third_party/ycmd/ycmd/completers/go" | ||||
| 	use go || rm -rf "${D}/usr/share/vim/vimfiles/third_party/ycmd/third_party/go" | ||||
| 	use nodejs || rm -rf "${D}/usr/share/vim/vimfiles/third_party/ycmd/third_party/tern_runtime" | ||||
| 	use nodejs || rm -rf "${D}/usr/share/vim/vimfiles/third_party/ycmd/ycmd/completers/javascript" | ||||
| 	find "${D}" -name .gitignore -exec rm -rf {} + || die | ||||
| 	find "${D}" -name .travis.yml -exec rm -rf {} + || die | ||||
| 	find "${D}" -name README.rst -exec rm -rf {} + || die | ||||
|  | ||||
| 	python_optimize "${ED}" | ||||
| 	python_fix_shebang "${ED}" | ||||
| } | ||||
		Reference in New Issue
	
	Block a user