commit | 55ef64058a75ca6b4ce488c492aa31f7652fcc46 | [log] [tgz] |
---|---|---|
author | Sadaf Ebrahimi <[email protected]> | Fri Mar 03 18:14:06 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Mar 03 18:14:06 2023 +0000 |
tree | a921d9a97dcebbbeb9dad38e653c20dd0978e835 | |
parent | 20437486b256b1f014a528899fc7eceecd0ea259 [diff] | |
parent | c8aa5c2c8d1ccdc1e33e19a9ce6fae741bf4be31 [diff] |
Upgrade licenseclassifier to v2.2.0 am: 8695ad8fe0 am: 7fa07cd774 am: 34858a172f am: c8aa5c2c8d Original change: https://android-review.googlesource.com/c/platform/external/licenseclassifier/+/2467502 Change-Id: I319185c2cca6442f6f71fdc63f19c4df6191d859 Signed-off-by: Automerger Merge Worker <[email protected]>
The license classifier is a library and set of tools that can analyze text to determine what type of license it contains. It searches for license texts in a file and compares them to an archive of known licenses. These files could be, e.g., LICENSE
files with a single or multiple licenses in it, or source code files with the license text in a comment.
A “confidence level” is associated with each result indicating how close the match was. A confidence level of 1.0
indicates an exact match, while a confidence level of 0.0
indicates that no license was able to match the text.
Adding a new license is straight-forward:
Create a file in licenses/
.
.header
” to it. See licenses/README.md
for more details.Add the license name to the list in license_type.go
.
Regenerate the licenses.db
file by running the license serializer:
$ license_serializer -output licenseclassifier/licenses
Create and run appropriate tests to verify that the license is indeed present.
identify_license
is a command line tool that can identify the license(s) within a file.
$ identify_license LICENSE LICENSE: GPL-2.0 (confidence: 1, offset: 0, extent: 14794) LICENSE: LGPL-2.1 (confidence: 1, offset: 18366, extent: 23829) LICENSE: MIT (confidence: 1, offset: 17255, extent: 1059)
The license_serializer
tool regenerates the licenses.db
archive. The archive contains preprocessed license texts for quicker comparisons against unknown texts.
$ license_serializer -output licenseclassifier/licenses
This is not an official Google product (experimental or otherwise), it is just code that happens to be owned by Google.