Package Details: neovim-git 0.10.0.r2536.g55c9e2c96e-1

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
Last Packager: Farzat
Votes: 256
Popularity: 2.11
First Submitted: 2014-02-21 19:50 (UTC)
Last Updated: 2024-03-11 05:36 (UTC)

Dependencies (17)

Required by (430)

Sources (3)

Pinned Comments

fwalch commented on 2016-07-04 19:52 (UTC) (edited on 2016-07-04 19:54 (UTC) by fwalch)

Please don't flag this package out-of-date just because the version number displayed on AUR seems old. This is normal for VCS packages. As long as building the package works without problems, it isn't necessary to update the PKGBUILD here. makepkg will automatically retrieve the latest version when you build the package locally.

Latest Comments

« First ‹ Previous 1 .. 26 27 28 29 30 31 32 33 34 35 36 .. 40 Next › Last »

mmlb commented on 2014-08-22 18:56 (UTC)

build is currently breaking due to missing `lua-bitop`.

fwalch commented on 2014-08-19 10:35 (UTC)

@sekret: Created an upstream issue for that: https://github.com/neovim/neovim/pull/1087.

fwalch commented on 2014-08-19 09:49 (UTC)

@flu: It's an upstream issue, see https://github.com/neovim/neovim/pull/1086. @sekret: PKGBUILD highlighting for vim is set in /usr/share/vim/vim74/filetype.vim. This is done by the following in vim's PKGBUILD: # patch filetype.vim for better handling of pacman related files sed -i "s/rpmsave/pacsave/;s/rpmnew/pacnew/;s/,\*\.ebuild/\0,PKGBUILD*,*.install/" \ "${pkgdir}"/usr/share/vim/${_versiondir}/filetype.vim sed -i "/find the end/,+3{s/changelog_date_entry_search/changelog_date_end_entry_search/}" \ "${pkgdir}"/usr/share/vim/${_versiondir}/ftplugin/changelog.vim

beatgammit commented on 2014-08-11 18:35 (UTC)

@sekred - fix for PKGBUILDs; apparently the default filetype for PKGBUILD is conf, but it's really a shell script. au BufNewFile,BufRead PKGBUILD set filetype=sh

sekret commented on 2014-08-09 19:13 (UTC)

I don't get syntax highlighting for PKGBUILD files! :(

fhahn commented on 2014-08-09 18:57 (UTC)

Thanks, I've updated the PKGBUILD.

<deleted-account> commented on 2014-08-09 02:25 (UTC)

Hi, I saw a few issues in the PKGBUILD, so I made a patch. I'm never sure whether AUR users actually use the email address on their profile, so It's probably quicker to just post it here: http://hastebin.com/raw/huhoficoti The commit message should give a good explanation for everything, but if clarification is needed just ask. edit: reposted with hastebin.com/raw/ as url, should be easier to read

<deleted-account> commented on 2014-08-09 02:12 (UTC)

Hi, I saw a few issues in the PKGBUILD, so I made a patch. I'm never sure whether AUR users actually use the email address on their profile, so It's probably quicker to just post it here: http://hastebin.com/huhoficoti.vhdl The commit message should give a good explanation for everything, but if clarification is needed just ask.

<deleted-account> commented on 2014-08-09 02:09 (UTC)

Hi, I saw a few issues in the PKGBUILD so did some work on it. Everything should have an explanation in the commit message, but if any clarification is needed feel free to ask: From 9ba2e98a12183637c737a263e0a86e2a6f3e3337 Mon Sep 17 00:00:00 2001 From: Michael Reed <supertron421@gmail.com> Date: Fri, 8 Aug 2014 22:03:02 -0400 Subject: [PATCH] Various PKGBUILD simplifications/cleanups: - Get rid of $_gitname in place of cloning the repo to $pkgname - Get rid of unneeded $srcdir usage; all package functions start out in $srcdir anyways - Removed manual build dir creation; cmake does this automatically & the NVim build instructions no longer recommend this. - Bracketed two variables for consistency - Removed unneeded quotes - Removed empty conflicts() - Removed gawk & sh from depends(); gawk is part of base-devel and is assumed, regardless of what namcap says (it's frequently wrong), and sh is already pulled in by multiple packages in base-devel so is not needed - Removed -DUSE_BUNDLED=Off; during building cmake complains that it is an unused flag, and diff -ur confirms no difference in pkg.tar.xz contents with and without it (besides the sha256sum of /usr/bin/nvim, which is only because the binary is built non-deterministically). - Source is now cloned directly using git as opposed to HTTPS for speed, See the following http://git-scm.com/book/en/Git-on-the-Server-The-Protocols --- PKGBUILD | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 8a9f009..ef806d8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,18 +1,16 @@ # Maintainer: Florian Hahn <flo@fhahn.com> pkgname=neovim-git -_gitname=neovim pkgdesc="Vim's rebirth for the 21st century" license=('custom:neovim') -pkgver=0.r1385.5f42ba6 +pkgver=0.r1426.19f44fd pkgrel=1 -depends=('libuv' 'ncurses' 'msgpack' 'perl' 'gawk' 'sh') +depends=('libuv' 'ncurses' 'msgpack' 'perl') makedepends=('cmake' 'git' 'unzip' 'lua-lpeg' 'luajit' 'lua' 'lua-cmsgpack') -conflicts=('') provides=('neovim') arch=('i686' 'x86_64') url=('https://github.com/neovim/neovim') -source=('git+https://github.com/neovim/neovim.git') +source=("$pkgname::git://github.com/neovim/neovim.git") md5sums=('SKIP') install=neovim-git.install optdepends=( @@ -20,22 +18,21 @@ optdepends=( ) pkgver() { - cd "${srcdir}/${_gitname}" + cd "${pkgname}" printf "0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } build() { - cd "${srcdir}/${_gitname}" - mkdir build && cd build - cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Release -DUSE_BUNDLED=Off \ - -DCMAKE_INSTALL_PREFIX="/usr" .. + cd "${pkgname}" + cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr make } package() { - cd "${srcdir}/${_gitname}/build" + cd "${pkgname}" DESTDIR="${pkgdir}" make install - install -Dm644 "${srcdir}/${_gitname}/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } # vim:set sw=2 sts=2 et: -- 2.0.4