From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35156) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dcYhR-0005UJ-VF for guix-patches@gnu.org; Tue, 01 Aug 2017 11:03:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dcYhL-00086E-2j for guix-patches@gnu.org; Tue, 01 Aug 2017 11:03:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34390) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dcYhK-00085t-VP for guix-patches@gnu.org; Tue, 01 Aug 2017 11:03:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dcYhK-0007pn-JA for guix-patches@gnu.org; Tue, 01 Aug 2017 11:03:02 -0400 Subject: [bug#27908] [PATCH] gnu: calibre: Add python2-msgpack as an native-input. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35022) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dcYgx-0005B0-9u for guix-patches@gnu.org; Tue, 01 Aug 2017 11:02:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dcYgt-0007qV-Iq for guix-patches@gnu.org; Tue, 01 Aug 2017 11:02:39 -0400 Received: from mail-wr0-x22d.google.com ([2a00:1450:400c:c0c::22d]:38448) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dcYgt-0007n9-Ce for guix-patches@gnu.org; Tue, 01 Aug 2017 11:02:35 -0400 Received: by mail-wr0-x22d.google.com with SMTP id f21so7956960wrf.5 for ; Tue, 01 Aug 2017 08:02:32 -0700 (PDT) From: manolis837@gmail.com Date: Tue, 1 Aug 2017 18:02:04 +0300 Message-Id: <20170801150204.26224-1-manolis837@gmail.com> 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: 27908@debbugs.gnu.org From: Manolis Ragkousis * gnu/packages/ebook.scm (calibre)[native-inputs]: Add python2-msgpack. --- gnu/packages/ebook.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index bbb127a7d..4d893ec48 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -41,6 +41,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages qt) + #:use-module (gnu packages serialization) #:use-module (gnu packages tls) #:use-module (gnu packages web) #:use-module (gnu packages xorg)) @@ -100,7 +101,9 @@ ;; also creates lots of messages ;; mkdir: cannot create directory '/homeless-shelter': Permission denied ("python2-flake8" ,python2-flake8) - ("xdg-utils" ,xdg-utils))) + ("xdg-utils" ,xdg-utils) + ;; python2-msgpack is needed for the network content server to work. + ("python2-msgpack" ,python2-msgpack))) ;; Beautifulsoup3 is bundled but obsolete and not packaged, so just leave it bundled. (inputs `(("chmlib" ,chmlib) -- 2.13.3