-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Make rustdoc output comply with licenses #28573
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The output of rustdoc includes resources licensed under the SIL Open Font License, the MIT license, and the Apache License 2.0. All of these licenses permit redistribution provided that the license text is also redistributed. Previously this was not the case, making rustdoc output unsuitable for distribution by default. This resolves that problem by including the license texts in rustdoc output.
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
Thanks! This looks fine to me as the simplest solution that will work. The only concern I have here is that it's not clear what MIT/Apache 2.0 apply to. Perhaps a top-level COPYRIGHT file (like in the rust tree), that explains more precisely which components are covered by what, and that the content is not covered. What do you think about that @ruud-v-a? |
Good idea. Something like this? |
I've always personally on the side of just removing all our font business, it's ended up being a never-ending series of small paper cuts, but other than that this seems fine. |
Updates? |
@bors r+ |
📌 Commit 6c56652 has been approved by |
The output of rustdoc includes resources licensed under the SIL Open Font License, the MIT license, and the Apache License 2.0. All of these licenses permit redistribution provided that the license text is also redistributed. Previously this was not the case, making rustdoc output unsuitable for distribution by default. This resolves that problem by including the license texts in rustdoc output. See also: https://users.rust-lang.org/t/licensing-rustdoc-output/2880
The output of rustdoc includes resources licensed under the SIL Open
Font License, the MIT license, and the Apache License 2.0. All of these
licenses permit redistribution provided that the license text is also
redistributed. Previously this was not the case, making rustdoc output
unsuitable for distribution by default. This resolves that problem by
including the license texts in rustdoc output.
See also: https://users.rust-lang.org/t/licensing-rustdoc-output/2880