[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/07: import cran: Do not use "or later" licenses by default.
From: |
Ricardo Wurmus |
Subject: |
01/07: import cran: Do not use "or later" licenses by default. |
Date: |
Sat, 17 Dec 2016 17:41:25 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit 13f54d081b6922c65f7cb369ad24071e78ebba54
Author: Ricardo Wurmus <address@hidden>
Date: Thu Dec 8 14:35:20 2016 +0100
import cran: Do not use "or later" licenses by default.
* guix/import/cran.scm (string->license): Use exact license versions.
---
guix/import/cran.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/guix/import/cran.scm b/guix/import/cran.scm
index 3fb2e21..13f5f82 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)
- branch master updated (aaee461 -> b26abe4), Ricardo Wurmus, 2016/12/17
- 05/07: import cran: Move guix-name to top-level., Ricardo Wurmus, 2016/12/17
- 03/07: import cran: Handle BSD licenses with LICENSE file., Ricardo Wurmus, 2016/12/17
- 07/07: import cran: Ignore default R packages., Ricardo Wurmus, 2016/12/17
- 06/07: import cran: description->package: Also return package dependencies., Ricardo Wurmus, 2016/12/17
- 01/07: import cran: Do not use "or later" licenses by default.,
Ricardo Wurmus <=
- 04/07: import cran: Remove more invalid characters from package names., Ricardo Wurmus, 2016/12/17
- 02/07: import cran: Translate MIT to the Expat license., Ricardo Wurmus, 2016/12/17