Bug 424196 - Python (Appimage) ctypes ModuleNotFoundError
Summary: Python (Appimage) ctypes ModuleNotFoundError
Status: RESOLVED FIXED
Alias: None
Product: krita
Classification: Applications
Component: Scripting (show other bugs)
Version: 4.3.0
Platform: Ubuntu Linux
: NOR normal
Target Milestone: ---
Assignee: Krita Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-07-14 13:30 UTC by Aki
Modified: 2021-01-25 13:04 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Aki 2020-07-14 13:30:31 UTC
SUMMARY
Latest Krita 4.3.0 and 4.2.9 (Appimage) python (3.8) version has issues with loading c libraries. In old Krita 4.1.5 python versions (3.5) ctypes worked just fine.


STEPS TO REPRODUCE
# tools -> scripts -> scripter ->

import ctypes

OBSERVED RESULT
**********************
ModuleNotFoundError: No module named '_ctypes'
In file: /tmp/.mount_ (rnd_id) /usr/lib/python3.8/ctypes/__init__.py
In function: <module> at line: 7. Line with error:
from _ctypes import Union, Structure, Array
**********************

EXPECTED RESULT
None (success)

SOFTWARE / OS VERSIONS
Linux: Ubuntu 18.04.4 LTS
PYQT_VERSION_STR = 5.13.1
QT_VERSION_STR = 5.12.7
Comment 1 Halla Rempt 2020-07-14 13:36:11 UTC
I can confirm the issue. Thanks for making the report!
Comment 2 Olli Rajala 2021-01-11 19:40:26 UTC
Hi - this ctypes issue seems to be coming from the python build shipped in the https://binary-factory.kde.org/job/Krita_Nightly_Appimage_Dependency_Build/lastSuccessfulBuild/artifact/krita-appimage-deps.tar package.

Could someone fix that python build so we can get fully working appimages?

Cheers!
Comment 3 Olli Rajala 2021-01-11 20:32:30 UTC
It's highly probable that the build issue is caused by a missing libffi-dev package in the dev environment.
Comment 4 Olli Rajala 2021-01-14 14:38:14 UTC
To confirm the above - I managed to make an 4.4.1 Appimage with a python with ctypes fixed by using the docker build method (https://invent.kde.org/dkazakov/krita-docker-env).

I used the pre-packaged dependencies except for python-3.8.1 which I simply built again and installed to the deps folder. Only thing I needed to do to fix the ctypes import issue was to install libffi-dev in that docker build container before building.

So based on that I'm pretty sure that this same fix could be applied to the docker that is used for the automated dependency builds (https://binary-factory.kde.org/job/Krita_Nightly_Appimage_Dependency_Build/).
Comment 5 Halla Rempt 2021-01-14 14:51:42 UTC
I've made a sysadmin task asking for libffi-dev to be added to the appimage build image.
Comment 6 Ben Cooksley 2021-01-14 16:48:04 UTC
Git commit 7201943484fa3167070c64c334b6e21bfa9e4aaa by Ben Cooksley.
Committed on 14/01/2021 at 16:47.
Pushed by bcooksley into branch 'master'.

Ensure libffi-dev is included within our image.

Ref T14046

M  +2    -0    system-images/appimage-1604/Dockerfile

https://invent.kde.org/sysadmin/ci-tooling/commit/7201943484fa3167070c64c334b6e21bfa9e4aaa
Comment 7 Halla Rempt 2021-01-14 17:03:19 UTC
Tganks!
Comment 8 Olli Rajala 2021-01-14 18:02:54 UTC
Thanks Halla & Ben!
Comment 9 Olli Rajala 2021-01-19 14:20:44 UTC
How about also executing that "Krita_Nightly_Appimage_Dependency_Build" (which appears to be more like a monthly build - I guess it's run on demand or atleast the change made didn't trigger a build) so that the actual Krita nightly builds can pick up this change?

Cheers!
Comment 10 Halla Rempt 2021-01-20 09:40:30 UTC
Argh, yes, I need to kick that off manually...
Comment 11 Halla Rempt 2021-01-20 10:21:56 UTC
And I cannot do that today, because download.qt.io is down...
Comment 12 Halla Rempt 2021-01-22 14:33:38 UTC
Okay, download.qt.io is up again, so I've kicked off an appimage deps build: https://binary-factory.kde.org/job/Krita_Nightly_Appimage_Dependency_Build/
Comment 13 Olli Rajala 2021-01-22 17:44:24 UTC
Thanks Halla - seems like it finished succesfully and based on the log the python ctypes was built ok. Fingers crossed for the next Krita nightly build ;)
Comment 14 Olli Rajala 2021-01-25 13:04:35 UTC
We can now confirm that importing ctypes works now in the latest Krita appimages. Cheers! Happy this got resolved.