Ok. After doing a little more research and thinking, I think you’re right.
That’s got some interesting implications. Like, I could write a program with an EULA window before it runs that says “this program is under the GPL”, give you a copy of the compiled executable, and then if you requested the source code I could tell you to jump in a lake and you’d have no legal recourse.
What’s more, if you gave a copy of the same compiled executable to someone else and they requested the source code from you, you’d have a legal obligation to grant their request, but no way to get the source code from me in order to be able to grant the request.
(The GPL even has a clause that says “If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all.” So I guess don’t convey compiled GPL’d code until you’re certain you have a copy of the source code in hand.)
Maybe in that case you could bring some kind of promisory estoppel case against me? But then again, I’d imagine it’d probably be pretty difficult to argue that any of what I (in the hypothetical above) did constituted a “promise” to provide you the source code unless you could argue that by putting the GPL in the EULA, I was promising to abide by the terms as if I had received the software under the GPL.
Courts granted recently in Software Freedom Conservancy, Inc. v. Visio, Inc. that the GPL could be interpreted in some cases not just as a copyright license but also as a contract, but on reflection, I don’t think that changes the conversation any either.
All that said, I think if I incorporated an AGPL piece of code not owned by me into my homework assignment and then let you access my homework assignment over a network, that would probably obligate me to give you the source code if you asked.
Thanks for correcting me there. I honestly love learning about intellectual property and contract law. I still have a lot to learn it seems. :)
I do think that if you distribute a binary along with the GPL license text, then you’ve obligated yourself to provide source. If you distribute the binary of your own program without the GPL license text, then I don’t think you’re obligated. But I’m nowhere near being a lawyer :)
Thankfully in practice none of this really matters.
The person licensing the code as GPL generally wants to share it. The license becomes much stronger as more people contribute code under the same license (but their own copyright), since it means everybody is obligated to share under the GPL (or else strip out all code which they don’t own copyright over). And as more people use/contribute, the value of the code generally increases, so it’s better that the protection becomes stronger.
And of course, supposing there’s a GitHub page for a project with a GPP license attached, then anybody who has cloned that repo is automatically granted all those rights. The owner of the copyright (assuming they own 100%) can still release the code under a different license or terms, but they can’t revoke the rights granted to anybody who already received the code.
All that said, I think if I incorporated an AGPL piece of code not owned by me into my homework assignment and then let you access my homework assignment over a network, that would probably obligate me to give you the source code if you asked.
Ok. After doing a little more research and thinking, I think you’re right.
That’s got some interesting implications. Like, I could write a program with an EULA window before it runs that says “this program is under the GPL”, give you a copy of the compiled executable, and then if you requested the source code I could tell you to jump in a lake and you’d have no legal recourse.
What’s more, if you gave a copy of the same compiled executable to someone else and they requested the source code from you, you’d have a legal obligation to grant their request, but no way to get the source code from me in order to be able to grant the request.
(The GPL even has a clause that says “If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all.” So I guess don’t convey compiled GPL’d code until you’re certain you have a copy of the source code in hand.)
Maybe in that case you could bring some kind of promisory estoppel case against me? But then again, I’d imagine it’d probably be pretty difficult to argue that any of what I (in the hypothetical above) did constituted a “promise” to provide you the source code unless you could argue that by putting the GPL in the EULA, I was promising to abide by the terms as if I had received the software under the GPL.
Courts granted recently in Software Freedom Conservancy, Inc. v. Visio, Inc. that the GPL could be interpreted in some cases not just as a copyright license but also as a contract, but on reflection, I don’t think that changes the conversation any either.
All that said, I think if I incorporated an AGPL piece of code not owned by me into my homework assignment and then let you access my homework assignment over a network, that would probably obligate me to give you the source code if you asked.
Thanks for correcting me there. I honestly love learning about intellectual property and contract law. I still have a lot to learn it seems. :)
I do think that if you distribute a binary along with the GPL license text, then you’ve obligated yourself to provide source. If you distribute the binary of your own program without the GPL license text, then I don’t think you’re obligated. But I’m nowhere near being a lawyer :)
Thankfully in practice none of this really matters.
The person licensing the code as GPL generally wants to share it. The license becomes much stronger as more people contribute code under the same license (but their own copyright), since it means everybody is obligated to share under the GPL (or else strip out all code which they don’t own copyright over). And as more people use/contribute, the value of the code generally increases, so it’s better that the protection becomes stronger.
And of course, supposing there’s a GitHub page for a project with a GPP license attached, then anybody who has cloned that repo is automatically granted all those rights. The owner of the copyright (assuming they own 100%) can still release the code under a different license or terms, but they can’t revoke the rights granted to anybody who already received the code.
Yeah, probably true!