[arch-commits] Commit in vim-jedi/repos (3 files)

Felix Yan felixonmars at archlinux.org
Fri Nov 20 16:52:43 UTC 2020


    Date: Friday, November 20, 2020 @ 16:52:43
  Author: felixonmars
Revision: 757911

archrelease: copy trunk to community-staging-any

Added:
  vim-jedi/repos/community-staging-any/
  vim-jedi/repos/community-staging-any/PKGBUILD
    (from rev 757910, vim-jedi/trunk/PKGBUILD)
  vim-jedi/repos/community-staging-any/vim-jedi-update.patch
    (from rev 757910, vim-jedi/trunk/vim-jedi-update.patch)

-----------------------+
 PKGBUILD              |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 vim-jedi-update.patch |   22 ++++++++++++++++++++++
 2 files changed, 69 insertions(+)

Copied: vim-jedi/repos/community-staging-any/PKGBUILD (from rev 757910, vim-jedi/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2020-11-20 16:52:43 UTC (rev 757911)
@@ -0,0 +1,47 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Danilo Bargen <gezuru at gmail.com>
+
+pkgname=vim-jedi
+_reponame=jedi-vim
+pkgver=0.10.0
+pkgrel=4
+pkgdesc='Vim plugin for jedi, an awesome Python autocompletion'
+url='https://github.com/davidhalter/jedi-vim'
+arch=('any')
+license=('MIT')
+depends=('vim' 'python-jedi' 'python')
+optdepends=('vim-supertab: tab completion'
+            'python2-jedi: Python 2 support')
+checkdepends=('python-pytest')
+groups=('vim-plugins')
+options=('!emptydirs')
+source=(https://github.com/davidhalter/${_reponame}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+        vim-jedi-update.patch)
+sha256sums=('4a5d9e572d08ee4b7637adba5cda355273c35c04e83790e918ea66483a000ffc'
+            'b003c64823ad63fbfc12d6684980f4c99ba977868cc179e5e3f724ff9721eea9')
+
+prepare() {
+  cd ${_reponame}-${pkgver}
+  patch -p1 -i ../vim-jedi-update.patch
+  sed -E 's|zipimport|zipimport\\nzipp|' -i test/vspec/pyimport.vim
+}
+
+check() {
+  cd ${_reponame}-${pkgver}
+  py.test
+}
+
+package() {
+  cd ${_reponame}-${pkgver}
+
+  install -d "${pkgdir}/usr/share/vim/vimfiles"
+  cp -dpr --no-preserve=ownership pythonx "${pkgdir}/usr/share/vim/vimfiles"
+  cp -dpr --no-preserve=ownership doc "${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"
+  cp -dpr --no-preserve=ownership plugin "${pkgdir}/usr/share/vim/vimfiles/plugin"
+
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}

Copied: vim-jedi/repos/community-staging-any/vim-jedi-update.patch (from rev 757910, vim-jedi/trunk/vim-jedi-update.patch)
===================================================================
--- community-staging-any/vim-jedi-update.patch	                        (rev 0)
+++ community-staging-any/vim-jedi-update.patch	2020-11-20 16:52:43 UTC (rev 757911)
@@ -0,0 +1,22 @@
+diff --git a/test/vspec/signatures.vim b/test/vspec/signatures.vim
+index ca4248e..6090ee9 100644
+--- a/test/vspec/signatures.vim
++++ b/test/vspec/signatures.vim
+@@ -41,7 +41,7 @@ describe 'signatures'
+         doautocmd CursorHoldI
+         noautocmd normal istaticmethod()
+         doautocmd CursorHoldI
+-        Expect getline(1) == '?!?jedi=0, ?!?            (*_*f: Callable*_*) ?!?jedi?!?'
++        Expect getline(1) == '?!?jedi=0, ?!?            (*_*f: Callable[..., Any]*_*) ?!?jedi?!?'
+     end
+ 
+     it 'no signature'
+@@ -68,7 +68,7 @@ describe 'signatures'
+         redir => msg
+         Python jedi_vim.show_call_signatures()
+         redir END
+-        Expect msg == "\nstaticmethod(f: Callable)"
++        Expect msg == "\nstaticmethod(f: Callable[..., Any])"
+ 
+         redir => msg
+         doautocmd InsertLeave



More information about the arch-commits mailing list