This PKGBUILD uses the current date to refresh the source url, once it's downloaded the pkgver() function should update the version accordingly.
Search Criteria
Package Details: neovim-nightly-bin 0.12.0+dev+79+gd9405c7935-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/neovim-nightly-bin.git (read-only, click to copy) |
---|---|
Package Base: | neovim-nightly-bin |
Description: | Fork of Vim aiming to improve user experience, plugins, and GUIs (nightly build) |
Upstream URL: | https://neovim.io |
Keywords: | editor neovim nvim terminal vim |
Licenses: | custom:neovim |
Conflicts: | neovim |
Provides: | neovim, vim-plugin-runtime |
Submitter: | quebin31 |
Maintainer: | boydaihungst |
Last Packager: | boydaihungst |
Votes: | 60 |
Popularity: | 1.21 |
First Submitted: | 2020-12-27 19:08 (UTC) |
Last Updated: | 2025-04-05 02:52 (UTC) |
Dependencies (6)
- hicolor-icon-theme (hicolor-icon-theme-gitAUR)
- python-neovim (python-pynvim-gitAUR, python-pynvim) (optional) – for Python 3 plugin support (see :help provider-python)
- ruby-neovimAUR (optional) – for Ruby plugin support (see :help provider-ruby)
- wl-clipboard (wl-clipboard-gitAUR, wl-clipboard-rs-gitAUR, wl-clipboard-rsAUR) (optional) – for clipboard support on wayland (see :help clipboard)
- xclip (wl-clipboard-x11AUR, xclip-gitAUR) (optional) – for X11 clipboard support (or xsel) (see :help provider-clipboard)
- xsel (xsel-gitAUR, wl-clipboard-x11AUR) (optional) – for X11 clipboard support (or xclip) (see :help provider-clipboard)
Required by (453)
- 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 433 more...
Sources (4)
quebin31 commented on 2021-10-07 15:37 (UTC)
quebin31 commented on 2021-10-07 15:34 (UTC)
@dedguy21 source url is working fine, sometimes upstream removes the nightly release, making the source url invalid
dedguy21 commented on 2021-10-07 15:21 (UTC)
Is this package still being maintained? The pkg no longer installs because the source url is no longer valid. Is this something that will be fixed?
jambuilds commented on 2021-09-15 18:34 (UTC)
Why not use sha256sums
for the integrity check? They're all listed on the release page and it'd be more secure than skipping the section altogether.
starmatt commented on 2021-09-13 21:28 (UTC)
I have the same problem as @tim999, the package does not update automatically and I get the same message
-> neovim-nightly-bin: local (0.6.0+dev+262+g643cb8a6e-1) is newer than AUR (0.6.0+dev+43+g02bf251bb-1)
@tim999, just curious, what AUR helper are you using ?
tim999 commented on 2021-09-01 15:05 (UTC)
It appears that once this package has installed a nightly version, it will not pick up the next nightly version.
:: Checking development packages...
-> neovim-nightly-bin: local (0.6.0+dev+98+ga5c25e4f3-1) is newer than AUR (0.6.0+dev+43+g02bf251bb-1)
there is nothing to do
If you reinstall the package, it picks up the most recent nightly.
dchusovitin commented on 2021-06-15 02:13 (UTC) (edited on 2021-06-15 02:15 (UTC) by dchusovitin)
@caleb, yep, my fault. I forgot about g flag.
Atif commented on 2021-06-11 14:18 (UTC)
head and awk is unnecessary. the whole version thing can be done with sed.
./bin/nvim nvim --version | sed -n 's/^NVIM v//;1s/-/+/gp'
alerque commented on 2021-06-10 19:28 (UTC)
@dchusovitin Sorry, but s/v//
only replaces the first instance of v, you would need a global flag s/v//g
to replace all instances. Hence if you know the string starts with a "v" you don't need to anchor the match, just don't do a global replace.
dchusovitin commented on 2021-06-09 18:34 (UTC)
@quebin31, sorry, but: sed 's/v//' - it will replace all "v" (commit hash may contain "v") sed 's/^v//' - instead of, remove only first "v" char
Pinned Comments
quebin31 commented on 2021-10-07 15:37 (UTC)
This PKGBUILD uses the current date to refresh the source url, once it's downloaded the pkgver() function should update the version accordingly.