|
| 1 | +#+title: Legal |
| 2 | +The /Too Long, Didn't Read/ is this: If you make something using Cakelisp as a tool, you have full rights over the terms of that thing. If you make something which includes Cakelisp as part of the distribution to end users (for example, an IDE which has Cakelisp built-in, or a game which supports end-user modding via Cakelisp), you must comply with ~GPL-3.0-or-later~. |
| 3 | + |
| 4 | +* Terms |
| 5 | +- "Cakelisp": All the files, excluding ~runtime/~ within the Cakelisp repository, and the binaries generated by these files (excludes binaries generated /with/ Cakelisp binaries, i.e. user runtime code) |
| 6 | +- "Runtime": Code which runs outside Cakelisp, after generation has been completed. This can also be termed the "user's generated program" |
| 7 | +- "Cakelisp runtime": The files in ~runtime/~ |
| 8 | +* Copyright |
| 9 | +Cakelisp is copyright (C) 2020 Macoy Madson ~< [email protected]>~. |
| 10 | +* License |
| 11 | +Licensed under ~GPL-3.0-or-later~, with added [[https://www.gnu.org/licenses/gpl-faq.en.html#LinkingOverControlledInterface][Linking Over Controlled Interface]] exception. There is no SPDX identifier for this exception, as far as I know. |
| 12 | + |
| 13 | +~runtime/~ is licensed under ~MIT~ License. |
| 14 | + |
| 15 | +Contact [email protected]~ if you would like to negotiate an exception for your use-case. |
| 16 | +* License Exception |
| 17 | +The ~LICENSE_EXCEPTION~ file allows the creation of plug-ins for compile-time code execution under licenses that are not the GPL. *However*, if you distribute Cakelisp with these plug-ins, you still need to distribute the source code of the plug-ins. |
| 18 | + |
| 19 | +If your program is intended to be GPL, you must release any compile time code used to build the program along with the program's source code, because it is otherwise impossible to build the program, therefore violating the GPL. |
| 20 | +* Cakelisp runtime exception |
| 21 | +The files in ~runtime/~ are under MIT license instead of GPL. This is to ensure your freedom to determine license for your non-derivative work by providing minimal constraints. |
| 22 | + |
| 23 | +* Explanation |
| 24 | +*IMPORTANT:* This section is not legally binding, and is only meant to help the reader quickly determine whether their use-case /may/ be appropriate. |
| 25 | + |
| 26 | +Cakelisp's licensing was chosen to protect my efforts and help the community. Generally, I think the party with the most effort spent should be able to determine the terms of that work. |
| 27 | + |
| 28 | +If you make something utilizing Cakelisp, your something is where most of the work is. If you make something which has Cakelisp embedded as an integral/supplementary part, our work amounts are now closer to even, and you need to obey the ~GPL-3.0-or-later~. Anything you generate with Cakelisp is your own, and any Cakelisp code you write is your own, but as soon as you start distributing Cakelisp itself, you must obey the terms. |
| 29 | + |
| 30 | +From a high level: |
| 31 | +- Cakelisp distribution is under ~GPL-3.0-or-later~ |
| 32 | +- Cakelisp runtime distribution is under ~MIT~ License |
| 33 | +- Runtime distribution is under whatever terms the copyright holder decides, provided that they comply with all other software they include in the runtime. If you e.g. link to a GPL library in your runtime (e.g. Cakelisp itself), you then need to comply with the GPL |
| 34 | + |
| 35 | +** Things which are permitted |
| 36 | +- Releasing a proprietary game/software project written in Cakelisp, without releasing any of the source code, or sharing any similar licenses. Broadly speaking, what you make /with/ Cakelisp is entirely your own |
| 37 | +- Building a proprietary game/software project using Cakelisp's build system |
| 38 | +- Releasing products utilizing Cakelisp to the end user, so long as the terms of the ~GPL-3.0-or-later~ are met |
| 39 | +** Things which are *not* permitted |
| 40 | +- Releasing a proprietary game/software project which ships any of Cakelisp, *excluding* ~runtime/~, without also releasing the source code of that project |
| 41 | +- Distributing modified versions of Cakelisp without also releasing the full modified source code |
| 42 | +- i.e., you must follow ~GPL-3.0-or-later~ if you actually "ship" any Cakelisp code |
0 commit comments