From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 1/3] guix import pypi: add the Apache License 2.0 Date: Thu, 16 Oct 2014 00:49:12 +0200 Message-ID: <1413413354-31144-2-git-send-email-tipecaml@gmail.com> References: <1413413354-31144-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53454) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeXNw-0001Lp-Hv for guix-devel@gnu.org; Wed, 15 Oct 2014 18:49:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XeXNl-0000XZ-Si for guix-devel@gnu.org; Wed, 15 Oct 2014 18:49:36 -0400 Received: from mail-wg0-x230.google.com ([2a00:1450:400c:c00::230]:61922) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeXNl-0000XI-IB for guix-devel@gnu.org; Wed, 15 Oct 2014 18:49:25 -0400 Received: by mail-wg0-f48.google.com with SMTP id k14so2473171wgh.7 for ; Wed, 15 Oct 2014 15:49:24 -0700 (PDT) In-Reply-To: <1413413354-31144-1-git-send-email-tipecaml@gmail.com> 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 * guix/import/pypi.scm (string->license): add ASL2.0. --- guix/import/pypi.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm index d0e776e..8f5e031 100644 --- a/guix/import/pypi.scm +++ b/guix/import/pypi.scm @@ -85,6 +85,7 @@ recursively apply the procedure to the sub-list." ((or "BSD" "BSD License") bsd-3) ((or "MIT" "MIT license" "Expat license") expat) ("Public domain" public-domain) + ("Apache License, Version 2.0" asl2.0) (_ #f))) (define (url-fetch url file-name) @@ -151,7 +152,8 @@ VERSION, SOURCE-URL, HOME-PAGE, SYNOPSIS, DESCRIPTION, and LICENSE." (,gpl3 . gpl3) (,bsd-3 . bsd-3) (,expat . expat) - (,public-domain . public-domain)) + (,public-domain . public-domain) + (,asl2.0 . asl2.0)) license)))) (define (pypi->guix-package package-name) -- 1.8.4.rc3