guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/09: gnu: calibre: Unbundle python2-markdown.


From: Marius Bakke
Subject: 04/09: gnu: calibre: Unbundle python2-markdown.
Date: Fri, 19 May 2017 17:58:14 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 29ec0851707f99fdd14b8c06c26759b98046a8f3
Author: Brendan Tildesley <address@hidden>
Date:   Sat May 13 23:24:06 2017 +1000

    gnu: calibre: Unbundle python2-markdown.
    
    * gnu/packages/ebook.scm (calibre)[snippet]: Replace python references to
    bundled markdown with packaged. Remove markdown from source.
    [inputs]: Add python2-markdown as a dependency.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/ebook.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index 70ec9ed..e751831 100644
--- a/gnu/packages/ebook.scm
+++ b/gnu/packages/ebook.scm
@@ -78,8 +78,12 @@
         (modules '((guix build utils)))
         (snippet
           '(begin
+            (delete-file-recursively "src/calibre/ebooks/markdown")
             (delete-file-recursively "src/unrar")
-            (delete-file "src/odf/thumbnail.py")))
+            (delete-file "src/odf/thumbnail.py")
+            (substitute* (find-files "." "\\.py")
+              (("calibre\\.ebooks\\.markdown") "markdown"))
+            #t))
         (patches (search-patches "calibre-drop-unrar.patch"
                                  "calibre-use-packaged-feedparser.patch"
                                  "calibre-dont-load-remote-icons.patch"
@@ -120,6 +124,7 @@
        ("python2-dbus" ,python2-dbus)
        ("python2-feedparser" ,python2-feedparser)
        ("python2-lxml" ,python2-lxml)
+       ("python2-markdown" ,python2-markdown)
        ("python2-mechanize" ,python2-mechanize)
        ("python2-netifaces" ,python2-netifaces)
        ("python2-pillow" ,python2-pillow)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]