Date: Tuesday, January 13, 2015 @ 22:54:04 Author: lfleischer Revision: 125885
upgpkg: vim-jedi 0.7.0-6 * Fix optdepend message (fixes FS#41984). * Add vimdoc (implements FS#42792). Modified: vim-jedi/trunk/PKGBUILD ----------+ PKGBUILD | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2015-01-13 21:43:35 UTC (rev 125884) +++ PKGBUILD 2015-01-13 21:54:04 UTC (rev 125885) @@ -4,7 +4,7 @@ pkgname=vim-jedi _reponame=jedi-vim pkgver=0.7.0 -pkgrel=5 +pkgrel=6 pkgdesc='Vim plugin for jedi, an awesome Python autocompletion.' arch=('any') url="https://github.com/davidhalter/${_reponame}" @@ -11,7 +11,7 @@ license=('MIT') depends=('vim' 'python-jedi' 'python') optdepends=('vim-supertab: for tab completion' - 'python2-jedi: for Python 3 support') + 'python2-jedi: for Python 2 support') groups=('vim-plugins') source=("https://github.com/davidhalter/${_reponame}/archive/${pkgver}.tar.gz" '4724e18b633e54dbaac39759770601cc1979893a.patch' @@ -31,9 +31,10 @@ package() { cd "$srcdir/$_reponame-$pkgver" - install -d "${pkgdir}/usr/share/vim/vimfiles" + install -d "${pkgdir}/usr/share/vim/vimfiles/doc" cp -dp --no-preserve=ownership jedi_vim.py initialize.py "${pkgdir}/usr/share/vim/vimfiles/" + cp -dp --no-preserve=ownership doc/jedi-vim.txt "${pkgdir}/usr/share/vim/vimfiles/doc/" cp -dpr --no-preserve=ownership after "${pkgdir}/usr/share/vim/vimfiles/after" cp -dpr --no-preserve=ownership autoload "${pkgdir}/usr/share/vim/vimfiles/autoload" cp -dpr --no-preserve=ownership ftplugin "${pkgdir}/usr/share/vim/vimfiles/ftplugin"