Index: tools/checklicenses/checklicenses.py |
diff --git a/tools/checklicenses/checklicenses.py b/tools/checklicenses/checklicenses.py |
index bd46c94657f73471861fc5539387e7a67919cb67..4db9be4b0503be5d9f8a7096def4b1c7b4db6df5 100755 |
--- a/tools/checklicenses/checklicenses.py |
+++ b/tools/checklicenses/checklicenses.py |
@@ -61,6 +61,7 @@ WHITELISTED_LICENSES = [ |
'BSL (v1) LGPL (v2.1 or later)', |
'FreeType (BSD like) with patent clause', |
'FreeType (BSD like)', |
+ 'GPL (v2 or later)', |
Paweł Hajdan Jr.
2016/05/05 14:03:29
No, not globally. Just for the test-only code.
Gl
nednguyen
2016/05/05 14:22:11
Done.
|
'GPL (v2 or later) with Bison parser exception', |
'GPL (v2 or later) with libtool exception', |
'GPL (v2) LGPL (v2.1 or later)', |
@@ -648,6 +649,22 @@ PATH_SPECIFIC_WHITELISTED_LICENSES = { |
# https://sourceforge.net/p/pyserial/feature-requests/35/ |
'UNKNOWN', |
], |
+ # Not shipped, GPL license but the header files contain no licensing info. |
+ 'third_party/pylint': [ |
+ # https://github.com/PyCQA/pylint/issues/894 |
+ 'UNKNOWN', |
+ ], |
+ # Not shipped, GPL license but the header files contain no licensing info. |
+ 'third_party/logilab/logilab/astroid': [ |
+ # https://github.com/PyCQA/astroid/issues/336 |
+ 'UNKNOWN', |
+ ], |
+ # Not shipped, GPL license but the header files contain no licensing info. |
+ 'third_party/logilab/logilab/common': [ |
+ # Look for email by nednguyen@google.com in May 5th in |
+ # https://lists.logilab.org/pipermail/python-projects/ |
+ 'UNKNOWN', |
+ ], |
} |
EXCLUDED_PATHS = [ |