Compare commits

...

2 Commits

4 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
pkgbase = vim-lightline-git pkgbase = vim-lightline-git
pkgdesc = A light and configurable statusline/tabline for Vim pkgdesc = A light and configurable statusline/tabline for Vim
pkgver = r682.f11645c pkgver = r685.1c6b455
pkgrel = 1 pkgrel = 1
url = https://github.com/itchyny/lightline.vim url = https://github.com/itchyny/lightline.vim
install = lightline.install install = lightline.install

View File

@ -15,7 +15,7 @@ _neovim="n"
_name='vim-lightline' _name='vim-lightline'
pkgname="${_name}-git" pkgname="${_name}-git"
pkgver=r682.f11645c pkgver=r685.1c6b455
pkgrel=1 pkgrel=1
pkgdesc='A light and configurable statusline/tabline for Vim' pkgdesc='A light and configurable statusline/tabline for Vim'
arch=('any') arch=('any')

View File

@ -1,6 +1,6 @@
pkgbase = vim-youcompleteme-git pkgbase = vim-youcompleteme-git
pkgdesc = A code-completion engine for Vim pkgdesc = A code-completion engine for Vim
pkgver = r3134.cc9a3ae3 pkgver = r3148.71166ea1
pkgrel = 1 pkgrel = 1
url = https://github.com/Valloric/YouCompleteMe url = https://github.com/Valloric/YouCompleteMe
install = install install = install
@ -29,7 +29,7 @@ pkgbase = vim-youcompleteme-git
source = git+https://github.com/davidhalter/django-stubs source = git+https://github.com/davidhalter/django-stubs
source = git+https://github.com/numpy/numpydoc source = git+https://github.com/numpy/numpydoc
source = git+https://github.com/bottlepy/bottle.git source = git+https://github.com/bottlepy/bottle.git
source = git+https://bitbucket.org/mrabarnett/mrab-regex.git source = git+https://github.com/mrabarnett/mrab-regex
source = git+https://github.com/gorakhargosh/watchdog source = git+https://github.com/gorakhargosh/watchdog
source = https://github.com/OmniSharp/omnisharp-roslyn/releases/download/v1.37.11/omnisharp-mono.tar.gz source = https://github.com/OmniSharp/omnisharp-roslyn/releases/download/v1.37.11/omnisharp-mono.tar.gz
sha256sums = SKIP sha256sums = SKIP

View File

@ -46,7 +46,7 @@ _neovim="$NEOVIM_YOUCOMPLETEME"
# Default PKGBUILD Configuration # # Default PKGBUILD Configuration #
#=========================================================================================================# #=========================================================================================================#
pkgname=vim-youcompleteme-git pkgname=vim-youcompleteme-git
pkgver=r3134.cc9a3ae3 pkgver=r3148.71166ea1
pkgver() { pkgver() {
cd "YouCompleteMe" || exit cd "YouCompleteMe" || exit
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
@ -69,7 +69,7 @@ source=(
'git+https://github.com/davidhalter/django-stubs' #jedi 'git+https://github.com/davidhalter/django-stubs' #jedi
'git+https://github.com/numpy/numpydoc' #jedi 'git+https://github.com/numpy/numpydoc' #jedi
'git+https://github.com/bottlepy/bottle.git' #ycmd 'git+https://github.com/bottlepy/bottle.git' #ycmd
'git+https://bitbucket.org/mrabarnett/mrab-regex.git' 'git+https://github.com/mrabarnett/mrab-regex'
'git+https://github.com/gorakhargosh/watchdog' 'git+https://github.com/gorakhargosh/watchdog'
) )
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP') sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
@ -238,14 +238,14 @@ build() {
# if [[ "$_use_system_python" == "n" ]]; then # if [[ "$_use_system_python" == "n" ]]; then
# mkdir -p "$srcdir/regex_build" # mkdir -p "$srcdir/regex_build"
# cd "$srcdir/regex_build" || exit # cd "$srcdir/regex_build" || exit
# cmake -G "Unix Makefiles" -DUSE_PYTHON2=$_use_python2 -DUSE_SYSTEM_LIBCLANG="$_use_system_clang" . "$srcdir/YouCompleteMe/third_party/ycmd/third_party/mrab-regex" # cmake -G "Unix Makefiles" -DUSE_PYTHON2=$_use_python2 -DUSE_SYSTEM_LIBCLANG="$_use_system_clang" . "$srcdir/YouCompleteMe/third_party/ycmd/third_party/mrab-regex-github"
# make _regex # make _regex
# fi # fi
if [[ "$_use_system_python" == "n" ]]; then if [[ "$_use_system_python" == "n" ]]; then
cd "$srcdir/YouCompleteMe/third_party/ycmd/third_party/watchdog_deps/watchdog" || { echo "cant cd to watchdog" ; exit ; } cd "$srcdir/YouCompleteMe/third_party/ycmd/third_party/watchdog_deps/watchdog" || { echo "cant cd to watchdog" ; exit ; }
python setup.py build --build-base="build/3" --build-lib="build/lib3" || { echo "fail build watchdog" ; exit ; } python setup.py build --build-base="build/3" --build-lib="build/lib3" || { echo "fail build watchdog" ; exit ; }
cd "$srcdir/YouCompleteMe/third_party/ycmd/third_party/mrab-regex" || { echo "cant cd to mrab-regex" ; exit ; } cd "$srcdir/YouCompleteMe/third_party/ycmd/third_party/mrab-regex-github" || { echo "cant cd to mrab-regex-github" ; exit ; }
python setup.py build --build-base="regex-build/3" --build-lib="regex-build" || { echo "fail build watchdog" ; exit ; } python setup.py build --build-base="regex-build/3" --build-lib="regex-build" || { echo "fail build watchdog" ; exit ; }
fi fi
@ -264,7 +264,7 @@ build() {
msg2 'Building gopls for go completion...' # BuildGoCode() msg2 'Building gopls for go completion...' # BuildGoCode()
cd "$srcdir/YouCompleteMe/third_party/ycmd/third_party/go" || exit cd "$srcdir/YouCompleteMe/third_party/ycmd/third_party/go" || exit
# find gopls version by grepping third_party/ycmd/build.py # find gopls version by grepping third_party/ycmd/build.py
go install golang.org/x/tools/gopls@v0.13.2 go install golang.org/x/tools/gopls@v0.14.0
else else
msg2 'Skipping Gocode completer...' msg2 'Skipping Gocode completer...'
fi fi
@ -336,7 +336,7 @@ package() {
if [[ "$_use_system_python" == "n" ]]; then if [[ "$_use_system_python" == "n" ]]; then
cp -r "$srcdir/YouCompleteMe/third_party/ycmd/third_party/"{bottle,clang,mrab-regex} \ cp -r "$srcdir/YouCompleteMe/third_party/ycmd/third_party/"{bottle,clang,mrab-regex-github} \
"$pkgdir/$vimfiles_dir/third_party/ycmd/third_party" "$pkgdir/$vimfiles_dir/third_party/ycmd/third_party"
elif [[ "$_use_system_python" == "y" ]]; then elif [[ "$_use_system_python" == "y" ]]; then