Package Details: vim-plug-neo 0.11.0-1

Git Clone URL: https://aur.archlinux.org/vim-plug-neo.git (read-only, click to copy)
Package Base: vim-plug-neo
Description: A minimalist Vim plugin manager. (install for neovim user)
Upstream URL: https://github.com/junegunn/vim-plug
Keywords: neo-vim; vim-plug
Licenses: MIT
Conflicts: neovim-plug, neovim-plug-git
Provides: vim-plug-neo
Submitter: Heersin
Maintainer: Heersin
Last Packager: Heersin
Votes: 0
Popularity: 0.000000
First Submitted: 2022-02-11 09:54 (UTC)
Last Updated: 2022-10-21 15:28 (UTC)

Latest Comments

Heersin commented on 2022-10-21 15:28 (UTC)

Thanks @patatahooligan I will update it.

patatahooligan commented on 2022-10-21 12:54 (UTC) (edited on 2022-10-21 12:54 (UTC) by patatahooligan)

There is a bug in the PKGBUILD which prevents it from building. When you extract the code you get a directory vim-plug-${pkgver}/, but you try to install from vim-plug-neo-${pkgver} instead.

I would also recommend changing the url to use https.

diff --git a/PKGBUILD b/PKGBUILD
index 17c8986..ffba0b9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ pkgver=0.11.0
 pkgrel=1
 pkgdesc="A minimalist Vim plugin manager. (install for neovim user)"
 arch=('any')
-url="http://github.com/junegunn/vim-plug"
+url="https://github.com/junegunn/vim-plug"
 depends=('neovim')
 license=('MIT')
 conflicts=(
@@ -25,7 +25,7 @@ sha256sums=('b313ac61f9deffca9e6cb2dabd2cc13716d5fe8dafaab5e5c97dc2820fd50dbd'
 install=${pkgname}.install

 package() {
-  install -Dm 644 ${pkgname}-${pkgver}/plug.vim ${pkgdir}/usr/share/nvim/site/autoload/plug.vim
+  install -Dm 644 vim-plug-${pkgver}/plug.vim ${pkgdir}/usr/share/nvim/site/autoload/plug.vim
   install -Dm 644 sample.init.vim ${pkgdir}/usr/share/vim-plug/sample.init.vim
 }

bluewolf commented on 2022-05-13 08:21 (UTC)

==> Starting package()... install: cannot stat 'vim-plug-neo-0.11.0/plug.vim': No such file or directory ==> ERROR: A failure occurred in package(). Aborting... -> error making: vim-plug-neo How to fix?

Heersin commented on 2022-02-11 10:03 (UTC)

vim-plug itself supports both vim and neovim. The only difference is the path to put the vim-plug initial script. It's been separated into vim-plug/neovim-plug/*-git. And looks like they are out-of-date.