Could the stackoverflow community give a suggestion for a open source or free source licence ?
The scenario is (please read all bullets, before commenting):
I am the original author of some code.
I want to share the code with an open source or free source licence
I want other software developers to be permited, not just use the code, but, also port the code to other programming language or programming framework, different to the original.
I want other software developers to be permited, to rename the files.
I want other software developers to be permited, to rename the classes, namespaces, methods.
I want other software developers to be permited, to merge my source code with their source code.
I want other software developers to be allowed the previously mentioned modifications, they required, yet to maintain the original author & sources.
In order to facilitate these features, the derivate work, should have the same licence as the original code.
Preferrably, use a LPGL, BDS, MPL, licence (modified, or based).
I now, that its kind of complicated, but, these are features I have been have to deal while using other soft. developers' source code.
Example with (3)
3.1 Original Source Code (C++)
[somefile.hpp]
/**
** Same license goes here.
** Author: John Doe.
** Comments: File with classes that do something cool.
**/
class DoSomething {
protected:
int SomeField;
public:
void HelloWorld();
};
[somefile.cpp]
/**
** Same license goes here.
** Author: John Doe.
** Comments: File with classes that do something cool.
**/
void DoSomething::HelloWorld()
{
// ...
}
3.2 Modified Source Code (PHP)
[somefile.php]
<?php
/**
** Same license goes here.
** Original Author: John Doe.
** Original Comments: File with classes that do something cool.
** New Author: Homer Simpleton.
** New Comments: Ported the code from "C++" to "PHP".
**/
class DoSomething {
protected /* int */ $SomeField;
public
/* void */ function HelloWorld()
{
// ...
}
}
php?>
Example with (5)
5.1 Original Source Code (C++)
[somefile.hpp]
/**
** Same license goes here.
** Original Author: John Doe.
** Original Comments: File with classes that do something cool.
**/
class somefile_DoSomething {
protected:
int SomeField;
public:
void HelloWorld();
};
[somefile.cpp]
/**
** Same license goes here.
** Original Author: John Doe.
** Original Comments: File with classes that do something cool.
**/
void somefile_DoSomething::HelloWorld()
{
// ...
}
5.2 Renamed Source Code (C++)
[utils.hpp]
/**
** Same license goes here.
** Author: John Doe.
** Comments: File with classes that do something cool.
** Modification Author: Homer Simpleton.
** Modification Comments:
** Rename file or identifiers, to integrate with other exisiting code,
** other code has a compatible licence.
** Changes:
** Filename substring "somefile" => "utils"
** Source Code substring "somefile" => "utils"
**/
class utils_DoSomething {
protected:
int SomeField;
public:
void HelloWorld();
};
[utils.cpp]
/**
** Same license goes here.
** Author: John Doe.
** Comments: File with classes that do something cool.
** Modification Author: Homer Simpleton.
** Modification Comments:
** Rename file or identifiers, to integrate with other exisiting code,
** other code has a compatible licence.
** Changes:
** Filename substring "somefile" => "utils"
** Source Code substring "somefile" => "utils"
**/
void utils_DoSomething::HelloWorld()
{
// ...
}
And, similar changes.
Thanks.