No need to check for library license
This commit is contained in:
parent
3dd5ecddee
commit
d2c73d9eaa
@ -51,9 +51,8 @@ def cmd_build_snapshot():
|
||||
os.rename('%s-%s.tar.bz2' % (name, version), tarball)
|
||||
|
||||
def check_licenses(path, license, missing):
|
||||
matchers = { 'LGPL' : [ 'GNU Lesser General Public',
|
||||
'GNU General Library License' ],
|
||||
'GPL' : [ 'GNU General Public License' ] }
|
||||
matchers = { 'LGPL' : 'GNU Lesser General Public',
|
||||
'GPL' : 'GNU General Public License' }
|
||||
source_exts = [ '.py', '.c', '.h', '.cpp' ]
|
||||
|
||||
license_file = os.path.join(path, '.license')
|
||||
@ -84,9 +83,7 @@ def check_licenses(path, license, missing):
|
||||
f.close()
|
||||
|
||||
miss_license = True
|
||||
|
||||
for matcher in matchers[license]:
|
||||
if source.find(matcher) > 0:
|
||||
if source.find(matchers[license]) > 0:
|
||||
miss_license = False
|
||||
|
||||
# Special cases.
|
||||
|
Loading…
Reference in New Issue
Block a user