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.
22 --ignore-suppressions Ignores path-specific license whitelist. Useful when
65 'Independent JPEG Group License',
97 'SGI Free Software License B',
98 'University of Illinois/NCSA Open Source License (BSD like)',
99 ('University of Illinois/NCSA Open Source License (BSD like) '
221 # The following files lack license headers, but are trivial.
301 # MIT license.
424 filename, license = line.split(':', 1)
432 # For now we're just interested in the license.
433 license = license.replace('*No copyright*', '').strip()
436 if 'GENERATED FILE' in license:
439 if license in WHITELISTED_LICENSES:
446 license in PATH_SPECIFIC_WHITELISTED_LICENSES[prefix]]
451 errors.append({'filename': filename, 'license': license})
459 print "'%s' has non-whitelisted license '%s'" % (
460 error['filename'], error['license'])
502 help='Ignore path-specific license whitelist.')