this post was submitted on 03 Dec 2023
142 points (100.0% liked)

Free and Open Source Software

17772 readers
28 users here now

If it's free and open source and it's also software, it can be discussed here. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 4 points 9 months ago (1 children)

Obligatorily: I am not a lawyer, and license law is complicated.

MPL wouldn't be the best choice, since it is per-file. GPL is copyleft and viral, meaning that if you make a modification and distribute the software, you must provide your modified source code under the GPL. AGPL is stricter in terms of when source code must be released; primarily it targets server software where the user interacts with the software, but does not actually download the software itself. The GPL wouldn't require releasing source code, but the AGPL would.

As skullgiver mentioned, if you want to relicense, it would be best to use a CLA. The key to preventing yourself from being able to relicense your project (to a proprietary license or otherwise) is to ensure that other people are licensing their contributions to you under the GPL, without a CLA giving you exceptions, so that you yourself must follow their licensing terms. The Linux kernel for example is locked into the GPLv2, because they used a version of the GPL that does not provide for "upgrading" to newer versions of the GPL, and there are too many people who have contributed to the code to get all together to agree on a relicensing.

[โ€“] [email protected] 1 points 9 months ago

Thanks for the response. Seems like I made a good choice by going with the AGPL