From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49130) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hC5Y0-0001SF-7Q for guix-patches@gnu.org; Thu, 04 Apr 2019 12:49:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hC5Xz-0004Ao-5d for guix-patches@gnu.org; Thu, 04 Apr 2019 12:49:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:59309) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hC5Xz-0004AX-02 for guix-patches@gnu.org; Thu, 04 Apr 2019 12:49:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hC5Xy-0004ru-Oh for guix-patches@gnu.org; Thu, 04 Apr 2019 12:49:02 -0400 Subject: [bug#35147] [PATCH 1/2] gnu: Add apsl2.0. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:49023) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hC5XI-0001Q6-Ey for guix-patches@gnu.org; Thu, 04 Apr 2019 12:48:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hC5XH-00036I-Du for guix-patches@gnu.org; Thu, 04 Apr 2019 12:48:20 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:59461) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hC5XH-0002uR-4e for guix-patches@gnu.org; Thu, 04 Apr 2019 12:48:19 -0400 Received: from localhost.localdomain (lfbn-1-4117-19.w92-169.abo.wanadoo.fr [92.169.116.19]) (Authenticated sender: mail@ambrevar.xyz) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 950E31C0006 for ; Thu, 4 Apr 2019 16:48:14 +0000 (UTC) From: Pierre Neidhardt Date: Thu, 4 Apr 2019 18:48:14 +0200 Message-Id: <20190404164814.26096-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35147@debbugs.gnu.org * guix/licenses.scm (apsl2.0): New variable. --- guix/licenses.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/guix/licenses.scm b/guix/licenses.scm index 676e71acdb..623ec69898 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm @@ -34,6 +34,7 @@ #:use-module (srfi srfi-9) #:export (license? license-name license-uri license-comment agpl1 agpl3 agpl3+ + apsl2.0 asl1.1 asl2.0 boost1.0 bsd-2 bsd-3 bsd-4 @@ -129,6 +130,11 @@ "https://gnu.org/licenses/agpl.html" "https://gnu.org/licenses/why-affero-gpl.html")) +(define apsl2.0 + (license "APSL 2.0" + "https://opensource.apple.com/apsl/" + "Apple Public Source License 2.0")) + (define asl1.1 (license "ASL 1.1" "http://directory.fsf.org/wiki/License:Apache1.1" -- 2.21.0