Skip to content

Latest commit

 

History

History
157 lines (130 loc) · 10.2 KB

copying.md

File metadata and controls

157 lines (130 loc) · 10.2 KB

Any file in this project that doesn't state otherwise, and isn't listed as an exception below, is Copyright 2013-2015 The openage authors, and licensed under the terms of the GNU General Public License Version 3, or (at your option) any later version ("GPL3+"). A copy of the license can be found in legal/GPLV3.

the openage authors are:

Full name aliases E-Mail
Jonas Jelten TheJJ [email protected]
Michael Enßlin mic_e [email protected]
Andre Kupka freakout [email protected]
Frank Schmidt gellardo [email protected]
Markus Otto zuntrax [email protected]
Sascha Vincent Kurowski svkurowski [email protected]
James Mintram JimmyJazz [email protected]
Martin McGrath MartinMcGrath [email protected]
René Kooi goto-bus-stop [email protected]
Markus Elfring elfring [email protected]
Jimmy Berry boombatower [email protected]
João Roque joaoroque [email protected]
Julius Michaelis jcaesar [email protected]
Matthias Bogad delirium, masterofjellyfish [email protected]
Oliver Fawcett-Griffiths ollyfg [email protected]
Ross Murray rossmurray [email protected]
Alexandre Arpin AlexandreArpin [email protected]
Henry Snoek snoek09 [email protected]
Gabriel Scherer gasche [email protected]
Austin Eyler awestin1 [email protected]
Francisco Demartino franciscod [email protected]
Peter Piwowarski oldlaptop [email protected]
Charles Pigott LordAro [email protected]
Andrew Eikum ColdPie1 [email protected]
Michael Sebastiyan BugExplorer [email protected]
Adam Miartus miartad [email protected]
Benoît Legat blegat [email protected]
James Hagborg blucoat [email protected]
Prashanth Jonnala jprashanth [email protected]
Jonathan Remnant Jon0 [email protected]
Sam Schetterer schets [email protected]
Georg Kilzer leper [email protected]
Florian Erler ethon [email protected]
Michał Janiszewski janisozaur [email protected]
Lautaro Nahuel De León lndl [email protected]
Robin Kreis rkreis [email protected]
Shion Ryuu shion [email protected]
Jonas Borchelt riotjones [email protected]
Jon Gelderloos jgelderloos [email protected]
Emmanuel Gil Peyrot Link Mauve [email protected]
Danilo Bargen dbrgn [email protected]
Niklas Fiekas niklasf [email protected]
Charles Gould charlesrgould [email protected]
Wilco Kusee detrumi [email protected]
Sreejith R sreejithr [email protected]
Jens Feodor Nielsen jfeo [email protected]
Franz-Niclas Muschter fm [email protected]
Valentin Gagarin frickler01 [email protected]
Emmanouil Kampitakis madonius [email protected]
Thomas Oltmann tomolt [email protected]
Miguel Kasparick miguellissimo [email protected]
Darren Strash darrenstrash [email protected]
Kyle Robbertze paddatrapper [email protected]

If you're a first-time commiter, add yourself to the above list. This is not just for legal reasons, but also to keep an overview of all those nicknames.

For some authors, the full names and/or e-mail addresses are unknown. They have been marked by "?". Luckily, those author's contributions are only small typo fixes, so no copyright concerns should arise from this. If your info is missing, wrong, or you want it to be removed for whatever reason, please contact us.

A full list of all openage authors ("contributors") can also be determined from the VCS, e.g. via git shortlog -sne, or conveniently looked up on the GitHub web interface.

Details on individual authorships of files can be obtained via the VCS, e.g. via git blame, or the GitHub web interface.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License Version 3 for more details.

If you wish to include a file from openage in your project, make sure to include all required legal info. The easiest way to do this would probably be to include a copy of this file (copying.md), and to leave the file's copyright header untouched.

Per-file license header guidelines:

In addition to this file, to prevent legal caveats, every source file must include a header.

openage-native source files, that is, files that were created by the openage authors, require the following one-line header, preferrably in the first line, as a comment:

Copyright 20XX-20YY the openage authors. See copying.md for legal info.

20XX is the year when the file was created, and 20YY is the year when the file was last edited. When editing a file, make sure the last-modification year is still correct.

3rd-party source files, that is, files that were taken from other open- source projects, require the following, longer header:

This file was ((taken|adapted)|contains (data|code)) from $PROJECT,
Copyright 1337-2013 Your Mom.
It's licensed under the terms of the 3-clause BSD license.
< any amount of lines of further legal information required by $PROJECT,
  such as a reference to a copy of the $PROJECT's README or AUTHORS file >
< if third-party files from more than the one project were used in this
  file, copy the above any number of times >
(Modifications|Other (data|code)|Everything else) Copyright 2014-2014 the openage authors.
See copying.md for further legal info.

For even more details, see the regular expressions.

In addition to the openage header, the file's original license header should be retained if in doubt.

The "license" line is required only if the file is not licensed as "GPLv3 or higher".

Authors of 3rd-party files should generally not be entered in the "openage authors" list.

All 3rd-party files must be included in the following list:

List of all 3rd-party files in openage:

From cabextract/libmspack (LGPL 2.0)

  • libopenage/util/compress/lzxd.cpp
  • doc/code/lzx_compression_info

cmake modules (3-clause BSD license)

  • buildsystem/modules/FindSDL2.cmake (taken from openmw)
  • buildsystem/modules/FindFTGL.cmake (taken from ulrichard's FTGL fork)
  • buildsystem/modules/FindGPerfTools.cmake (taken from VAST)
  • buildsystem/modules/FindOpusfile.cmake (taken from Unvanquished)

Notes about this file:

I (mic_e) am not a lawyer. This is an open-source project, we're doing this for fun. People convinced me that this legal shit must be done, so I did it, even though I'd rather have spent the time on useful parts of the project. If you see any legal issues, feel free to contact me. I, personally, despise in-sourcefile legal text blocks. They're a pest, and unlike many others, I don't simply accept them because "that is what everybody does". Thus, I worked out the minimal 1-line text above, which should be free of legal caveats, and a reasonable compromise. I'd be happy to see it used in other projects; you're free to use this file (copying.md) as a template for your project's legal documentation.