[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: licenses: Add CeCILL and CeCILL-B.
From: |
Ludovic Courtès |
Subject: |
01/04: licenses: Add CeCILL and CeCILL-B. |
Date: |
Tue, 2 May 2017 17:41:20 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 756be979cb4adef6caf61b2e8eb2391f2b8c6ea7
Author: Ludovic Courtès <address@hidden>
Date: Tue May 2 21:39:55 2017 +0200
licenses: Add CeCILL and CeCILL-B.
* guix/licenses.scm (cecill, cecill-b): New variables.
---
guix/licenses.scm | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/guix/licenses.scm b/guix/licenses.scm
index 7a1e241..c694528 100644
--- a/guix/licenses.scm
+++ b/guix/licenses.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2014, 2015 Ludovic Courtès <address@hidden>
+;;; Copyright © 2012, 2014, 2015, 2017 Ludovic Courtès <address@hidden>
;;; Copyright © 2013, 2015 Andreas Enge <address@hidden>
;;; Copyright © 2012, 2013 Nikita Karetnikov <address@hidden>
;;; Copyright © 2015 Mark H Weaver <address@hidden>
@@ -38,7 +38,7 @@
cc0
cc-by2.0 cc-by3.0 cc-by-sa2.0 cc-by-sa3.0 cc-by-sa4.0
cddl1.0
- cecill-c
+ cecill cecill-b cecill-c
artistic2.0 clarified-artistic
copyleft-next
cpl1.0
@@ -193,7 +193,17 @@ at URI, which may be a file:// URI pointing the package's
tree."
"http://directory.fsf.org/wiki/License:CDDLv1.0"
"https://www.gnu.org/licenses/license-list#CDDL"))
-(define cecill-c
+(define cecill ;copyleft
+ (license "CeCILL"
+ "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"
+ "https://www.gnu.org/licenses/license-list.html#CeCILL"))
+
+(define cecill-b ;non-copyleft
+ (license "CeCILL-B"
+ "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"
+ "https://www.gnu.org/licenses/license-list.html#CeCILL"))
+
+(define cecill-c ;weak copyleft
(license "CeCILL-C"
"http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"
"https://www.gnu.org/licenses/license-list.html#CeCILL"))