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 01:06:02 +01:00
|
|
|
# SPDX-FileCopyrightText: 2014 Citra Emulator Project
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
2022-07-06 01:20:39 +01:00
|
|
|
[submodule "enet"]
|
2023-06-27 22:39:29 +01:00
|
|
|
path = externals/enet
|
|
|
|
url = https://github.com/lsalzman/enet.git
|
2015-04-22 17:15:18 +01:00
|
|
|
[submodule "inih"]
|
2023-06-27 22:39:29 +01:00
|
|
|
path = externals/inih/inih
|
|
|
|
url = https://github.com/benhoyt/inih.git
|
2018-07-28 00:17:27 +01:00
|
|
|
[submodule "cubeb"]
|
2023-06-27 22:39:29 +01:00
|
|
|
path = externals/cubeb
|
|
|
|
url = https://github.com/mozilla/cubeb.git
|
2016-09-02 04:00:15 +01:00
|
|
|
[submodule "dynarmic"]
|
2023-06-27 22:39:29 +01:00
|
|
|
path = externals/dynarmic
|
|
|
|
url = https://github.com/merryhime/dynarmic.git
|
2020-08-26 03:21:32 +01:00
|
|
|
[submodule "libusb"]
|
|
|
|
path = externals/libusb/libusb
|
|
|
|
url = https://github.com/libusb/libusb.git
|
2018-09-16 19:05:19 +01:00
|
|
|
[submodule "discord-rpc"]
|
2023-06-27 22:39:29 +01: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 22:39:29 +01: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 22:39:29 +01:00
|
|
|
path = externals/sirit
|
|
|
|
url = https://github.com/yuzu-emu/sirit.git
|
2020-05-08 22:09:29 +01:00
|
|
|
[submodule "mbedtls"]
|
2023-06-27 22:39:29 +01:00
|
|
|
path = externals/mbedtls
|
|
|
|
url = https://github.com/yuzu-emu/mbedtls.git
|
2020-05-30 01:55:27 +01:00
|
|
|
[submodule "xbyak"]
|
2023-06-27 22:39:29 +01:00
|
|
|
path = externals/xbyak
|
|
|
|
url = https://github.com/herumi/xbyak.git
|
2020-07-01 06:09:33 +01:00
|
|
|
[submodule "opus"]
|
|
|
|
path = externals/opus/opus
|
|
|
|
url = https://github.com/xiph/opus.git
|
2021-04-17 21:48:51 +01:00
|
|
|
[submodule "SDL"]
|
2021-04-17 00:12:47 +01:00
|
|
|
path = externals/SDL
|
|
|
|
url = https://github.com/libsdl-org/SDL.git
|
2022-07-22 23:37:42 +01:00
|
|
|
[submodule "cpp-httplib"]
|
2021-06-18 19:48:53 +01:00
|
|
|
path = externals/cpp-httplib
|
|
|
|
url = https://github.com/yhirose/cpp-httplib.git
|
2022-07-22 23:37:42 +01:00
|
|
|
[submodule "ffmpeg"]
|
2021-12-15 08:10:07 +00:00
|
|
|
path = externals/ffmpeg/ffmpeg
|
2022-07-26 23:01:19 +01:00
|
|
|
url = https://github.com/FFmpeg/FFmpeg.git
|
2022-07-22 23:37:42 +01:00
|
|
|
[submodule "vcpkg"]
|
2022-07-22 19:49:43 +01:00
|
|
|
path = externals/vcpkg
|
2023-06-27 22:39:29 +01:00
|
|
|
url = https://github.com/microsoft/vcpkg.git
|
2022-07-15 18:45:35 +01:00
|
|
|
[submodule "cpp-jwt"]
|
|
|
|
path = externals/cpp-jwt
|
|
|
|
url = https://github.com/arun11299/cpp-jwt.git
|
2023-06-06 20:06:19 +01:00
|
|
|
[submodule "libadrenotools"]
|
2023-01-01 23:34:38 +00:00
|
|
|
path = externals/libadrenotools
|
2023-06-27 22:39:29 +01:00
|
|
|
url = https://github.com/bylaws/libadrenotools.git
|
2023-06-16 09:15:19 +01:00
|
|
|
[submodule "tzdb_to_nx"]
|
|
|
|
path = externals/nx_tzdb/tzdb_to_nx
|
|
|
|
url = https://github.com/lat9nq/tzdb_to_nx.git
|
2023-06-25 13:08:38 +01:00
|
|
|
[submodule "VulkanMemoryAllocator"]
|
|
|
|
path = externals/vma/VulkanMemoryAllocator
|
2023-06-27 22:39:29 +01:00
|
|
|
url = https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
|