From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: [PATCH] licenses: Add Apache Software License 1.1. Date: Wed, 16 Mar 2016 08:55:02 +0100 Message-ID: <87lh5ix3gc.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39877) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ag6IH-00052J-Bm for guix-devel@gnu.org; Wed, 16 Mar 2016 03:55:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ag6IE-00040Y-5t for guix-devel@gnu.org; Wed, 16 Mar 2016 03:55:01 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:54617) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ag6IE-00040S-23 for guix-devel@gnu.org; Wed, 16 Mar 2016 03:54:58 -0400 Received: from [143.121.239.252] (port=9763 helo=roel-tp) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1ag6ID-00077j-BK for guix-devel@gnu.org; Wed, 16 Mar 2016 03:54:57 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-licenses-Add-Apache-Software-License-1.1.patch >From 02888e1aa137142a2a5ad9edc400df04514e7e3d Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Wed, 16 Mar 2016 08:50:23 +0100 Subject: [PATCH] licenses: Add Apache Software License 1.1. * guix/licenses.scm (asl1.1): New variables. --- guix/licenses.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/guix/licenses.scm b/guix/licenses.scm index 61e6793..71c0736 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -28,7 +28,7 @@ #:use-module (srfi srfi-9) #:export (license? license-name license-uri license-comment agpl3 agpl3+ - asl2.0 + asl1.1 asl2.0 boost1.0 bsd-2 bsd-3 bsd-4 non-copyleft @@ -100,6 +100,11 @@ "https://gnu.org/licenses/agpl.html" "https://gnu.org/licenses/why-affero-gpl.html")) +(define asl1.1 + (license "ASL 1.1" + "http://directory.fsf.org/wiki/License:Apache1.1" + "https://www.gnu.org/licenses/license-list#apache1")) + (define asl2.0 (license "ASL 2.0" "http://directory.fsf.org/wiki/License:Apache2.0" -- 2.7.3 --=-=-= Content-Type: text/plain Dear Guix, I've added the Apache Software License 1.1 because I intend to submit a package that uses this license later. The GNU licenses page says the following about it: > This is a permissive non-copyleft free software license. It has a few > requirements that render it incompatible with the GNU GPL, such as > strong prohibitions on the use of Apache-related names. Kind regards, Roel --=-=-=--