chore: make yuzu REUSE compliant
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.
Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.
The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.
Following REUSE has a few advantages over the current approach:
- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
`.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
files like binary assets / images is always accurate and up to date
To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.
[REUSE]: https://reuse.software
Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
2022-05-15 00:06:02 +00:00
|
|
|
# SPDX-FileCopyrightText: 2014 Citra Emulator Project
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
2022-07-06 00:20:39 +00:00
|
|
|
[submodule "enet"]
|
2023-06-27 21:39:29 +00:00
|
|
|
path = externals/enet
|
|
|
|
url = https://github.com/lsalzman/enet.git
|
2015-04-22 16:15:18 +00:00
|
|
|
[submodule "inih"]
|
2023-06-27 21:39:29 +00:00
|
|
|
path = externals/inih/inih
|
|
|
|
url = https://github.com/benhoyt/inih.git
|
2018-07-27 23:17:27 +00:00
|
|
|
[submodule "cubeb"]
|
2023-06-27 21:39:29 +00:00
|
|
|
path = externals/cubeb
|
|
|
|
url = https://github.com/mozilla/cubeb.git
|
2016-09-02 03:00:15 +00:00
|
|
|
[submodule "dynarmic"]
|
2023-06-27 21:39:29 +00:00
|
|
|
path = externals/dynarmic
|
|
|
|
url = https://github.com/merryhime/dynarmic.git
|
2020-08-26 02:21:32 +00:00
|
|
|
[submodule "libusb"]
|
|
|
|
path = externals/libusb/libusb
|
|
|
|
url = https://github.com/libusb/libusb.git
|
2018-09-16 18:05:19 +00:00
|
|
|
[submodule "discord-rpc"]
|
2023-06-27 21:39:29 +00:00
|
|
|
path = externals/discord-rpc
|
|
|
|
url = https://github.com/yuzu-emu/discord-rpc.git
|
2019-02-12 20:57:53 +00:00
|
|
|
[submodule "Vulkan-Headers"]
|
2023-06-27 21:39:29 +00:00
|
|
|
path = externals/Vulkan-Headers
|
|
|
|
url = https://github.com/KhronosGroup/Vulkan-Headers.git
|
2019-03-14 05:17:19 +00:00
|
|
|
[submodule "sirit"]
|
2023-06-27 21:39:29 +00:00
|
|
|
path = externals/sirit
|
|
|
|
url = https://github.com/yuzu-emu/sirit.git
|
2020-05-08 21:09:29 +00:00
|
|
|
[submodule "mbedtls"]
|
2023-06-27 21:39:29 +00:00
|
|
|
path = externals/mbedtls
|
|
|
|
url = https://github.com/yuzu-emu/mbedtls.git
|
2020-05-30 00:55:27 +00:00
|
|
|
[submodule "xbyak"]
|
2023-06-27 21:39:29 +00:00
|
|
|
path = externals/xbyak
|
|
|
|
url = https://github.com/herumi/xbyak.git
|
2020-07-01 05:09:33 +00:00
|
|
|
[submodule "opus"]
|
|
|
|
path = externals/opus/opus
|
|
|
|
url = https://github.com/xiph/opus.git
|
2021-04-17 20:48:51 +00:00
|
|
|
[submodule "SDL"]
|
2021-04-16 23:12:47 +00:00
|
|
|
path = externals/SDL
|
|
|
|
url = https://github.com/libsdl-org/SDL.git
|
2022-07-22 22:37:42 +00:00
|
|
|
[submodule "cpp-httplib"]
|
2021-06-18 18:48:53 +00:00
|
|
|
path = externals/cpp-httplib
|
|
|
|
url = https://github.com/yhirose/cpp-httplib.git
|
2022-07-22 22:37:42 +00:00
|
|
|
[submodule "ffmpeg"]
|
2021-12-15 08:10:07 +00:00
|
|
|
path = externals/ffmpeg/ffmpeg
|
2022-07-26 22:01:19 +00:00
|
|
|
url = https://github.com/FFmpeg/FFmpeg.git
|
2022-07-22 22:37:42 +00:00
|
|
|
[submodule "vcpkg"]
|
2022-07-22 18:49:43 +00:00
|
|
|
path = externals/vcpkg
|
2023-06-27 21:39:29 +00:00
|
|
|
url = https://github.com/microsoft/vcpkg.git
|
2022-07-15 17:45:35 +00:00
|
|
|
[submodule "cpp-jwt"]
|
|
|
|
path = externals/cpp-jwt
|
|
|
|
url = https://github.com/arun11299/cpp-jwt.git
|
2023-06-06 19:06:19 +00:00
|
|
|
[submodule "libadrenotools"]
|
2023-01-01 23:34:38 +00:00
|
|
|
path = externals/libadrenotools
|
2023-06-27 21:39:29 +00:00
|
|
|
url = https://github.com/bylaws/libadrenotools.git
|
2023-06-16 08:15:19 +00:00
|
|
|
[submodule "tzdb_to_nx"]
|
|
|
|
path = externals/nx_tzdb/tzdb_to_nx
|
|
|
|
url = https://github.com/lat9nq/tzdb_to_nx.git
|
2023-06-25 12:08:38 +00:00
|
|
|
[submodule "VulkanMemoryAllocator"]
|
2023-06-27 20:54:33 +00:00
|
|
|
path = externals/VulkanMemoryAllocator
|
2023-06-27 21:39:29 +00:00
|
|
|
url = https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
|
2023-10-04 17:11:05 +00:00
|
|
|
[submodule "breakpad"]
|
|
|
|
path = externals/breakpad
|
|
|
|
url = https://github.com/yuzu-emu/breakpad.git
|