From c84c428b7d8795b6063f490739b76bab774668b7 Mon Sep 17 00:00:00 2001 From: Justin Lecher Date: Fri, 22 Jan 2016 21:36:10 +0100 Subject: app-vim/youcompleteme: Use egit_clean to clean workdir * Add missing die Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher --- app-vim/youcompleteme/youcompleteme-20130910.ebuild | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'app-vim/youcompleteme/youcompleteme-20130910.ebuild') diff --git a/app-vim/youcompleteme/youcompleteme-20130910.ebuild b/app-vim/youcompleteme/youcompleteme-20130910.ebuild index cb098b8a7075..4defa4ff37ee 100644 --- a/app-vim/youcompleteme/youcompleteme-20130910.ebuild +++ b/app-vim/youcompleteme/youcompleteme-20130910.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 + PYTHON_COMPAT=( python2_7 ) -inherit multilib python-single-r1 cmake-utils vim-plugin + +inherit eutils multilib python-single-r1 cmake-utils vim-plugin if [[ ${PV} == 9999* ]] ; then EGIT_REPO_URI="git://github.com/Valloric/YouCompleteMe.git" @@ -54,14 +56,14 @@ src_configure() { src_test() { # TODO: use system gmock/gtest - cd "${S}"/cpp + cd "${S}"/cpp || die emake ycm_core_tests cd ycm/tests || die LD_LIBRARY_PATH="${EROOT}"/usr/$(get_libdir)/llvm \ "${S}"/cpp/ycm/tests/ycm_core_tests || die - cd "${S}"/python/ycm - nosetests || die + cd "${S}"/python/ycm || die + nosetests --verbose || die } src_install() { @@ -79,10 +81,6 @@ src_install() { pkg_postinst() { vim-plugin_pkg_postinst - if [[ -z ${REPLACING_VERSIONS} ]] ; then - elog - elog "optional dependencies:" - elog " dev-python/jedi (better python autocompletion)" - elog - fi + [[ -z ${REPLACING_VERSIONS} ]] && \ + optfeature "better python autocompletion" dev-python/jedi } -- cgit v1.2.3-65-gdbad