From ab387d1ddc530d405f662904f2df292f700e4b0f Mon Sep 17 00:00:00 2001 From: Ramin Halavati Date: Wed, 19 Feb 2025 19:00:24 -0800 Subject: [PATCH] Add items to license allowlist. Add the following items to the allowlsted licenses based on the requirement of crrev.com/c/6239492 : - PngSuite - Spencer-86 - unicode_org Bug: 378472917 Change-Id: I6dfa79d612131eae154e5030ec22b787ebc57060 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/6243133 Commit-Queue: Jordan Brown Auto-Submit: Ramin Halavati Reviewed-by: Jordan Brown --- metadata/fields/custom/license_allowlist.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/metadata/fields/custom/license_allowlist.py b/metadata/fields/custom/license_allowlist.py index ce1baf8d1..9521183e2 100644 --- a/metadata/fields/custom/license_allowlist.py +++ b/metadata/fields/custom/license_allowlist.py @@ -95,6 +95,7 @@ ALLOWED_SPDX_LICENSES = frozenset([ "OpenSSL", "Python-2.0", "SGI-B-2.0", + "Spencer-86", "SunPro", "Unicode-3.0", "Unicode-DFS-2015", @@ -147,8 +148,10 @@ EXTENDED_LICENSE_CLASSIFIERS = frozenset([ "LicenseRef-OpenGLUT", "LicenseRef-takuya-ooura", "pffft", + "PngSuite", "Punycode", "SSLeay", + "unicode_org", "WebM-Project-Patent", "X11-Lucent", "zxing", @@ -201,4 +204,4 @@ WITH_PERMISSION_ONLY = frozenset([ ALLOWED_LICENSES = ALLOWED_SPDX_LICENSES | EXTENDED_LICENSE_CLASSIFIERS ALLOWED_OPEN_SOURCE_LICENSES = ALLOWED_LICENSES | OPEN_SOURCE_SPDX_LICENSES -ALL_LICENSES = ALLOWED_OPEN_SOURCE_LICENSES | WITH_PERMISSION_ONLY \ No newline at end of file +ALL_LICENSES = ALLOWED_OPEN_SOURCE_LICENSES | WITH_PERMISSION_ONLY