Package Details: vim-youcompleteme-git r3216.0d855962-1

Git Clone URL: https://aur.archlinux.org/vim-youcompleteme-git.git (read-only, click to copy)
Package Base: vim-youcompleteme-git
Description: A code-completion engine for Vim
Upstream URL: https://ycm-core.github.io/YouCompleteMe/
Keywords: completion engine neovim vim ycm
Licenses: GPL3
Groups: vim-plugins
Submitter: thestinger
Maintainer: artafinde
Last Packager: artafinde
Votes: 170
Popularity: 0.48
First Submitted: 2013-02-05 21:32 (UTC)
Last Updated: 2024-08-19 15:53 (UTC)

Dependencies (19)

Required by (0)

Sources (2)

Pinned Comments

artafinde commented on 2021-04-10 13:03 (UTC)

If you want to use system's abseil set the _use_system_abseil to ON - default is to download from internet during build.

Latest Comments

« First ‹ Previous 1 .. 12 13 14 15 16 17 18 19 20 21 22 .. 53 Next › Last »

artafinde commented on 2018-10-30 07:39 (UTC)

@Rubonnek Awesome - works as you suggested. Removed package, delete pyc files under ycmd and recompiled with python3. Changed interpreter to python3 and works fine. Cheers!

Rubonnek commented on 2018-10-30 00:20 (UTC)

@artafinde you have to delete the cached files. python2 bytecode is incompatible with python3. No wonder you had to turn on the python2 interpreter.

Your issue is no different then.

artafinde commented on 2018-10-29 23:21 (UTC)

@lahwaacz: rogue files: https://ptpb.pw/EpIR

lahwaacz commented on 2018-10-29 23:05 (UTC)

@artafinde Could you show us the output of this command? (adapted from the wiki)

comm -23 <(find /usr/share/vim/vimfiles | sort) <(pacman -Qlq | sed 's|/$||' | sort)

Also, you did not say if you deleted any of the python bytecode files or even whether pacman complained about it.

artafinde commented on 2018-10-29 22:54 (UTC) (edited on 2018-10-29 23:07 (UTC) by artafinde)

@Rubonnek: Might as well be different indeed. The log files empty and the timestamp pyc files are not there. I've tried running without .vimrc and same crash with empty log. strace without .vimrc file: https://ptpb.pw/3mP7

Found a workaround for now. Compiled with _use_system_clang="OFF" and _use_python2="ON". Changed the g:ycm_server_python_interpreter to python2 and now it's working.

Edit: no deletions.

Rubonnek commented on 2018-10-29 21:41 (UTC)

@artafinde that chmod command you are running only changes the permissions to the directory, not the files under it which means that other users will not be able to overwrite the files. Add -R before 777 to chmod and let me know if that helps.

To expose what @lahwaacz said more explicitly, adding the python bytecode files (i.e. the cached files) to the package means that pacman will auto-update those python cached files or removed them when they are unneeded. Which also implies that changing the permissions on those files should be unnecessary.

I think your issue could different that what we've seen so far. Are you YCM logs empty too? Did you delete any of the python bytecode files when pacman complained (if it did)? Any chance you could share them if they are not empty? Have you also tried running vim or gvim without a resource file such as ~/.vimrc or ~/.gvimrc?

Please provide as much information as possible including other things you might have tried. Like I previously said, I'm having a hard time reproducing the crashes you guys are experiencing.

artafinde commented on 2018-10-29 19:36 (UTC)

@Rubonnek didn't help on my case. The changes introduced from python 3.7 with PEP-552 is on the way python calculates the byte code to check (see PycInvalidationMode and --invalidation-mode for compileall mode) if it needs to update the cache or not. I think that might be irrelevant though to the issue because even if I give permissions to all users after installing the package (using something like sudo find /usr/share/vim/vimfiles/third_party/ycmd/ -type d -name "__pycache__" -exec chmod 777 {} \;) to write on __pycache__ directories the crash still happens. I have confirmed with strace that the "Permission denied" error is not appearing after the chmod change but the crash still happens.

For the first part of the cache update I'd look on how the repo python packages deal with cache this and try to implement something similar (if needed).

For the crash to me it's still pending, so I can provide the two strace logs.

One without changes, just build vim-youcompleteme-git and start vim. https://ptpb.pw/nmWO

Second is after I've given permission to all users to write on __pycache__ directories under /usr/share/vim/vimfiles/third_party/ycmd https://ptpb.pw/c1ys

Rubonnek commented on 2018-10-27 18:49 (UTC)

@lahwaacz you are absolutely right. I honestly forgot that youcompleteme would run as root and generate the python bytecode files where they show up. I thought however that shouldn't cause any issues with python, but I guess I was wrong.

My eyes completely skipped over the "C++ source code" part. I thought you were talking about compiled libraries. We definitely don't need that. Thanks for that too!

@everyone You'll probably get file conflicts when attempting to install this package now if you ran vim as root previously, but only remove the files that pacman complains about and YouCompleteMe should just work.

lahwaacz commented on 2018-10-27 15:53 (UTC)

@Rubonnek They are not found on my system either, I guess Python creates them as temporary files and then renames them to have just the .pyc suffix. The issue is that the vim-youcompleteme-git package should provide those .pyc files so that they are properly tracked by pacman. Since they are not packaged, they were created automatically when I run vim as root (because normal users don't have permissions to write in the /usr/share/vim/vimfiles/ tree) and I guess the old .pyc files from previous versions of vim-youcompleteme-git were causing the crash, because deleting them apparently fixed it.

As for the C++ sources, I don't think that anything in a Python-based plugin depends on them. Since they are installed manually in the PKGBUILD [1] I don't understand how their omission would cause any troubles with building the package.

[1] https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=vim-youcompleteme-git#n270

Rubonnek commented on 2018-10-27 15:42 (UTC)

Forgot to point out that those .pyc files with dates attached at the end of the filename cannot be found in my system.

If you are experiencing crashes, please open up an issue at the upstream repository. I don't think it's a packaging issue at all now.