diff options
author | Brendan Tildesley <brendan.tildesley@openmailbox.org> | 2017-05-13 22:32:01 +1000 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-05-19 23:49:20 +0200 |
commit | d94a99ec665d9c58a534953d877305ad82b10e71 (patch) | |
tree | 4decde2192ca35ac6ece22a020f057a65b1d7024 /gnu/packages/ebook.scm | |
parent | 7010d231dbef94b09c310a8ad44889bcabb2161a (diff) | |
download | guix-d94a99ec665d9c58a534953d877305ad82b10e71.tar guix-d94a99ec665d9c58a534953d877305ad82b10e71.tar.gz |
gnu: calibre: Import unbundle feedparser patch from debian.
* gnu/packages/ebook.scm (calibre)[source]: Reference new patch file.
[inputs]: Add python2-feedparser as an input.
* gnu/packages/patches/calibre-use-packaged-feedparser.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
Diffstat (limited to 'gnu/packages/ebook.scm')
-rw-r--r-- | gnu/packages/ebook.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index cc43259e26..70ec9ed352 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -39,6 +39,7 @@ #:use-module (gnu packages python) #:use-module (gnu packages qt) #:use-module (gnu packages tls) + #:use-module (gnu packages web) #:use-module (gnu packages xorg)) (define-public chmlib @@ -80,6 +81,7 @@ (delete-file-recursively "src/unrar") (delete-file "src/odf/thumbnail.py"))) (patches (search-patches "calibre-drop-unrar.patch" + "calibre-use-packaged-feedparser.patch" "calibre-dont-load-remote-icons.patch" "calibre-no-updates-dialog.patch")))) (build-system python-build-system) @@ -116,6 +118,7 @@ ("python2-cssutils" ,python2-cssutils) ("python2-dateutil" ,python2-dateutil) ("python2-dbus" ,python2-dbus) + ("python2-feedparser" ,python2-feedparser) ("python2-lxml" ,python2-lxml) ("python2-mechanize" ,python2-mechanize) ("python2-netifaces" ,python2-netifaces) |