-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
license #38
Comments
There won't be a conflict as long as you don't store the sourcecode for |
Hey! 😄 Thanks for getting back. Its good to know your intention is that. I have not heard this perspective on GPL in python before. I am more familiar with hearing that in terms of LGPL. But even with LGPL, there's enough ambiguity (https://twistedmatrix.com/pipermail/twisted-python/2004-May/007944.html). I've spent quite a bit of time trying to dig up info on actual cases of LGPL re: importing via public repos/pip and came up surprisingly dry. I'd rather not open downstream to the uncertainty. I had a similar conversation at ScottDuckworth/python-anyvcs#32 a few years back. The other reason is I want to avoid duplicate effort wherever possible. A lot of the reason its not easy to come up with cases to clarify (L)GPL in python is many averted the issue by picking something permissive. A lot of it I feel is due to distribution being in source code anyway (no binary blob issue except in extensions, which are often built from source at install time against system headers, etc.) The only other thing it'd bring to the table is reciprocity, there was actually a case of that a while back, aside from that contributions tend to come back since maintaining a fork/vendorizing is costly. |
I'm not sure what I'm supposed to be taking away from your last post. Is the issue resolved? As far as licensing goes, my desire is, obviously, to allow people to use and find value in my projects. I love solving a problem for myself and then allowing it to be used by others to prevent duplicated effort. However, the philosophy is that commercial interests have money and can afford licensing a third-party solution (right or wrong; see loophole) and that people working for open-source should be supporting other people that are working for open-source. The loophole is that commercial interests (like my employer, yours, and others') can still use it as long as they're not managing its delivery or privatizing it, which is the common case in Python's situation. |
In terms of pysvn, I don't believe (L)GPL would be well-suited to incorporating it with other libraries. I base this more off of current practice with python libraries. I did an analysis of it a few years ago at saitoha/canossa#1 (comment).
That is good! We have overlap there.
Like QT-style licensing? Are you looking into the possibility of GPL licensing and then having a commercial-license for your software? Like http://isotope.metafizzy.co/license.html does? There are commercial places that will choose a non-GPL alternative if given the choice. There's still an opportunity to fork it and add value commercially to permissive licensed projects (FreeBSD has FreeNAS, OrbisOS in PS4, etc). The benefit is that one can fork something like FreeBSD and choose to to contribute upstream and / or open source new components. Bare in mind, anyone has the right to grab MIT/BSD code and re-license it as GPL since its forward compatible. However, the problem lies in GPL not being backward compatible to MIT/BSD. As for commercial ambitions with python and licensing python code, I haven't seen or head of many examples. Maybe https://riverbankcomputing.com/software/pyqt/intro. I don't know how commercially successful they are. People are wary of using (L)GPL in python due to the nature of it being in source form and the language of the license not covering the how python is often used in practice. Unlike compiled languages where we link libraries (such as gtk) or communicate with an executable (such as GPL and git(1)) I've had times where I've also copied out individual files and functions from python/JS projects (of course providing attribution and tweaking after). I could probably talk about it for a lot longer. But if I could make 3 points about the pysvn/libvcs and GPL wouldn't work:
IMO you get to have your cake and eat it too with MIT/BSD in python. |
Here is what the FSF says about what license to use for libraries:
http://www.gnu.org/licenses/license-recommendations.html It seems pysvn fits in the second category, so based on the FSF recomendations LGPL would be appropriate. Of course, the FSF has a bias for L(GPL) copyleft licensing, and a more liberal license license like MIT/BSD as @tony is sugesting may be better. |
@dsoprea am I correct that your intention is to have all PySvn users to use GPL 2-compatible license? E.g. if I'm developing project that will use PySvn, my project should have GPL 2 or GPL 3 license (but not BSD/Apache, since they are less stricter than GPL). |
It only matters if you ship both together. If you're dynamically pulling
down dependencies then it doesn't matter.
On Dec 16, 2016 19:17, "Vladimir Rutsky" <[email protected]> wrote:
@dsoprea <https://github.com/dsoprea> am I correct that your intention is
to have all PySvn users to use GPL 2-compatible license?
E.g. if I'm developing project that will use PySvn, my project should have
GPL 2 or GPL 3 license (but not BSD/Apache, since they are less stricter
than GPL).
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#38 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AArraigojeJ3dyQ9gwdOaSlRCjsGG8Geks5rIyo3gaJpZM4I-aPj>
.
|
Hi,
I'm working on a library @https://github.com/tony/libvcs/ that could utilize this project for richer functionality. However there is a snag I found that the current license on pysvn conflicts with libvcs (BSD).
Any thoughts on making this license compatible with MIT/BSD?
The text was updated successfully, but these errors were encountered: