Home | History | Annotate | Download | only in checklicenses

Lines Matching refs:license

3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
21 --ignore-suppressions Ignores path-specific license whitelist. Useful when
92 'SGI Free Software License B',
93 'University of Illinois/NCSA Open Source License (BSD like)',
207 # License missing upstream on 3 minor files.
232 # The following files lack license headers, but are trivial.
430 filename, license = line.split(':', 1)
438 # For now we're just interested in the license.
439 license = license.replace('*No copyright*', '').strip()
442 if 'GENERATED FILE' in license:
445 if license in WHITELISTED_LICENSES:
452 license in PATH_SPECIFIC_WHITELISTED_LICENSES[prefix]]
457 print "'%s' has non-whitelisted license '%s'" % (filename, license)
500 help='Ignore path-specific license whitelist.')