I want to create an AppImage of my Python software and distribute it this way. The script will be compiled with Nuitka to include Python and Standard Library functionality. In the AppImage I want to bundle it with other Libre software, but in binary format downloaded from Arch package repos, as my script depends on them. My script is more like a complex automation tool. I do not make any changes to the code of these binary dependencies, just include them as they are.

I don’t know how to deal with the licenses. Do I have to include the license for every project in my AppImage? Do I have to put the source code of these projects in it too?

  • These are commandline applications, so there shouldn’t be any problem I think. The binaries are also obtained precompiled from Archlinux repos and include license texts, which I now include in my AppImage. Only one application does not include license text in the package, but found the online repository. Now I download and bundle this license file, document where to get the source and link it. I looked up each license and they all explicitly allow distributing the binaries. Looks like I’m good to go.