version bump 5 commits vim-youcompleteme-git

This commit is contained in:
Trent Palmer 2020-01-06 21:57:18 -08:00
parent 7ddc0bffba
commit 467ba179c8
2 changed files with 7 additions and 11 deletions

View File

@ -1,6 +1,6 @@
pkgbase = vim-youcompleteme-git
pkgdesc = A code-completion engine for Vim
pkgver = r2595.25b620de
pkgver = r2600.d9a9ce47
pkgrel = 1
url = https://github.com/Valloric/YouCompleteMe
install = install
@ -24,7 +24,6 @@ pkgbase = vim-youcompleteme-git
depends = python-certifi
depends = python-future
depends = python-bottle
depends = python-frozendict
depends = python-waitress
depends = python-regex
depends = python-jedi
@ -43,7 +42,6 @@ pkgbase = vim-youcompleteme-git
source = git+https://github.com/chardet/chardet.git
source = git+https://github.com/urllib3/urllib3.git
source = git+https://github.com/bottlepy/bottle.git
source = git+https://github.com/slezica/python-frozendict.git
source = git+https://github.com/PythonCharmers/python-future.git
source = git+https://github.com/Pylons/waitress.git
source = git+https://github.com/ycm-core/regex.git
@ -65,7 +63,6 @@ pkgbase = vim-youcompleteme-git
sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
pkgname = vim-youcompleteme-git

View File

@ -44,7 +44,7 @@ _neovim="$NEOVIM_YOUCOMPLETEME"
# Default PKGBUILD Configuration #
#=========================================================================================================#
pkgname=vim-youcompleteme-git
pkgver=r2595.25b620de
pkgver=r2600.d9a9ce47
pkgver() {
cd "YouCompleteMe" || exit
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
@ -72,12 +72,11 @@ source=(
'git+https://github.com/chardet/chardet.git' #requests
'git+https://github.com/urllib3/urllib3.git' #requests
'git+https://github.com/bottlepy/bottle.git' #ycmd
'git+https://github.com/slezica/python-frozendict.git' #ycmd
'git+https://github.com/PythonCharmers/python-future.git' #ycmd
'git+https://github.com/Pylons/waitress.git' #ycmd,jediHTTP
'git+https://github.com/ycm-core/regex.git' #ycmd
)
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
#=========================================================================================================#
#=========================================================================================================#
@ -121,9 +120,9 @@ if [[ "$_use_system_python" == "n" ]]; then
fi
elif [[ "$_use_system_python" == "y" ]]; then
if [[ "$_use_python2" == "OFF" ]]; then
depends+=('python-requests-futures' 'python-certifi' 'python-future' 'python-bottle' 'python-frozendict' 'python-waitress' 'python-regex')
depends+=('python-requests-futures' 'python-certifi' 'python-future' 'python-bottle' 'python-waitress' 'python-regex')
elif [[ "$_use_python2" == "ON" ]]; then
depends+=('python2-requests-futures' 'python2-certifi' 'python2-future' 'python2-bottle' 'python2-frozendict' 'python2-waitress' 'python2-regex')
depends+=('python2-requests-futures' 'python2-certifi' 'python2-future' 'python2-bottle' 'python2-waitress' 'python2-regex')
fi
fi
@ -202,7 +201,7 @@ prepare() {
gitprepare "YouCompleteMe" "third_party/" "${YouCompleteMe[@]}"
gitprepare "YouCompleteMe" "third_party/requests_deps/" "${YouCompleteMeRequestsDeps[@]}"
local ycmd=("bottle" "regex" "python-frozendict" "python-future" "waitress")
local ycmd=("bottle" "regex" "python-future" "waitress")
gitprepare "YouCompleteMe/third_party/ycmd" "third_party/" "${ycmd[@]}"
@ -334,7 +333,7 @@ package() {
cp -r "$srcdir/YouCompleteMe/third_party/requests_deps/"{certifi,chardet,idna,requests,urllib3} \
"$pkgdir/$vimfiles_dir/third_party/requests_deps"
cp -r "$srcdir/YouCompleteMe/third_party/ycmd/third_party/"{bottle,clang,cregex,frozendict,python-future,waitress} \
cp -r "$srcdir/YouCompleteMe/third_party/ycmd/third_party/"{bottle,clang,cregex,python-future,waitress} \
"$pkgdir/$vimfiles_dir/third_party/ycmd/third_party"
cp -r "$srcdir/YouCompleteMe/third_party/ycmd/third_party/requests_deps/"{certifi,chardet,idna,requests,urllib3} \
"$pkgdir/$vimfiles_dir/third_party/ycmd/third_party/requests_deps"