diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2018-06-16 22:22:03 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-06-16 22:22:03 +0200 |
commit | 3ca19d0bcb3b7453c81cf3a291f0193eb67fdc4c (patch) | |
tree | 32fab525b2728bcf9e28a8d31b7ba5f5dd31db56 /app-vim | |
parent | app-vim/pyclewn: add missing dependency on pdb-clone. (diff) | |
download | gentoo-3ca19d0bcb3b7453c81cf3a291f0193eb67fdc4c.tar.gz gentoo-3ca19d0bcb3b7453c81cf3a291f0193eb67fdc4c.tar.bz2 gentoo-3ca19d0bcb3b7453c81cf3a291f0193eb67fdc4c.zip |
app-vim/easytags: add patch against ctags detection.
Closes: https://bugs.gentoo.org/649024
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/easytags/easytags-3.11.ebuild | 12 | ||||
-rw-r--r-- | app-vim/easytags/files/easytags-3.11-fix-ctags-detection.patch | 54 |
2 files changed, 63 insertions, 3 deletions
diff --git a/app-vim/easytags/easytags-3.11.ebuild b/app-vim/easytags/easytags-3.11.ebuild index e7ddf382b0fb..79b37e481e5a 100644 --- a/app-vim/easytags/easytags-3.11.ebuild +++ b/app-vim/easytags/easytags-3.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -14,15 +14,21 @@ LICENSE="MIT" KEYWORDS="amd64 x86" REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RDEPEND="${PYTHON_DEPS} +RDEPEND=" + ${PYTHON_DEPS} >=app-vim/vim-misc-1.17.6 dev-util/ctags" VIM_PLUGIN_HELPFILES="${PN}.txt" -S=${WORKDIR}/vim-${P} +S="${WORKDIR}/vim-${P}" + +PATCHES=( + "${FILESDIR}/${P}-fix-ctags-detection.patch" +) src_prepare() { + epatch "${PATCHES[@]}" # remove unnecessary files rm addon-info.json INSTALL.md README.md || die } diff --git a/app-vim/easytags/files/easytags-3.11-fix-ctags-detection.patch b/app-vim/easytags/files/easytags-3.11-fix-ctags-detection.patch new file mode 100644 index 000000000000..56b24dfe406f --- /dev/null +++ b/app-vim/easytags/files/easytags-3.11-fix-ctags-detection.patch @@ -0,0 +1,54 @@ +From f5746bdfd9942b00c349e53f3f4917ae73bb6797 Mon Sep 17 00:00:00 2001 +From: Mathias Andersson <wraul@dbox.se> +Date: Thu, 24 Dec 2015 14:24:34 +0100 +Subject: [PATCH] Fix detection of Universal Ctags. + +Recently Universal Ctags changed version from 'Development' to '0.0.0' +which broke the detection. +--- + autoload/xolox/easytags.vim | 32 +++++++++++++++++++------------- + 1 file changed, 19 insertions(+), 13 deletions(-) + +diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim +index d0dec21..3c85e6a 100644 +--- a/autoload/xolox/easytags.vim ++++ b/autoload/xolox/easytags.vim +@@ -78,19 +78,25 @@ function! xolox#easytags#check_ctags_compatible(name, min_version) " {{{2 + call xolox#misc#msg#debug("easytags.vim %s: Command '%s' returned nonzero exit code %i!", g:xolox#easytags#version, a:name, result['exit_code']) + else + " Extract the version number from the output. +- let pattern = '\(Exuberant\|Universal\) Ctags \zs\(\d\+\(\.\d\+\)*\|Development\)' +- let g:easytags_ctags_version = matchstr(get(result['stdout'], 0, ''), pattern) +- " Deal with development builds. +- if g:easytags_ctags_version == 'Development' +- call xolox#misc#msg#debug("easytags.vim %s: Assuming development build is compatible ..", g:xolox#easytags#version, a:name) +- return 1 +- endif +- " Make sure the version is compatible. +- if xolox#misc#version#at_least(a:min_version, g:easytags_ctags_version) +- call xolox#misc#msg#debug("easytags.vim %s: Version is compatible! :-)", g:xolox#easytags#version) +- return 1 +- else +- call xolox#misc#msg#debug("easytags.vim %s: Version is not compatible! :-(", g:xolox#easytags#version) ++ let pattern = '\(\w\+\) Ctags \(\d\+\(\.\d\+\)*\|Development\)' ++ let match = matchlist(get(result['stdout'], 0, ''), pattern) ++ let g:easytags_ctags_fork = match[1] ++ let g:easytags_ctags_version = match[2] ++ if g:easytags_ctags_fork != '' && g:easytags_ctags_version != '' ++ call xolox#misc#msg#debug("easytags.vim %s: Detected %s Ctags %s", g:xolox#easytags#version, g:easytags_ctags_fork, g:easytags_ctags_version) ++ if g:easytags_ctags_fork == 'Universal' ++ " All versions should be compatible. ++ call xolox#misc#msg#debug("easytags.vim %s: Assuming all versions is compatible ..", g:xolox#easytags#version) ++ return 1 ++ elseif g:easytags_ctags_fork == 'Exuberant' ++ " Make sure the version is compatible. ++ if xolox#misc#version#at_least(a:min_version, g:easytags_ctags_version) ++ call xolox#misc#msg#debug("easytags.vim %s: Version is compatible! :-)", g:xolox#easytags#version) ++ return 1 ++ else ++ call xolox#misc#msg#debug("easytags.vim %s: Version is not compatible! :-(", g:xolox#easytags#version) ++ endif ++ endif + endif + endif + call xolox#misc#msg#debug("easytags.vim %s: Standard output of command: %s", g:xolox#easytags#version, string(result['stdout'])) |