diff --git a/fdroidserver/import.py b/fdroidserver/import.py index 783e9c6e..6f435aec 100644 --- a/fdroidserver/import.py +++ b/fdroidserver/import.py @@ -191,6 +191,12 @@ def main(): license = 'Apache2' elif ltext == 'MIT License': license = 'MIT' + elif ltext == 'GNU Lesser GPL': + license = 'LGPL' + elif ltext == 'Mozilla Public License 1.1': + license = 'MPL' + elif ltext == 'New BSD License': + license = 'NewBSD' else: print "License " + ltext + " is not recognised" sys.exit(1)