[arch-commits] Commit in neovim/repos/community-x86_64 (3 files)

Sven-Hendrik Haase svenstaro at archlinux.org
Wed May 29 14:57:13 UTC 2019


    Date: Wednesday, May 29, 2019 @ 14:57:13
  Author: svenstaro
Revision: 474340

archrelease: copy trunk to community-x86_64

Added:
  neovim/repos/community-x86_64/PKGBUILD
    (from rev 474339, neovim/trunk/PKGBUILD)
Deleted:
  neovim/repos/community-x86_64/PKGBUILD
  neovim/repos/community-x86_64/neovim.install

----------------+
 PKGBUILD       |   98 ++++++++++++++++++++++++++-----------------------------
 neovim.install |   10 -----
 2 files changed, 48 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-05-29 14:56:59 UTC (rev 474339)
+++ PKGBUILD	2019-05-29 14:57:13 UTC (rev 474340)
@@ -1,50 +0,0 @@
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-# Contributor: Florian Walch <florian+aur at fwalch.com>
-# Contributor: Florian Hahn <flo at fhahn.com>
-
-pkgname=neovim
-pkgver=0.3.5
-pkgrel=1
-pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
-arch=('x86_64')
-url='https://neovim.io'
-license=('custom:neovim')
-depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm' 'luajit')
-makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf')
-optdepends=('python2-neovim: for Python 2 plugin support (see :help python)'
-            'python-neovim: for Python 3 plugin support (see :help python)'
-            'xclip: for clipboard support (or xsel) (see :help clipboard)'
-            'xsel: for clipboard support (or xclip) (see :help clipboard)')
-source=(https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz)
-sha512sums=('8e7c14df59fdcb0eb03a2dbed5d56ae3b1eadb9aac805e69da03f7e964936721abf6c04ca6bf91d10b4451030f4440814ac445b58a0b06d11c7f6663c1b22019')
-install=neovim.install
-
-build() {
-  cmake -Hneovim-${pkgver} -Bbuild -GNinja \
-        -DCMAKE_BUILD_TYPE=Release \
-        -DCMAKE_INSTALL_PREFIX=/usr \
-        -DENABLE_JEMALLOC=ON
-  cmake --build build
-}
-
-check() {
-  cd "${srcdir}/build"
-  ./bin/nvim --version
-  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
-}
-
-package() {
-  cd "${srcdir}/build"
-  DESTDIR="${pkgdir}" cmake --build . --target install
-
-  cd "${srcdir}/neovim-${pkgver}"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 runtime/nvim.desktop "${pkgdir}/usr/share/applications/nvim.desktop"
-  install -Dm644 runtime/nvim.png "${pkgdir}/usr/share/pixmaps/nvim.png"
-
-  # Make Arch vim packages work
-  mkdir -p "${pkgdir}"/usr/share/vim
-  echo "set runtimepath+=/usr/share/vim/vimfiles" > "${pkgdir}"/usr/share/nvim/sysinit.vim
-}
-
-# vim:set sw=2 sts=2 et:

Copied: neovim/repos/community-x86_64/PKGBUILD (from rev 474339, neovim/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-05-29 14:57:13 UTC (rev 474340)
@@ -0,0 +1,48 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Florian Walch <florian+aur at fwalch.com>
+# Contributor: Florian Hahn <flo at fhahn.com>
+
+pkgname=neovim
+pkgver=0.3.6
+pkgrel=1
+pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
+arch=('x86_64')
+url='https://neovim.io'
+license=('custom:neovim')
+depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm' 'luajit')
+makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf')
+optdepends=('python-neovim: for Python 3 plugin support (see :help python)'
+            'xclip: for clipboard support (or xsel) (see :help clipboard)'
+            'xsel: for clipboard support (or xclip) (see :help clipboard)')
+source=(https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz)
+sha512sums=('54c9f70d1ecc1b555d2bde8c480a834de7a12f77753d0d322d459bd3651057499b0d61c4854bce00575eb517db750e0e43dd7f20d83e7d42fe08722ed5c7446e')
+
+build() {
+  cmake -Hneovim-${pkgver} -Bbuild -GNinja \
+        -DCMAKE_BUILD_TYPE=Release \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DENABLE_JEMALLOC=ON
+  cmake --build build
+}
+
+check() {
+  cd "${srcdir}/build"
+  ./bin/nvim --version
+  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
+}
+
+package() {
+  cd "${srcdir}/build"
+  DESTDIR="${pkgdir}" cmake --build . --target install
+
+  cd "${srcdir}/neovim-${pkgver}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 runtime/nvim.desktop "${pkgdir}/usr/share/applications/nvim.desktop"
+  install -Dm644 runtime/nvim.png "${pkgdir}/usr/share/pixmaps/nvim.png"
+
+  # Make Arch vim packages work
+  mkdir -p "${pkgdir}"/usr/share/vim
+  echo "set runtimepath+=/usr/share/vim/vimfiles" > "${pkgdir}"/usr/share/nvim/sysinit.vim
+}
+
+# vim:set sw=2 sts=2 et:

Deleted: neovim.install
===================================================================
--- neovim.install	2019-05-29 14:56:59 UTC (rev 474339)
+++ neovim.install	2019-05-29 14:57:13 UTC (rev 474340)
@@ -1,10 +0,0 @@
-# $1: new package version
-post_install() {
-  echo ":: The Neovim executable is called 'nvim'."
-  echo ":: If you are already familiar with Vim, see ':help nvim-from-vim'"
-  echo "   to get started."
-  echo ":: If you have any questions, check the following page first:"
-  echo "   https://github.com/neovim/neovim/wiki/FAQ"
-}
-
-# vim:set sw=2 sts=2 et:



More information about the arch-commits mailing list