import cran: Do not use "or later" licenses by default.
* guix/import/cran.scm (string->license): Use exact license versions.
This commit is contained in:
parent
aaee461b9d
commit
13f54d081b
|
@ -55,11 +55,11 @@
|
||||||
("GPL" (list 'gpl2+ 'gpl3+))
|
("GPL" (list 'gpl2+ 'gpl3+))
|
||||||
("GPL (>= 2)" 'gpl2+)
|
("GPL (>= 2)" 'gpl2+)
|
||||||
("GPL (>= 3)" 'gpl3+)
|
("GPL (>= 3)" 'gpl3+)
|
||||||
("GPL-2" 'gpl2+)
|
("GPL-2" 'gpl2)
|
||||||
("GPL-3" 'gpl3+)
|
("GPL-3" 'gpl3)
|
||||||
("LGPL-2" 'lgpl2.0+)
|
("LGPL-2" 'lgpl2.0)
|
||||||
("LGPL-2.1" 'lgpl2.1+)
|
("LGPL-2.1" 'lgpl2.1)
|
||||||
("LGPL-3" 'lgpl3+)
|
("LGPL-3" 'lgpl3)
|
||||||
("LGPL (>= 2)" 'lgpl2.0+)
|
("LGPL (>= 2)" 'lgpl2.0+)
|
||||||
("LGPL (>= 3)" 'lgpl3+)
|
("LGPL (>= 3)" 'lgpl3+)
|
||||||
("MIT" 'x11)
|
("MIT" 'x11)
|
||||||
|
|
Loading…
Reference in New Issue