Legal question – license of software that includes GPL 3.0 software
5 points| westonplatter0 | 5 years ago
I was notified by a user that the current MIT license of phashion may conflict with the GPL 3.0 license of the pHash software included in it. The argument goes that since phashion includes the source code of pHash as apart of its distribution, it needs to also use the GPL 3.0 license.
My question ... is there a licensing conflict between phashion and pHash? If so, what are the options?
Other question ... are there any open source lawyers/organizations I could talk to for free?
NOTE - I realize I'm asking a legal/IP question. I will not treat comments or opinions as legal advice.
jimsmart|5 years ago
> No. The project as a whole must conform to the terms of the GPL license and must be distributed under the terms of that license. Therefore such a project as a whole must be distributed as GPL, but can still contain MIT-licensed software.
https://www.tawesoft.co.uk/kb/article/mit-license-faq
speedgoose|5 years ago
Good news if you use your ruby gem in non GPLv3 software, pHash can provide a commercial license as well : http://phash.org/licensing/
You could perhaps have a dual licensing model for phashion too. One GPLv3 and one other requiring a commercial license of pHash.
After updating phashion to the correct license, I think you also have to communicate to the users of your library. Telling them that their software must be licensed under the GPLv3, or that they need to get another license from pHash and you, or removing your library from your project. Some users are most likely not aware of the GPLv3 license of pHash as it is a dependency of a dependency, and not from rubygems.
belorn|5 years ago
The more complex answer is a question. Why did you choose MIT? If you want people to use the parts you have written under a permissive license, then the setup above will allow that. If your intention is for people to use the whole combined project under the MIT then the only legal option is to remove the pHash dependency and either rewrite that part of find a alternative dependency that provide the same functionality. If you just picked the license randomly then simply switching to GPL will solve the issue.
As for free lawyers, I think the software freedom Conservancy might answer such questions at https://sfconservancy.org/about/contact/
Aeronwen|5 years ago
And that's just for using readline.
nateberkopec|5 years ago
> Linking a GPL covered work statically or dynamically with other modules is making a combined work based on the GPL covered work. Thus, the terms and conditions of the GNU General Public License cover the whole combination
mlmitch|5 years ago
However, you should probably take this one seriously.
I recommend reading the book “Open Source for Business” by Heather Meeker if you are looking for background on open source licensing. It’s written in a way that’s really accessible to non-lawyers.
santa_boy|5 years ago
Selling those as-is projects as my own isn't the model. But, bringing together, customizing, adding functionalities and making them easy and useful to users is.
The speak to a lawyer route doesn't work and isn't practical for me. Hope this book gives me some direction to start off with.