summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo Wurmus <ricardo.wurmus@mdc-berlin.de>2016-12-08 14:35:20 +0100
committerRicardo Wurmus <rekado@elephly.net>2016-12-17 15:56:39 +0100
commit13f54d081b6922c65f7cb369ad24071e78ebba54 (patch)
tree44abd88510cb193614951119b26641dad67ac1f4
parentaaee461b9d5fb85fc1a548877dc7eea3dd4fbf50 (diff)
downloadguix-13f54d081b6922c65f7cb369ad24071e78ebba54.tar.gz
import cran: Do not use "or later" licenses by default.
* guix/import/cran.scm (string->license): Use exact license versions.
-rw-r--r--guix/import/cran.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/guix/import/cran.scm b/guix/import/cran.scm
index 3fb2e213b0..13f5f82a45 100644
--- a/guix/import/cran.scm
+++ b/guix/import/cran.scm
@@ -55,11 +55,11 @@
    ("GPL" (list 'gpl2+ 'gpl3+))
    ("GPL (>= 2)" 'gpl2+)
    ("GPL (>= 3)" 'gpl3+)
-   ("GPL-2" 'gpl2+)
-   ("GPL-3" 'gpl3+)
-   ("LGPL-2" 'lgpl2.0+)
-   ("LGPL-2.1" 'lgpl2.1+)
-   ("LGPL-3" 'lgpl3+)
+   ("GPL-2" 'gpl2)
+   ("GPL-3" 'gpl3)
+   ("LGPL-2" 'lgpl2.0)
+   ("LGPL-2.1" 'lgpl2.1)
+   ("LGPL-3" 'lgpl3)
    ("LGPL (>= 2)" 'lgpl2.0+)
    ("LGPL (>= 3)" 'lgpl3+)
    ("MIT" 'x11)