BSD License: How to manage attribution and project name in a fork

Go To StackoverFlow.com

5

I have forked a BSD-licensed project and made significant rewrites. In terms of numbers of characters, around 70% of the code was now written by me. I want to respect the original author's copyright while also receiving attribution for my work. Originally I intended to ask the best way to do that, but I see that according to this question I can just duplicate the original author's copyright line in the license file and put in my name and the year(s) of my work. Cool.

Now my question has to do with this line:

Neither the name of the PROJECTNAME nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

My rewrites have involved a significant change to the scope and direction of the application. I felt it appropriate to change the name of the app to better represent what my fork is. So:

  1. Is changing the name cool? I don't see anything in the license that would prohibit it.
  2. How best to represent this in the license? Should I replace the old project name with the new one? Should I modify that line to say "neither the name of the OLDPROJECTNAME, the name of the NEWPROJECTNAME, nor the names of its contributors..."?

I understand that no one here is going to give legal advice! I'm just looking for some general guidelines and best practices from the open source community.

2012-04-04 04:19
by user1311904
As you say, this is not a legal advice site. Good luck getting past a judge with "but some random weirdo on a website said it was ok" if/when you get hauled into court on a copyright violation. Any opinions you get here will be of no use to you. Talk to a lawyer - Marc B 2012-04-04 04:22
I'm voting to close this question as off-topic because it is about licensing and legal issues, not programming or software development. See here for details, and the [help/on-topic] for more - Pang 2015-06-12 01:39


1

You can change the name of the project, of course, BSD license being one of the most permissive ever, after public domain maybe. It's not cool to keep the old name since you rewrote most of the code. And not fair for the original dev team.

If you are familiar with GPL-based licenses, they mostly have some clauses to make mentioning original authors and keeping the license mandatory. With BSD style, those aren't a problem anymore.


My answers are:

  1. Consider yourself being an author of a fork, derived from any initial software but now doing things differently.
  2. I guess you can attach any license you want now, since YOU are the author. Not sure about that though.
2012-04-04 04:26
by Victor Nițu


1

I want to respect the original author's copyright while also receiving attribution for my work.

It's nice you want to, but actually it's even a must. If you don't respect the usage terms given under BSD you would not have the right to rewrite the code (which you already did).

There are multiple ways how you can make the licensing of a software visible, whichever you have with your software make clear:

  • What is the name of the work (to make it identifiable) and who is the author of it, when was it written.

  • As your software makes use of other software, make clear under which license that other software is, which software it is, by whom it has been written etc..

If you want to allow your own changes and extendings to be re-used upstream in the project you forked, you should choose the same license for your work.

I felt it appropriate to change the name of the app to better represent what my fork is.

Is changing the name cool? I don't see anything in the license that would prohibit it.

The original usage conditions don't forbid you to change the project name. As you actually forked it, it makes very much sense that you change the name. Even if it's PROJECTNAME-user1311904-fork only or a completely different name.

How best to represent this in the license? Should I replace the old project name with the new one? Should I modify that line to say "neither the name of the OLDPROJECTNAME, the name of the NEWPROJECTNAME, nor the names of its contributors..."?

Actually as outlined above you have two licenses. You have got your license (the main license) which is for "your" software. And then you write that part of your software is licensed as. Then the original terms of the software your forked from are listed (as you got them from the original author). So it's clear what the licensing of your software is.

If you want to document this really good, you should put everything under version control, so it's technically possible to obtain the information what the original code was and what your changes are. So it's absolutely safely documented with the version control system to which part which license/es apply/ies.

2012-04-07 12:32
by hakre
Ads