import cran: Generate a valid 'license' field for "GPL".
Fixes <http://bugs.gnu.org/27294>. Reported by Joshua Sierles <joshua@joshua.si>. * guix/import/cran.scm (string->license) <"GPL">: Return a quoted list.master
parent
b74e2f610a
commit
94a400beba
|
@ -69,7 +69,7 @@
|
|||
("BSD_2_clause + file LICENSE" 'bsd-2)
|
||||
("BSD_3_clause" 'bsd-3)
|
||||
("BSD_3_clause + file LICENSE" 'bsd-3)
|
||||
("GPL" (list 'gpl2+ 'gpl3+))
|
||||
("GPL" '(list gpl2+ gpl3+))
|
||||
("GPL (>= 2)" 'gpl2+)
|
||||
("GPL (>= 3)" 'gpl3+)
|
||||
("GPL-2" 'gpl2)
|
||||
|
|
Reference in New Issue