From c181bf3d8637696529fa5d626b5bc3ca4b8c6814 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 31 Dec 2022 20:09:45 +0100 Subject: [PATCH] Cleaned up licenses in the fastnoise module. --- modules/fastnoise/COPYRIGHT.txt | 49 +++++++++++++++++++++++++++++++++ modules/fastnoise/LICENSE.md | 3 +- modules/fastnoise/config.py | 3 ++ modules/fastnoise/lib/LICENSE | 1 + 4 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 modules/fastnoise/COPYRIGHT.txt diff --git a/modules/fastnoise/COPYRIGHT.txt b/modules/fastnoise/COPYRIGHT.txt new file mode 100644 index 000000000..d7039e026 --- /dev/null +++ b/modules/fastnoise/COPYRIGHT.txt @@ -0,0 +1,49 @@ +# Exhaustive licensing information for files in the Godot Engine repository +# ========================================================================= +# +# This file aims at documenting the copyright and license for every source +# file in the Godot Engine repository, and especially outline the files +# whose license differs from the MIT/Expat license used by Godot Engine. +# +# It is written as a machine-readable format following the debian/copyright +# specification. Globbing patterns (e.g. "Files: *") mean that they affect +# all corresponding files (also recursively in subfolders), apart from those +# with a more explicit copyright statement. +# +# Licenses are given with their debian/copyright short name (or SPDX identifier +# if no standard short name exists) and are all included in plain text at the +# end of this file (in alphabetical order). +# +# Disclaimer for thirdparty libraries: +# ------------------------------------ +# +# Licensing details for thirdparty libraries in the 'thirdparty/' directory +# are given in summarized form, i.e. with only the "main" license described +# in the library's license statement. Different licenses of single files or +# code snippets in thirdparty libraries are not documented here. +# For example: +# Files: ./thirdparty/zlib/ +# Copyright: 1995-2017, Jean-loup Gailly and Mark Adler +# License: Zlib +# The exact copyright for each file in that library *may* differ, and some +# files or code snippets might be distributed under other compatible licenses +# (e.g. a public domain dedication), but as far as Godot Engine is concerned +# the library is considered as a whole under the Zlib license. +# +# Nota: When linking dynamically against thirdparty libraries instead of +# building them into the Godot binary, you may remove the corresponding +# license details from this file. + +----------------------------------------------------------------------- + +Files: modules/fastnoise/* +Comment: FastNoise Module +Copyright: 2016, Marc Gilleron. + 2019-2023, Péter Magyar. +License: Expat + +Files: modules/fastnoise/lib/* +Comment: FastNoise Library +Copyright: 2017 Jordan Peck. + 2020-2023, Péter Magyar. +License: Expat diff --git a/modules/fastnoise/LICENSE.md b/modules/fastnoise/LICENSE.md index b11395936..0b1219376 100644 --- a/modules/fastnoise/LICENSE.md +++ b/modules/fastnoise/LICENSE.md @@ -1,7 +1,8 @@ MIT License (MIT) ======================= -Copyright © 2016 Marc Gilleron (reverse email) +Copyright © 2016 Marc Gilleron (reverse email). +Copyright (c) 2019-2023 Péter Magyar. FastNoise C++ library license: [lib/LICENSE](lib/LICENSE) diff --git a/modules/fastnoise/config.py b/modules/fastnoise/config.py index e65b2920a..7142906b5 100644 --- a/modules/fastnoise/config.py +++ b/modules/fastnoise/config.py @@ -15,3 +15,6 @@ def can_build(env, platform): def configure(env): pass + +def get_license_file(): + return "COPYRIGHT.txt" diff --git a/modules/fastnoise/lib/LICENSE b/modules/fastnoise/lib/LICENSE index a54cc3cca..765900960 100644 --- a/modules/fastnoise/lib/LICENSE +++ b/modules/fastnoise/lib/LICENSE @@ -1,6 +1,7 @@ MIT License Copyright (c) 2017 Jordan Peck +Copyright (c) 2020-2023 Péter Magyar. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal