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?

  • hauiA
    link
    fedilink
    arrow-up
    4
    ·
    4 months ago

    I‘m not a pro but some licenses state you need to provide the code, not necessarily „provide code in your package“ afaik. So you could put your github/lab/forge link and the license in the app and provide the rest in your repo? Not sure if thats how its done but it seem logical. Good luck.

    • thingsiplay@beehaw.orgOP
      link
      fedilink
      arrow-up
      4
      ·
      4 months ago

      That’s what I am doing now too. I add the license text files in the app, document where to find and to what program it belongs to and provide a link where to get the source files. I have looked up each license and they allow distributing the binaries.

      • hauiA
        link
        fedilink
        arrow-up
        3
        ·
        4 months ago

        I feel like thats a sane solution.