Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Forking an Apache License v2 open source project and copyright notices [closed]

I'm planning to fork an open-source project which is licensed under Apache License v2. Most of the existing sources have a copyright notice in the heade, Copyright bla bla, Inc.

If I change some these sources in my fork (even if only marginally), what happens to the copyright? Will it become a joined copyright notice like "Copyright bla bla, Inc and Thomas"?

like image 575
Thomas Avatar asked Sep 27 '11 13:09

Thomas


People also ask

Can Apache 2.0 license be used commercially?

End-users can utilize the Apache 2.0 license in any commercially licensed software or enterprise application for free. However, Apache trademarks must not be used in the licensed proprietary software or any of the software's legal or organizational documentation.

What problem does Apache License 2.0 solve?

The Apache License 2.0 makes sure that the user does not have to worry about infringing any patents by using the software. The user is granted a license to any patent that covers the software.

Is Apache 2.0 license permissive?

The Apache License 2.0 is in the permissive category, meaning that users can do (nearly) anything they want with the code, with very few exceptions. However, unlike that of the MIT license, the text of the Apache License 2.0 is quite dense and difficult to read.

How do I get Apache License to work?

To apply the license to your software project, create a LICENSE file in the source tree's top level. Now copy the full Apache 2.0 License text from https://www.apache.org/licenses/LICENSE-2.0.txt into a LICENSE file. Notice that the LICENSE file doesn't have any extension, but you can optionally name the file LICENSE.


1 Answers

Disclaimer: I'm not a lawyer, just a software developer. This is just my own opinion, in each concrete case if you need legal help you must talk to a legal team on your behalf.

If I change some these sources in my fork (even if only marginally), what happens to the copyright?

The copyright remains for it's code. If you remove the code, there is no copyright any longer. If you modify the code, it's like you already assume, there is copyright for those lines of code, and copyright for the new lines of code.

Will it become a joined copyright notice like "Copyright bla bla, Inc and Thomas"?

If there is a notice per file: If you don't change the file, keep it as-is including the copyright header.

If you make changes to the file, normally the new copyright is put on top of the file, then making it visible that this is based on the previous code and then the original license plate follows. Most licenses require that you do not change the original copyright/license notice, this is important otherwise you normally loose the rights to make use of the software (e.g. fork it).

The important part is that it's clear which code falls under which copyright, so you have it documented on your own as well. With the method described, you know which files you have modified (and which files remain unmodified).

Use version control software so you can follow any changes.

A good article, even if GPL does not apply for your fork, is: Maintaining Permissive-Licensed Files in a GPL-Licensed Project: Guidelines for Developers.

like image 182
hakre Avatar answered Dec 08 '22 06:12

hakre