There was a problem when running after a full system update.
Traceback (most recent call last):
File "/usr/bin/zapzap", line 5, in <module>
from zapzap.__main__ import main
File "/usr/lib/python3.13/site-packages/zapzap/__main__.py", line 9, in <module>
from zapzap.controllers.MainWindow import MainWindow
File "/usr/lib/python3.13/site-packages/zapzap/controllers/MainWindow.py", line 5, in <module>
from zapzap.controllers.Settings import Settings
File "/usr/lib/python3.13/site-packages/zapzap/controllers/Settings.py", line 2, in <module>
from zapzap.controllers.PageGeneral import PageGeneral
File "/usr/lib/python3.13/site-packages/zapzap/controllers/PageGeneral.py", line 5, in <module>
from zapzap.services.DownloadManager import DownloadManager
File "/usr/lib/python3.13/site-packages/zapzap/services/DownloadManager.py", line 1, in <module>
from PyQt6.QtWebEngineCore import QWebEngineDownloadRequest
ImportError: libtheoraenc.so.1: cannot open shared object file: No such file or directory
The flatpak version is working, but for some reason aur isn't.
edit: I tested another package and it was giving me a similar problem related to libtheoraenc.so.1
.
In this case I fixed it (at least temporarily) by making a symbolic link to the same lib with a different name
sudo ln -s /usr/lib/libtheoraenc.so.2 /usr/lib/libtheoraenc.so.1
sudo ln -s /usr/lib/libtheoradec.so.2 /usr/lib/libtheoradec.so.1
Pinned Comments
alllexx88 commented on 2024-12-24 08:51 (UTC)
Since python has recently been upgraded to 3.13, you need to rebuild the package if you installed it last before the upgrade, e.g., with
yay
(thanks @marco.righi) you can:alllexx88 commented on 2024-04-06 19:31 (UTC)
This PKGBUILD uses a
pacman
feature to compute checksums in CVS packages, which requirespacman>=6.1.0
. If you're coming from Manjaro or an other Arch-based distro withpacman<6.1.0
, you need to pass--skipchecksums
tomakepkg
, if building manually, or, if installing withyay
, add--mflags --skipchecksums
, e.g.: