2

Suppose a piece of software is distributed under some permissive license, e.g. BSD. Now, I modify this software and want to distribute my derivative work. My questions:

  • Who is the owner of the derivative? Is it the original author, the new author or there is joint ownership?
  • Is a copyright notice (say under the original copyright) sufficient to establish the new ownership?
nccc
  • 139
  • 1
  • 4
  • Clarify your use of the term 'permissive'. http://en.wikipedia.org/wiki/Comparison_of_free_software_licences – Andyz Smith Sep 14 '13 at 13:05
  • I used it in this sense: https://en.wikipedia.org/wiki/Permissive_free_software_licence – nccc Sep 14 '13 at 19:48
  • yeah but this entire article is constantly refining the concept, explicit referring to things like copyleft, and copyfree as possible syllogisms(forgone, or obvious next steps) for permissive – Andyz Smith Sep 14 '13 at 20:15

3 Answers3

5

Who is the owner of the derivative? Is it the original author, the new author or there is joint ownership?

You own the copyright to the portion of the code that you modified.
The previous contributors own the copyright to the portions they created*

Joint ownership is a good way of looking at the copyright on the source code for the project. Keep in mind that copyright is separate from the license of the project. In this case, copyright is ownership of code. License is the rules others have to follow in order to use that code.

Is a copyright notice (say under the original copyright) sufficient to establish the new ownership?

Yes, although it is not necessarily required under the Berne Convention.


The caveat to all of the above is that some projects may require you to assign copyright to the project before they'll accept your contribution in the main branch. This note from the US Copyright office discusses how copyright may be transferred to another.

Since it sounds like you're forking the project, there probably isn't any concern about the original project requesting copyright ownership of your modifications. I primarily wanted to point out that copyright can be transferred.

  • Thanks for pointing out the distinction between ownership and license so cleary. – nccc Sep 14 '13 at 19:51
  • and note that perhaps implied 'permissive' license can be extremely **nonpermissive** in the sense that they require **specific adherance to rules** like: any code you distribute must also be free. **you can call this permissive if you like, but it is a license restriction, any way you cut it** – Andyz Smith Sep 14 '13 at 20:23
  • I guess it's permissive relative to GPL. – nccc Sep 17 '13 at 02:59
  • i'm referring to the GPL, which seems permissive, because it's open, but actually is very restrictive because it demands others be open, whether they like it or not. – Andyz Smith Sep 18 '13 at 02:32
  • 2
    @AndyzSmith - let it go. Honestly, just let your rant against the GPL go. OP specifically said BSD which _is_ a very permissive license, even with the copyright attribution requirements. The question wasn't about GPL or the copyleft, and you made your point about being careful with the GPL. Beyond declaring "public domain" and the WTFPL, all licenses have some degree of restriction by their very nature. And there are potential legal issues with those two cases anyway. We get it, you don't like the GPL. Now please let the issue go. –  Sep 18 '13 at 03:13
4

Under the Berne Convention, everyone owns their own work. So you own your changes, and the original authors own theirs. You can't change their ownership.

If you really care, you should add your copyright to the copyright notice for any file you modify, leaving all other copyrights in that file and in all other files intact.

Ross Patterson
  • 10,277
  • 34
  • 43
4

The short answer is that you can only claim ownership/copyright for that what you have created yourself.

The longer answer is that if you contribute to an open source project, then you can claim copyright for the modifications you have made and the copyright on the rest of the code remains with their respective authors.

A source code license does not give you ownership of (the copy of) the code, but it only gives you certain rights on what you can do with the code.


How to indicate that you have contributed to the code depends a bit on the license under which the code is released and the project itself. Sometimes all the contributers to a file are mentioned in the copyright statement in that file, and sometimes there is a file called AUTHORS (or something similar) that lists all the contributers to the entire project.

If you are unsure how to claim your attribution, first check how it is done in the project you are contributing to, then check if there are any requirements imposed by the license and if that still doesn't help you, add your name to the copyright statement in the files you modified.

Bart van Ingen Schenau
  • 71,712
  • 20
  • 110
  • 179