From b867ffd24fe9b45d0265e2eaae24be11aa03a732 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Tue, 21 Aug 2012 21:59:49 +0100 Subject: [PATCH] Recognise more licenses in Google Code project pages --- fdroidserver/import.py | 6 ++++++ 1 file changed, 6 insertions(+) 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)