diff options
author | Pietro Albini <pietro.albini@ferrous-systems.com> | 2022-10-25 13:05:57 +0200 |
---|---|---|
committer | Pietro Albini <pietro.albini@ferrous-systems.com> | 2023-03-09 12:24:34 +0100 |
commit | 27648b7da1b031ec05cb0f1582f9797cd53d06d1 (patch) | |
tree | 38d3b76c0707a74633fb001aeb5ce3453223abf7 | |
parent | 8bd2431444f13085c63a5939bac37b2dc25e1a4b (diff) | |
download | rust-27648b7da1b031ec05cb0f1582f9797cd53d06d1.tar.gz |
explicitly list files at the top level
This helps downstream forks of the compiler like Ferrocene to have their
own annotations for their own files, without having the upstream
licensing be applied. For Ferrocene specifically we keep custom code in
a top-level ferrocene/ directory, and we don't want the dep5 file to
apply to it.
-rw-r--r-- | .reuse/dep5 | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/.reuse/dep5 b/.reuse/dep5 index 59bfa804ef8..607243841b2 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -4,7 +4,37 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Files-Excluded: src/llvm-project -Files: * +# Note that we're explicitly listing the individual files at the root of the +# repository rather than just having `Files: *`. This is explicitly done to +# help downstream forks of the Rust compiler: this way, the files they add +# won't be automatically marked as authored by the Rust project. +Files: compiler/* + library/* + tests/* + src/* + .github/* + Cargo.lock + Cargo.toml + CODE_OF_CONDUCT.md + config.toml.example + configure + CONTRIBUTING.md + COPYRIGHT + LICENSE-APACHE + LICENSE-MIT + README.md + RELEASES.md + rustfmt.toml + triagebot.toml + x + x.ps1 + x.py + .editorconfig + .git-blame-ignore-revs + .gitattributes + .gitignore + .gitmodules + .mailmap Copyright: The Rust Project Developers (see https://thanks.rust-lang.org) License: MIT or Apache-2.0 |