makedeb


neovim-git 16b0d3ae2022.04.20-2


Vim-fork focused on extensibility and usability

Click here to go back to the commit logs for neovim-git.

Commit:


Hash: 59eb86a37aa6b503a35a46e15c0e7ffebb6af695

Message: added another set of missing dependencies

Diff


diff --git a/.SRCINFO b/.SRCINFO
index 8f67b79..022024b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -2,7 +2,7 @@ generated-by = makedeb-makepkg
 
 pkgbase = neovim-git
 	pkgdesc = Vim-fork focused on extensibility and usability
-	pkgver = 187462021.08.31
+	pkgver = 18748nightly.2.g5c643dee72021.09.01
 	pkgrel = 1
 	url = https://neovim.io/
 	arch = i686
@@ -22,6 +22,16 @@ pkgbase = neovim-git
 	makedepends = pkg-config
 	makedepends = unzip
 	makedepends = curl
+	makedepends = lua-filesystem
+	makedepends = lua-cliargs
+	makedepends = lua-system
+	makedepends = lua-dkjson
+	makedepends = lua-say
+	makedepends = lua-luassert
+	makedepends = lua-term
+	makedepends = lua-mediator
+	makedepends = lua-argparse
+	makedepends = lua-coxpcall
 	depends = libluajit-5.1-2
 	depends = libluajit-5.1-common
 	depends = libmsgpackc2
diff --git a/PKGBUILD b/PKGBUILD
index b59ce41..05783cd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
 # Maintainer: only_vip <onlyme_vip@protonmail.com>
 pkgname=neovim-git
 _pkgname=neovim
-pkgver=187462021.08.31
+pkgver=18748nightly.2.g5c643dee72021.09.01
 pkgrel=1
 pkgdesc="Vim-fork focused on extensibility and usability"
 arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
 depends=('libluajit-5.1-2' 'libluajit-5.1-common' 'libmsgpackc2' 'libtermkey1' 'libunibilium4' 'libvterm0' 'lua-luv')
-makedepends=('ninja-build' 'gettext' 'libtool' 'libtool-bin' 'autoconf' 'automake' 'cmake' 'g++' 'pkg-config' 'unzip' 'curl')
+makedepends=('ninja-build' 'gettext' 'libtool' 'libtool-bin' 'autoconf' 'automake' 'cmake' 'g++' 'pkg-config' 'unzip' 'curl' 'lua-filesystem' 'lua-cliargs' 'lua-system' 'lua-dkjson' 'lua-say' 'lua-luassert' 'lua-term' 'lua-mediator' 'lua-argparse' 'lua-coxpcall')
 optdepends=('python3-neovim: for python 3 plugin support see :help provider python' 
             'ruby-neovim: for Ruby plugin support (see :help provider-ruby)'
             'xclip: for clipboard support (or xsel) (see :help provider-clipboard)'
@@ -24,6 +24,7 @@ options=(!strip)
 
 pkgver() {
     cd "${srcdir}/${_pkgname}"
+    _tag=$(git describe --tags | sed -e 's:-:.:g' -e 's:vNext::') # tag is mobile, and switches between numbers and letters, can't use it for versioning
     _commits=$(git rev-list --count HEAD | sed 's:-:.:g') # total commits is the most sane way of getting incremental pkgver
     _date=$(git log -1 --date=short --pretty=format:%cd)
     printf "%s%s%s\n" "${_commits}" "${_tag}" "${_date}" | sed -e 's:-:.:g'  -e 's:_:.:g'