diff options
author | Sainnhe Park | 2022-05-27 17:17:54 +0800 |
---|---|---|
committer | Sainnhe Park | 2022-05-27 17:17:54 +0800 |
commit | 8b9beadbea209c15e0eeff90cc30f60ef244aadd (patch) | |
tree | d05914616a85f099a32fee460756b10efe396df8 /PKGBUILD | |
parent | 9161b206824e22b57d41bda4a79dc1c5e0a9bf47 (diff) | |
download | aur-8b9beadbea209c15e0eeff90cc30f60ef244aadd.tar.gz |
Update to 0.0.81
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,9 +1,9 @@ # Maintainer: Sainnhe Park <sainnhe@gmail.com> pkgname=vim-coc # Coc.nvim creates tags on release branch but the source code is only available on master branch, so I have to use commit hash to specify the version to use. -_hash='c90a07eec847d38909702454c9e096ac6d392aff' -pkgver=0.0.80 -pkgrel=3 +_hash='21a8e00b3c62faca4fdda5fa16b4f3ed4c03cf09' +pkgver=0.0.81 +pkgrel=1 pkgdesc='Intellisense engine for Vim8 & Neovim, full language server protocol support as VSCode' arch=('any') url='https://github.com/neoclide/coc.nvim' @@ -16,11 +16,10 @@ makedepends=('yarn') provides=('vim-coc') conflicts=('vim-coc') source=("https://github.com/neoclide/coc.nvim/archive/${_hash}.zip") -sha256sums=('3942014f681bfe2b25f3653fbb1108dbaf1de9f4f6993e9770a7fd42a92014f2') +sha256sums=('97374516741d70615a0878a7072307fe58e13f4d13333fb67f88a8f706972c76') build() { cd "${srcdir}/coc.nvim-${_hash}" - sed -i "3s/=.*/= '${_hash}'/" webpack.config.js yarn install --frozen-lockfile --preferred-cache-folder "${srcdir}/.cache" } |