I have the same error as @Gregoire do.
Search Criteria
Package Details: neovim-git 0.11.0.r1727.g524cdd35c2-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/neovim-git.git (read-only, click to copy) |
---|---|
Package Base: | neovim-git |
Description: | Fork of Vim aiming to improve user experience, plugins, and GUIs |
Upstream URL: | https://neovim.io |
Keywords: | editor |
Licenses: | custom:neovim |
Conflicts: | neovim |
Provides: | neovim, vim-plugin-runtime |
Submitter: | fhahn |
Maintainer: | Farzat (gpanders) |
Last Packager: | gpanders |
Votes: | 259 |
Popularity: | 1.10 |
First Submitted: | 2014-02-21 19:50 (UTC) |
Last Updated: | 2025-02-10 14:14 (UTC) |
Dependencies (24)
- libluv
- libutf8proc (libutf8proc-gitAUR)
- libuv (libuv-gitAUR)
- lua51-lpeg
- luajit (luajit-2.1-lua52-gitAUR, luajit-gitAUR, luajit-openrestyAUR)
- msgpack-c (msgpack-c-gitAUR)
- tree-sitter (tree-sitter-gitAUR)
- tree-sitter-c (tree-sitter-c-gitAUR)
- tree-sitter-lua (tree-sitter-lua-gitAUR)
- tree-sitter-markdown (tree-sitter-markdown-gitAUR)
- tree-sitter-query
- tree-sitter-vim (tree-sitter-vim-gitAUR)
- tree-sitter-vimdoc (tree-sitter-vimdoc-gitAUR)
- unibilium
- cmake (cmake-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- ninja (ninja-kitwareAUR, ninja-memAUR, ninja-fuchsia-gitAUR, ninja-gitAUR, ninja-jobserverAUR) (make)
- unzip (unzip-natspecAUR, unzip-zstdAUR) (make)
- python-pynvim (python-pynvim-gitAUR) (optional) – for Python plugin support (see :help python)
- tree-sitter-bash (tree-sitter-bash-gitAUR) (optional) – tree-sitter parser for bash
- Show 4 more dependencies...
Required by (451)
- autoricer-bin (requires neovim) (optional)
- candyvim-git (requires neovim)
- cmp-buffer (requires neovim)
- cppman-git (requires neovim) (optional)
- deoplete (requires neovim) (optional)
- deoplete-git (requires neovim) (optional)
- eovim (requires neovim)
- fvim (requires neovim)
- fvim-bin (requires neovim)
- glrnvim (requires neovim)
- gnvim (requires neovim)
- gnvim-git (requires neovim)
- goneovim-bin (requires neovim)
- goneovim-git (requires neovim)
- grg-git (requires neovim) (optional)
- lua51-prompt-style (requires neovim) (optional)
- lunarvim-git (requires neovim)
- mason.nvim (requires neovim)
- neoray-git (requires neovim)
- neovide-git (requires neovim)
- Show 431 more...
Sources (3)
Latest Comments
« First ‹ Previous 1 .. 34 35 36 37 38 39 40 41 Next › Last »
ivenvd commented on 2014-02-26 08:05 (UTC)
Gregoire commented on 2014-02-25 17:35 (UTC)
I had the same error with previous AUR and as it seems you don't have the problem maybe someone could help me : http://pastebin.com/dPVhM53y
Thank you very much !
fhahn commented on 2014-02-25 17:19 (UTC)
I've added a message stating that the executable was renamed to `nvim` (I think I'm going to remove this message in the future again) and added vim-runtime as optional dependency.
mytbk commented on 2014-02-25 13:46 (UTC)
The vim-runtime package has a lot of .vim files that neovim can use, and I think
it can be an optional dependency.
colinkeenan commented on 2014-02-25 03:29 (UTC)
I just heard about this when I decided to browse github and then figured it would probably already be in AUR.
It took me a moment to figure out the executable was named nvim though. It seems like a good idea to let people know that using a post install message the way google-chrome does.
Barthalion commented on 2014-02-25 00:21 (UTC)
thiderman: both are in the base-devel group, which you should have installed before playing with AUR.
fhahn commented on 2014-02-24 23:05 (UTC)
thiderman, could you post the error messages without libtool and automake installed? I tried it without and it worked for me.
There was another error with this PKGBUILd though. Upstream, the executable got renamed once again. I've updated the PKGBUILD to use nvim as name for the installed executable instead of neovim, to be closer to upstream.
thiderman commented on 2014-02-24 22:47 (UTC)
libtool and automake are also required as dependencies.
devm33 commented on 2014-02-24 18:07 (UTC)
The build error below occurres on my system when performing makepkg -s
install: cannot stat ‘/home/devm33/pkgbuild/neovim-git/src/neovim/build/src/vim’: No such file or directory
The following patch will fix it:
--- PKGBUILD.backup 2014-02-25 03:03:04.715858763 +0900
+++ PKGBUILD 2014-02-25 03:03:12.535858948 +0900
@@ -28,7 +28,7 @@
}
package() {
- install -Dm755 "${srcdir}/${_gitname}/build/src/vim" "${pkgdir}/usr/bin/neovim"
+ install -Dm755 "${srcdir}/${_gitname}/build/bin/vim" "${pkgdir}/usr/bin/neovim"
install -Dm644 "${srcdir}/${_gitname}/vim-license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
Pinned Comments
fwalch commented on 2016-07-04 19:52 (UTC) (edited on 2016-07-04 19:54 (UTC) by fwalch)