From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59673) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9vCk-0003oj-Lm for guix-patches@gnu.org; Sun, 14 May 2017 11:13:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d9vCf-0006eT-TM for guix-patches@gnu.org; Sun, 14 May 2017 11:13:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42260) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d9vCf-0006eJ-Ph for guix-patches@gnu.org; Sun, 14 May 2017 11:13:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d9vCf-0001Ou-K3 for guix-patches@gnu.org; Sun, 14 May 2017 11:13:01 -0400 Subject: bug#26924: [PATCH 11/12] gnu: calibre: Add exhaustive license list References: In-Reply-To: Resent-Message-ID: From: Brendan Tildesley Message-ID: Date: Mon, 15 May 2017 01:11:49 +1000 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------12892041CA3FFC101A414658" 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: 26924@debbugs.gnu.org This is a multi-part message in MIME format. --------------12892041CA3FFC101A414658 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit --------------12892041CA3FFC101A414658 Content-Type: text/x-patch; name="0011-gnu-calibre-Add-exhaustive-license-list.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0011-gnu-calibre-Add-exhaustive-license-list.patch" >From 7c026ea16987056a6c801b5a10a79743aad74c82 Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Sun, 14 May 2017 16:57:06 +1000 Subject: [PATCH 11/12] gnu: calibre: Add exhaustive license list * gnu/packages/ebook.scm (calibre): Add exhaustive license list. --- gnu/packages/ebook.scm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 135469279..2e5863e6c 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -162,4 +162,13 @@ and catalog ebooks in most of the major ebook formats. It can also talk to many ebook reader devices. It can go out to the Internet and fetch metadata for books. It can download newspapers and convert them into ebooks for convenient reading.") - (license gpl3))) ; some files are under various other licenses, see COPYRIGHT + (license (list license:gpl3 ; Too many files to detail here. See source. + license:gpl2+ + license:gpl2 + license:bsd-3 + license:lgpl2.1+ + license:lgpl2.1 + license:expat + license:asl2.0 + license:non-copyleft ; hyphenate license, and Info-Zip license. + license:cc-by-sa3.0)))) -- 2.12.2 --------------12892041CA3FFC101A414658--