From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ewpsv-00077T-T4 for guix-patches@gnu.org; Fri, 16 Mar 2018 09:59:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ewpss-0001Id-Qu for guix-patches@gnu.org; Fri, 16 Mar 2018 09:59:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57295) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ewpss-0001IV-NL for guix-patches@gnu.org; Fri, 16 Mar 2018 09:59:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ewpss-0004g2-GP for guix-patches@gnu.org; Fri, 16 Mar 2018 09:59:02 -0400 Subject: [bug#30836] [PATCH 2/3] guix import elpa: use #f for license Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55145) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ewpro-0006Qh-Vc for guix-patches@gnu.org; Fri, 16 Mar 2018 09:57:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ewprl-0000lh-Uo for guix-patches@gnu.org; Fri, 16 Mar 2018 09:57:57 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:44353) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ewprl-0000lL-PF for guix-patches@gnu.org; Fri, 16 Mar 2018 09:57:53 -0400 From: Konrad Hinsen Date: Fri, 16 Mar 2018 14:53:51 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain 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: 30836@debbugs.gnu.org Elpa doesn't supply license information. The current importer pretends that everything is GPL3, which is not true. The importer should not invent license information. --- guix/import/elpa.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm index 7f76a13ad..cae10eb1c 100644 --- a/guix/import/elpa.scm +++ b/guix/import/elpa.scm @@ -234,7 +234,7 @@ type ''." (home-page ,(elpa-package-home-page pkg)) (synopsis ,(elpa-package-synopsis pkg)) (description ,(elpa-package-description pkg)) - (license license:gpl3+)))) + (license #f)))) (define* (elpa->guix-package name #:optional (repo 'gnu)) "Fetch the package NAME from REPO and produce a Guix package S-expression." -- 2.16.2