guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/04: import cran: Generate a valid 'license' field for "GPL".


From: Ludovic Courtès
Subject: 01/04: import cran: Generate a valid 'license' field for "GPL".
Date: Mon, 26 Jun 2017 16:52:14 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 94a400bebae48aebc35fb84aa0b134b25ce46e46
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jun 26 22:02:24 2017 +0200

    import cran: Generate a valid 'license' field for "GPL".
    
    Fixes <http://bugs.gnu.org/27294>.
    Reported by Joshua Sierles <address@hidden>.
    
    * guix/import/cran.scm (string->license) <"GPL">: Return a quoted list.
---
 guix/import/cran.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/import/cran.scm b/guix/import/cran.scm
index 8d963a7..056a7dc 100644
--- a/guix/import/cran.scm
+++ b/guix/import/cran.scm
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]