-
Notifications
You must be signed in to change notification settings - Fork 32
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
Clarify project license #61
Comments
Do you have any suggestions or requests? I'm inclined to use the Unlicense for this unless there's a good reason not to. |
Thanks! Unlicense would work fine, and is an approved license for inclusion in most Linux distributions (you can see the list for Fedora at https://docs.fedoraproject.org/en-US/legal/allowed-licenses/ if you're curious). Within the Python community, MIT is also a pretty common choice for a permissive license. From my standpoint, anything permissive would be ok. |
@thisisparker Historically the conventional wisdom I've seen has been to use a more explicit license than unlicensed, or public domain, because these do not count as legal licenses, and thus have unwanted consequences (or absence of consequences) in some jurisdictions. In short: an unlicense may cause a default restrictive ownership license to apply even if you didn't intend it. If your intention is to grant liberal permission to use the source code in both commercial and noncommercial, closed and open source contexts, then MIT would be a good choice. |
While I'm being fussy about it, you might need/want to go back and get the approval from anybody who contributed to the project that they are willing to grant the license you choose for their contributions. Otherwise you might not be able to legally assert that any given license applies to the whole source base. |
Repackage, matching existing functionality but with better organization. This is a very long-planned refactor that mostly keeps things as they are but should be a little easier to maintain and, I'm hoping, to contribute to. As a secondary benefit, I think it will be easier to maintain forks that offer functionality that I don't want to merge into the core here. While I was in there: - Added a license file, closing #61 - Bumped all the dependencies, closing #57 and indirectly #53 and #60 - Improved some error messages, which should close #56 - And finally, fixed some as-yet-unreported issues with Friday New Yorker puzzle titles and Newsday selection-by-date.
We're MIT now! Thanks for the nudge! |
I've looked a little more closely at the licensing implications for xword-dl, and I think there is an issue with uniformly declaring that the project as a whole is MIT. This is because it depends upon two libraries, html2text and Unidecode, which are GPL3 and GPL2 licensed, respectively. This means that a built version of xword-dl is not licensable as MIT because it inherently carries the viral licensing requirements of the underlying GPL2 and GPL3 licenses. So it might be worth clarifying in the license that the xword-dl portion is itself MIT licensed, but that some of its dependencies bring a GPL license with them. If these libraries could one day be replaced with MIT-compatible licenses, that would be ideal. |
I started evaluating non-GPL alternatives and I think for the Unidecode dependency we might be able to switch to https://github.com/anyascii/anyascii. It's a liberal BSD-style license and seems likely to accomplish the gist of what we're using unidecode for. I'll open a pull request with work in progress if I get there. |
The https://github.com/TeamHG-Memex/html-text project looks like a potential replacement for html2text. I'll evaluate and add that to the PR #90 I created, when I get it integrated. If nothing else my "no-gpl" branch might serve as a pure MIT alternative for people who are conscientious about possible license violations, while you evaluate whether to incorporate the changes or not. |
I couldn't find any reference to what license this project is distributed under. Could you please clarify that, and ideally add a LICENSE file to the repo for future reference? Thanks!
The text was updated successfully, but these errors were encountered: