From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59449) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9vAp-0003Nx-QI for guix-patches@gnu.org; Sun, 14 May 2017 11:11:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d9vAl-0005PR-T4 for guix-patches@gnu.org; Sun, 14 May 2017 11:11:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42256) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d9vAl-0005Ow-CX for guix-patches@gnu.org; Sun, 14 May 2017 11:11:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d9vAl-0001M4-0y for guix-patches@gnu.org; Sun, 14 May 2017 11:11:03 -0400 Subject: bug#26924: [PATCH 10/12] gnu: chmlib: Use #:prefix license: References: In-Reply-To: Resent-Message-ID: From: Brendan Tildesley Message-ID: Date: Mon, 15 May 2017 01:10:47 +1000 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------5B14CDC58DD0948B8D55FEBC" 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. --------------5B14CDC58DD0948B8D55FEBC Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit --------------5B14CDC58DD0948B8D55FEBC Content-Type: text/x-patch; name="0010-gnu-chmlib-Use-prefix-license.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0010-gnu-chmlib-Use-prefix-license.patch" >From 2b7482861c932ec85d5c8fb3645397cc4fea5a9c Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Sun, 14 May 2017 17:01:06 +1000 Subject: [PATCH 10/12] gnu: chmlib: Use #:prefix license: * gnu/packages/ebook.scm (chmlib): Use #:prefix license: instead of #:select (...) so any license can be used in ebook.scm --- gnu/packages/ebook.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 8a2a794e6..135469279 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -20,7 +20,7 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages ebook) - #:use-module ((guix licenses) #:select (gpl3 lgpl2.1+)) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -60,7 +60,7 @@ (home-page "http://www.jedrea.com/chmlib/") (synopsis "Library for CHM files") (description "CHMLIB is a library for dealing with ITSS/CHM format files.") - (license lgpl2.1+))) + (license license:lgpl2.1+))) (define-public calibre (package -- 2.12.2 --------------5B14CDC58DD0948B8D55FEBC--