From 9553af00d7110ceb9e39a0378c6f476980ac3904 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 18 Jun 2022 19:15:25 +0200 Subject: [PATCH] :page_facing_up: add licenses --- .reuse/dep5 | 40 ++++++++++++++++++++++++++++++++++++ .reuse/templates/json.jinja2 | 11 ++++++++++ 2 files changed, 51 insertions(+) create mode 100644 .reuse/dep5 create mode 100644 .reuse/templates/json.jinja2 diff --git a/.reuse/dep5 b/.reuse/dep5 new file mode 100644 index 000000000..4c1ba7fab --- /dev/null +++ b/.reuse/dep5 @@ -0,0 +1,40 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: json +Upstream-Contact: Niels Lohmann +Source: https://github.com/nlohmann/json + +Files: * +Copyright: 2013-2022 Niels Lohmann +License: MIT + +Files: include/nlohmann/detail/conversions/to_chars.hpp +Copyright: 2009 Florian Loitsch +License: MIT + +Files: include/nlohmann/thirdparty/hedley/hedley.hpp +Copyright: 2016-2021 Evan Nemerson +License: CC0-1.0 + +Files: tests/thirdparty/doctest/* +Copyright: 2016-2021 Viktor Kirilov +License: MIT + +Files: tests/thirdparty/fifo_map/* +Copyright: 2015-2017 Niels Lohmann +License: MIT + +Files: tests/thirdparty/Fuzzer/* +Copyright: 2003-2022, LLVM Project. +License: Apache-2.0 + +Files: tests/thirdparty/imapdl/* +Copyright: 2017 Georg Sauthoff +License: GPL-3.0-only + +Files: tools/amalgamate/* +Copyright: 2012 Erik Edlund +License: BSD-3-Clause + +Files: tools/cpplint/* +Copyright: 2009 Google Inc. All rights reserved. +License: BSD-3-Clause diff --git a/.reuse/templates/json.jinja2 b/.reuse/templates/json.jinja2 new file mode 100644 index 000000000..610eb2172 --- /dev/null +++ b/.reuse/templates/json.jinja2 @@ -0,0 +1,11 @@ + __ _____ _____ _____ + __| | __| | | | JSON for Modern C++ +| | |__ | | | | | | version 3.10.5 +|_____|_____|_____|_|___| https://github.com/nlohmann/json + +{% for copyright_line in copyright_lines %} +{{ copyright_line }} +{% endfor %} +{% for expression in spdx_expressions %} +SPDX-License-Identifier: {{ expression }} +{% endfor %}