Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Could the stackoverflow community give a suggestion for a open source or free source licence ?

The scenario is (please read all bullets, before commenting):

  1. I am the original author of some code.

  2. I want to share the code with an open source or free source licence

  3. 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.

  4. I want other software developers to be permited, to rename the files.

  5. I want other software developers to be permited, to rename the classes, namespaces, methods.

  6. I want other software developers to be permited, to merge my source code with their source code.

  7. I want other software developers to be allowed the previously mentioned modifications, they required, yet to maintain the original author & sources.

  8. In order to facilitate these features, the derivate work, should have the same licence as the original code.

  9. 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.

share|improve this question

closed as off topic by Mark, Bart, Erno de Weerd, Jan Hančič, Jean-François Corbett Jan 24 at 8:20

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.