No need to check for library license

This commit is contained in:
Marco Pesenti Gritti 2007-06-24 12:42:53 +02:00
parent 3dd5ecddee
commit d2c73d9eaa

View File

@ -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.