Add IJG LICENSE file#37
Open
telecos wants to merge 2 commits into
Open
Conversation
The crate's Cargo.toml declares 'license = "(MIT OR Apache-2.0) AND IJG"' but the IJG license file was not shipped alongside LICENSE-APACHE and LICENSE-MIT, which breaks downstream license auditing (e.g. Chromium's README.chromium generator via gnrt expects a License File for each SPDX component). The IJG license text added here is the LEGAL ISSUES section reproduced verbatim from libjpeg-turbo's README.ijg, which SPDX lists as a canonical source for the IJG license identifier: https://github.com/libjpeg-turbo/libjpeg-turbo/blob/main/README.ijg https://spdx.org/licenses/IJG.html The copyright line '(C) 1991-2020, Thomas G. Lane, Guido Vollbeding' matches the IJG notice already used inside this crate's own source headers (see src/fdct.rs). No code or behavior changes.
Author
|
I drafted the license file based on the corresponding from libjpeg-turbo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
During integration of jpeg-encoder in Chromium, we gound that gnrt tool failed because metadata lists IJG license but there is no corresponding license file. This PR aims to add the missing file.
Fixes #34