You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- 1so in practice, i would do this: copy a MIT project, replace everything MIT with GPL (so no trace is left of the project having been MIT), and then additionally link to the original MIT project in a few important places (not every source file though), mentioning that the base-project is available under MIT. would that be ok/legal (given i keep the original copyright owner statements)?hoijui– hoijui2018-03-12 07:03:39 +00:00Commented Mar 12, 2018 at 7:03
- 4@hoijui You must leave all MIT license headers and permission notices intact and include them with your new project. And unless your intent is to deceive, I don’t see why you would replace all mentions of “MIT”. It won’t change anything, the parts you take will still be MIT licensed. Just add your own GPL license header below it, it will be valid for all copyrightable changes (i.e. not just renaming variables) that you make to the source code. BTW this is why most projects have a copyright header in every file.jmiserez– jmiserez2018-03-27 17:38:01 +00:00Commented Mar 27, 2018 at 17:38
- @jmiserez ok. so lets look at one file of my project then: i leave the MIT header, make some changes and add a GPL header (as i want my changes to only be available under the GPL). now a 3rd party comming about my file would have to honor both MIT and GPL? i have never seen a file with two license headers, and i would think, most people would just choose the license they like, as they do not know what the legally right way is. also, why do i have to include the MIT, if by honoring the GPL, one automatically also honors MIT?hoijui– hoijui2018-03-30 14:48:03 +00:00Commented Mar 30, 2018 at 14:48
- 1@hoijui Any rights you have under the MIT license come with the restriction “The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.” But honestly I’m not sure if you need to keep all of the notices, or just one, IANAL. But I’m sure you need to include a notice somewhere. If you didn’t, you wouldn’t be compliant with the MIT license anymore, which would mean you’d lose all rights to use the code in your project. FYI the Linux kernel has files with multiple licenses, they use SPDX headers: lwn.net/Articles/739183jmiserez– jmiserez2018-03-30 19:06:46 +00:00Commented Mar 30, 2018 at 19:06
- 2How sad is it that someone wants to attempt to GPL code that was built on a MIT license. It seems to be against everything the MIT license stands for.Andrew T Finnell– Andrew T Finnell2018-04-01 20:36:36 +00:00Commented Apr 1, 2018 at 20:36
| Show 2 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you