Alexis López Zubieta

Results 190 comments of Alexis López Zubieta

Well, linuxdeploy was created to improve/extend linuxdeployqt so we just have to recommend this one.

It seems we would need to check the strace version before using it.

I'll setup a debian 11 docker and test packing the project you mentioned. Regarding your handcrafted recipe, you need to write the exclude list as follows `exclude: []` otherwise the...

It seems that the user running appimage-builder doesn't have access to docker. Consider allowing docker usage without password or using `--skip-tests`

Yes there are race conditions on v1.0.2 which should be addressed now. They were produced by the usage of the system shell to run binaries inside the bundle (which was...

The change on the shebang is intentional, this is used to make sure that the scripts get executed using the python version embed in the AppImage. If you those scripts...

You can find some information about why this is done here: https://github.com/AppImageCrafters/AppRun/blob/master/docs/USAGE.md#patch-shebang-on-scripts To try your script directly you can call it from the AppRun. Edit the exec and exec_args entries...

I get an idea. First you have to bundle bash and make that your main entry point with your start-up script as argument. From that script you should be able...

> Is there a reason why the modified shbang can't use the $APPDIR environment variable to locate the interpreter? Sadly we cannot have environment variables in the binary path of...

A question, are you calling those apps using `subprocess.run(shell=True, ...)` ? If that's is the case I would recommend bundling a copy of bash and calling that bash with a...