From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59446) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9vAp-0003Nw-L7 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 1d9vAk-0005Oq-RM for guix-patches@gnu.org; Sun, 14 May 2017 11:11:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42255) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d9vAk-0005Oa-MH for guix-patches@gnu.org; Sun, 14 May 2017 11:11:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d9vAk-0001Lx-I1 for guix-patches@gnu.org; Sun, 14 May 2017 11:11:02 -0400 Subject: bug#26924: [PATCH 09/12] gnu: calibre: Add missing dependencies. References: In-Reply-To: Resent-Message-ID: From: Brendan Tildesley Message-ID: <73ecd0ec-e160-99fa-9665-08305eff5163@openmailbox.org> Date: Mon, 15 May 2017 01:09:54 +1000 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------5344C6C3B13751390D694B16" 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. --------------5344C6C3B13751390D694B16 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit --------------5344C6C3B13751390D694B16 Content-Type: text/x-patch; name="0009-gnu-calibre-Add-missing-dependencies.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0009-gnu-calibre-Add-missing-dependencies.patch" >From 2ee92d818744b1401a0495eb497363b1b2f445da Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Sun, 14 May 2017 00:21:52 +1000 Subject: [PATCH 09/12] gnu: calibre: Add missing dependencies. * gnu/packages/ebook.scm (calibre): Add poppler, python2-dnspython, and python2-pygments as inputs. Remove old comments. libwmf and psutil are no longer used. Beautifulsoup3 is bundled but obsolete and not packaged, so just leave it bundled. --- gnu/packages/ebook.scm | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index f38dba662..8a2a794e6 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -96,16 +96,8 @@ ;; xdg-utils is supposed to be used for desktop integration, but it ;; also creates lots of messages ;; mkdir: cannot create directory '/homeless-shelter': Permission denied + ("python2-flake8" ,python2-flake8) ("xdg-utils" ,xdg-utils))) - ;; FIXME: The following are missing inputs according to the documentation, - ;; but the package can apparently be used without them, - ;; They may need to be added if a deficiency is detected. - ;; BeautifulSoup >= 3.0.5 - ;; dnspython >= 1.6.0 - ;; poppler >= 0.20.2 - ;; libwmf >= 0.2.8 - ;; psutil >= 0.6.1 - ;; python-pygments >= 2.0.1 ; used for ebook editing (inputs `(("chmlib" ,chmlib) ("fontconfig" ,fontconfig) @@ -118,6 +110,7 @@ ("libxrender" ,libxrender) ("openssl" ,openssl) ("podofo" ,podofo) + ("poppler" ,poppler) ("python" ,python-2) ("python2-apsw" ,python2-apsw) ("python2-chardet" ,python2-chardet) @@ -125,12 +118,14 @@ ("python2-cssutils" ,python2-cssutils) ("python2-dateutil" ,python2-dateutil) ("python2-dbus" ,python2-dbus) + ("python2-dnspython" ,python2-dnspython) ("python2-feedparser" ,python2-feedparser) ("python2-lxml" ,python2-lxml) ("python2-markdown" ,python2-markdown) ("python2-mechanize" ,python2-mechanize) ("python2-netifaces" ,python2-netifaces) ("python2-pillow" ,python2-pillow) + ("python2-pygments" ,python2-pygments) ("python2-pyqt" ,python2-pyqt) ("python2-sip" ,python2-sip) ("sqlite" ,sqlite))) -- 2.12.2 --------------5344C6C3B13751390D694B16--