mirror of
https://github.com/TrentSPalmer/aur-packages.git
synced 2024-11-21 19:01:31 -08:00
version bump 5 commits vim-youcompleteme-git
This commit is contained in:
parent
877d0ae4d6
commit
72b029a07d
@ -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 = r2764.21f1cc57
|
pkgver = r2769.604a2a02
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/Valloric/YouCompleteMe
|
url = https://github.com/Valloric/YouCompleteMe
|
||||||
install = install
|
install = install
|
||||||
@ -36,7 +36,7 @@ pkgbase = vim-youcompleteme-git
|
|||||||
source = git+https://github.com/urllib3/urllib3.git
|
source = git+https://github.com/urllib3/urllib3.git
|
||||||
source = git+https://github.com/bottlepy/bottle.git
|
source = git+https://github.com/bottlepy/bottle.git
|
||||||
source = git+https://github.com/Pylons/waitress.git
|
source = git+https://github.com/Pylons/waitress.git
|
||||||
source = git+https://github.com/ycm-core/regex.git
|
source = git+https://bitbucket.org/mrabarnett/mrab-regex.git
|
||||||
source = git+https://github.com/gorakhargosh/watchdog
|
source = git+https://github.com/gorakhargosh/watchdog
|
||||||
source = git+https://github.com/gorakhargosh/pathtools
|
source = git+https://github.com/gorakhargosh/pathtools
|
||||||
source = git+https://github.com/mitsuhiko/flask-sphinx-themes.git
|
source = git+https://github.com/mitsuhiko/flask-sphinx-themes.git
|
||||||
|
@ -46,7 +46,7 @@ _neovim="$NEOVIM_YOUCOMPLETEME"
|
|||||||
# Default PKGBUILD Configuration #
|
# Default PKGBUILD Configuration #
|
||||||
#=========================================================================================================#
|
#=========================================================================================================#
|
||||||
pkgname=vim-youcompleteme-git
|
pkgname=vim-youcompleteme-git
|
||||||
pkgver=r2764.21f1cc57
|
pkgver=r2769.604a2a02
|
||||||
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)"
|
||||||
@ -76,7 +76,7 @@ source=(
|
|||||||
'git+https://github.com/urllib3/urllib3.git' #requests
|
'git+https://github.com/urllib3/urllib3.git' #requests
|
||||||
'git+https://github.com/bottlepy/bottle.git' #ycmd
|
'git+https://github.com/bottlepy/bottle.git' #ycmd
|
||||||
'git+https://github.com/Pylons/waitress.git' #ycmd,jediHTTP
|
'git+https://github.com/Pylons/waitress.git' #ycmd,jediHTTP
|
||||||
'git+https://github.com/ycm-core/regex.git' #ycmd
|
'git+https://bitbucket.org/mrabarnett/mrab-regex.git'
|
||||||
'git+https://github.com/gorakhargosh/watchdog'
|
'git+https://github.com/gorakhargosh/watchdog'
|
||||||
'git+https://github.com/gorakhargosh/pathtools'
|
'git+https://github.com/gorakhargosh/pathtools'
|
||||||
'git+https://github.com/mitsuhiko/flask-sphinx-themes.git'
|
'git+https://github.com/mitsuhiko/flask-sphinx-themes.git'
|
||||||
@ -216,7 +216,7 @@ prepare() {
|
|||||||
gitprepare "YouCompleteMe" "third_party/" "${YouCompleteMe[@]}"
|
gitprepare "YouCompleteMe" "third_party/" "${YouCompleteMe[@]}"
|
||||||
gitprepare "YouCompleteMe" "third_party/requests_deps/" "${YouCompleteMeRequestsDeps[@]}"
|
gitprepare "YouCompleteMe" "third_party/requests_deps/" "${YouCompleteMeRequestsDeps[@]}"
|
||||||
|
|
||||||
local ycmd=("bottle" "regex" "waitress")
|
local ycmd=("bottle" "mrab-regex" "waitress")
|
||||||
|
|
||||||
gitprepare "YouCompleteMe/third_party/ycmd" "third_party/" "${ycmd[@]}"
|
gitprepare "YouCompleteMe/third_party/ycmd" "third_party/" "${ycmd[@]}"
|
||||||
|
|
||||||
@ -252,16 +252,18 @@ build() {
|
|||||||
cmake -G "Unix Makefiles" -DUSE_PYTHON2=$_use_python2 -DUSE_SYSTEM_LIBCLANG="$_use_system_clang" . "$srcdir/YouCompleteMe/third_party/ycmd/cpp"
|
cmake -G "Unix Makefiles" -DUSE_PYTHON2=$_use_python2 -DUSE_SYSTEM_LIBCLANG="$_use_system_clang" . "$srcdir/YouCompleteMe/third_party/ycmd/cpp"
|
||||||
make ycm_core
|
make ycm_core
|
||||||
|
|
||||||
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/cregex"
|
# cmake -G "Unix Makefiles" -DUSE_PYTHON2=$_use_python2 -DUSE_SYSTEM_LIBCLANG="$_use_system_clang" . "$srcdir/YouCompleteMe/third_party/ycmd/third_party/mrab-regex"
|
||||||
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 ; }
|
||||||
|
python setup.py build --build-base="regex-build/3" --build-lib="regex-build" || { echo "fail build watchdog" ; exit ; }
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$_rust" == "y" ]]; then
|
if [[ "$_rust" == "y" ]]; then
|
||||||
@ -279,7 +281,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 get golang.org/x/tools/gopls@v0.4.4
|
go get golang.org/x/tools/gopls@v0.5.1
|
||||||
else
|
else
|
||||||
msg2 'Skipping Gocode completer...'
|
msg2 'Skipping Gocode completer...'
|
||||||
fi
|
fi
|
||||||
@ -358,7 +360,7 @@ package() {
|
|||||||
cp -r "$srcdir/YouCompleteMe/third_party/requests_deps/"{certifi,chardet,idna,requests,urllib3} \
|
cp -r "$srcdir/YouCompleteMe/third_party/requests_deps/"{certifi,chardet,idna,requests,urllib3} \
|
||||||
"$pkgdir/$vimfiles_dir/third_party/requests_deps"
|
"$pkgdir/$vimfiles_dir/third_party/requests_deps"
|
||||||
|
|
||||||
cp -r "$srcdir/YouCompleteMe/third_party/ycmd/third_party/"{bottle,clang,cregex,waitress} \
|
cp -r "$srcdir/YouCompleteMe/third_party/ycmd/third_party/"{bottle,clang,mrab-regex,waitress} \
|
||||||
"$pkgdir/$vimfiles_dir/third_party/ycmd/third_party"
|
"$pkgdir/$vimfiles_dir/third_party/ycmd/third_party"
|
||||||
cp -r "$srcdir/YouCompleteMe/third_party/ycmd/third_party/requests_deps/"{certifi,chardet,idna,requests,urllib3} \
|
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"
|
"$pkgdir/$vimfiles_dir/third_party/ycmd/third_party/requests_deps"
|
||||||
|
Loading…
Reference in New Issue
Block a user