6 ms·
This is coming from a cofounder at github, someone who probably knows precisely what the GPL is for. Whatever the legal merits, building on a GPL3 project's com
by dabedee 3mo ago
This is coming from a cofounder at github, someone who probably knows precisely what the GPL is for. Whatever the legal merits, building on a GPL3 project's complete test suite and relicensing under MIT is not acting in good faith toward the original authors. I really find it disgusting and it makes me want to avoid gitbutler entirely.
- joshka 3mo agoI think you're saying that you don't believe in the freedoms to use the GPL licensed test suite for certain purposes which are explicitly allowed by the GPL. You don't get to choose a license and then add extra terms to it when you don't feel like it's up to scratch. That's something explicitly not allowed by the GPL license.
- MBCook 3mo agoWhere does the GPL say you have the freedom to relicense code or derivatives under MIT by fiat? Isn’t having to stay under the GPL a very big part of the GPL license?
- joshka 3mo ago> Where does the GPL say you have the freedom to relicense code or derivatives under MIT by fiat? The first part of this sentence (where in the GPL) is unreached if the second part of it is unmet (relicense code or derivatives) which I contend it likely is. You're begging the question. However: > The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work earlier: > A “covered work” means either the unmodified Program or a work based on the Program. It's that element that would be difficult to prove "work based on the Program"
- trumpdong 3mo agoAsking an LLM "here's a thing, rewrite it in Rust" is pretty clearly creating either a derivative work or a different form of the same work, just like asking a transpiler would.
- joshka 3mo agoThere's no evidence that "here's a thing, rewrite it in Rust" is the technique Scott used here. "here's a test suite, write code in rust that makes that suite pass" is reasonably supported by the article. That would likely not be a derivative work.
- MBCook 3mo agoIf we assume an u licensed or MIT licensed test suite, an LLM could develop from that and documentation and you’d get something you could license MIT. IMO, IANAL, etc. And we’ll ignore the question of what the fact the LLM has certainly seen the git code during training means. But the test suite would have to stay under the original license. And if you use a GPL test suite as they kernel to develop a program from can you license it non-GPL? I’d question that personally. Same acronyms above apply.
- joshka 3mo agoThis is the exact thing I'm not sure about. See https://news.ycombinator.com/item?id=48470397 https://news.ycombinator.com/item?id=48470397 where I posit a simpler question: if a `test_sum()` function is copyrighted, does writing a `sum(a, b)` function infringe on the copyright of the software product that `test_sum()` is a part of. I'd say no. There's another part of the GPL that applies here: > A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. So assuming that sum(a, b) is non-infringing and not combined to form a larger program (i.e. the tests aren't compiled into the grit code), then the GPL explicitly doesn't apply to this use
- MBCook 3mo ago