Package Base Details: autokey

Git Clone URL: https://aur.archlinux.org/autokey.git (read-only, click to copy)
Submitter: dark-saber
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 69
Popularity: 0.021168
First Submitted: 2019-02-12 12:21 (UTC)
Last Updated: 2024-05-01 16:27 (UTC)

Latest Comments

1 2 3 4 5 6 .. 14 Next › Last »

ectospasm commented on 2024-05-02 19:33 (UTC)

Thank you for the quick turnaround!

Tio commented on 2024-05-01 22:30 (UTC) (edited on 2024-05-01 23:40 (UTC) by Tio)

Sorry about that. I will pay more attention next time. Thank you for fixing!

EDIT: It is just that for me the 0.96.0-6 still does not work. Same error.

EDIT 2: I cleaned the cache and all works now.

yochananmarqos commented on 2024-05-01 22:25 (UTC)

@Tio: Please delete your comment, we don't need spam logs for an issue I already fixed about 6 hours ago. Please also read recent comments to see if anyone else is having an issue before commenting.

Having said that, I do appreciate your feedback normally.

matthewls commented on 2024-05-01 16:58 (UTC)

Thank you @simona, @inifinteh, and @yochananmarqos

simona commented on 2024-05-01 16:32 (UTC)

now perfect

yochananmarqos commented on 2024-05-01 16:29 (UTC)

It's fixed with 0.96.0-6.

infiniteh commented on 2024-05-01 16:21 (UTC)

The permission errors come from these lines in the PKGBUILD:

python -m compileall -d "${pkgdir}${site_packages}/$pkgbase"
python -O -m compileall -d "${pkgdir}${site_packages}/$pkgbase"

Looks like the compileall module needs a positional argument. From the python docs:

Positional arguments are files to compile or directories that contain source files, traversed recursively. If no argument is given, behave as if the command line was -l <directories from sys.path>.

So the compilation step ends up looking in sys.path for files to compile, hence the permission errors. Here's what worked for me. I'm not sure if my destination directory (-d) is correct, but it gets the packages installed and working:

python -m compileall -d "${site_packages}" "${pkgdir}${site_packages}/$pkgbase"
python -O -m compileall -d "${site_packages}" "${pkgdir}${site_packages}/$pkgbase"

matthewls commented on 2024-05-01 14:12 (UTC)

same errors here as @simona and @xiota

simona commented on 2024-05-01 09:00 (UTC) (edited on 2024-05-01 09:00 (UTC) by simona)

same errors for me... as @xiota