[arch-commits] Commit in neovim/repos (6 files)

Anatol Pomozov anatolik at archlinux.org
Fri Jan 22 23:45:35 UTC 2016


    Date: Saturday, January 23, 2016 @ 00:45:35
  Author: anatolik
Revision: 158635

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  neovim/repos/community-testing-i686/
  neovim/repos/community-testing-i686/PKGBUILD
    (from rev 158634, neovim/trunk/PKGBUILD)
  neovim/repos/community-testing-i686/neovim.install
    (from rev 158634, neovim/trunk/neovim.install)
  neovim/repos/community-testing-x86_64/
  neovim/repos/community-testing-x86_64/PKGBUILD
    (from rev 158634, neovim/trunk/PKGBUILD)
  neovim/repos/community-testing-x86_64/neovim.install
    (from rev 158634, neovim/trunk/neovim.install)

-----------------------------------------+
 community-testing-i686/PKGBUILD         |   52 ++++++++++++++++++++++++++++++
 community-testing-i686/neovim.install   |   10 +++++
 community-testing-x86_64/PKGBUILD       |   52 ++++++++++++++++++++++++++++++
 community-testing-x86_64/neovim.install |   10 +++++
 4 files changed, 124 insertions(+)

Copied: neovim/repos/community-testing-i686/PKGBUILD (from rev 158634, neovim/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD	                        (rev 0)
+++ community-testing-i686/PKGBUILD	2016-01-22 23:45:35 UTC (rev 158635)
@@ -0,0 +1,52 @@
+# 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.1.1
+pkgrel=2
+pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
+arch=('i686' 'x86_64')
+url='https://neovim.io'
+license=('custom:neovim')
+depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm')
+makedepends=('cmake' 'luajit' 'lua51-messagepack' 'lua51-lpeg')
+optdepends=('python2-neovim: for Python 2 plugin support (see :help nvim-python)'
+            'python-neovim: for Python 3 plugin support (see :help nvim-python)'
+            'xclip: for clipboard support (or xsel) (see :help nvim-clipboard)'
+            'xsel: for clipboard support (or xclip) (see :help nvim-clipboard)')
+source=("https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz"
+        msgpack-14-compat.patch::https://github.com/neovim/neovim/commit/feb70192a85d04343ecc383ea9a42aa8cd15e98d.patch)
+sha256sums=('f39bcab23457c66ce0d67dcf8029743703f860413db0070f75d4f0ffad27c6c1'
+            '16aa4fb704fc613ce4148ec7e0da8458d956022502e1b64f2f72c3d8b90ffc63')
+install=neovim.install
+
+prepare() {
+  cd "neovim-${pkgver}"
+  patch -p1 < "${srcdir}/msgpack-14-compat.patch"
+}
+
+build() {
+  mkdir -p "${srcdir}/build"
+  cd "${srcdir}/build"
+
+  cmake "../neovim-${pkgver}" \
+        -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DENABLE_JEMALLOC=ON
+  make
+}
+
+check() {
+  cd "${srcdir}/build"
+  ./bin/nvim --version
+  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
+}
+
+package() {
+  cd "${srcdir}/build"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 "${srcdir}/neovim-${pkgver}"/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set sw=2 sts=2 et:

Copied: neovim/repos/community-testing-i686/neovim.install (from rev 158634, neovim/trunk/neovim.install)
===================================================================
--- community-testing-i686/neovim.install	                        (rev 0)
+++ community-testing-i686/neovim.install	2016-01-22 23:45:35 UTC (rev 158635)
@@ -0,0 +1,10 @@
+# $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:

Copied: neovim/repos/community-testing-x86_64/PKGBUILD (from rev 158634, neovim/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2016-01-22 23:45:35 UTC (rev 158635)
@@ -0,0 +1,52 @@
+# 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.1.1
+pkgrel=2
+pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
+arch=('i686' 'x86_64')
+url='https://neovim.io'
+license=('custom:neovim')
+depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm')
+makedepends=('cmake' 'luajit' 'lua51-messagepack' 'lua51-lpeg')
+optdepends=('python2-neovim: for Python 2 plugin support (see :help nvim-python)'
+            'python-neovim: for Python 3 plugin support (see :help nvim-python)'
+            'xclip: for clipboard support (or xsel) (see :help nvim-clipboard)'
+            'xsel: for clipboard support (or xclip) (see :help nvim-clipboard)')
+source=("https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz"
+        msgpack-14-compat.patch::https://github.com/neovim/neovim/commit/feb70192a85d04343ecc383ea9a42aa8cd15e98d.patch)
+sha256sums=('f39bcab23457c66ce0d67dcf8029743703f860413db0070f75d4f0ffad27c6c1'
+            '16aa4fb704fc613ce4148ec7e0da8458d956022502e1b64f2f72c3d8b90ffc63')
+install=neovim.install
+
+prepare() {
+  cd "neovim-${pkgver}"
+  patch -p1 < "${srcdir}/msgpack-14-compat.patch"
+}
+
+build() {
+  mkdir -p "${srcdir}/build"
+  cd "${srcdir}/build"
+
+  cmake "../neovim-${pkgver}" \
+        -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DENABLE_JEMALLOC=ON
+  make
+}
+
+check() {
+  cd "${srcdir}/build"
+  ./bin/nvim --version
+  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
+}
+
+package() {
+  cd "${srcdir}/build"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 "${srcdir}/neovim-${pkgver}"/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set sw=2 sts=2 et:

Copied: neovim/repos/community-testing-x86_64/neovim.install (from rev 158634, neovim/trunk/neovim.install)
===================================================================
--- community-testing-x86_64/neovim.install	                        (rev 0)
+++ community-testing-x86_64/neovim.install	2016-01-22 23:45:35 UTC (rev 158635)
@@ -0,0 +1,10 @@
+# $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