import: pypi: Add more licenses

* guix/import/pypi.scm (string->license): Add the BSD 2-clause and MPL 2.0
licenses, and add more strings for BSD 3-clause and Expat license.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Lars-Dominik Braun 2020-03-04 09:42:17 +01:00 committed by Leo Famulari
parent 39d93ce2be
commit c8abbe1468
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -6,6 +6,7 @@
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net> ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
;;; Copyright © 2020 Lars-Dominik Braun <ldb@leibniz-psychology.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -439,10 +440,12 @@ (define (string->license str)
(match str (match str
("GNU LGPL" license:lgpl2.0) ("GNU LGPL" license:lgpl2.0)
("GPL" license:gpl3) ("GPL" license:gpl3)
((or "BSD" "BSD License") license:bsd-3) ((or "BSD" "BSD-3" "BSD License") license:bsd-3)
((or "MIT" "MIT license" "Expat license") license:expat) ("BSD-2-Clause" license:bsd-2)
((or "MIT" "MIT license" "MIT License" "Expat license") license:expat)
("Public domain" license:public-domain) ("Public domain" license:public-domain)
((or "Apache License, Version 2.0" "Apache 2.0") license:asl2.0) ((or "Apache License, Version 2.0" "Apache 2.0") license:asl2.0)
("MPL 2.0" license:mpl2.0)
(_ #f))) (_ #f)))
(define (pypi-package? package) (define (pypi-package? package)