unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 2e5863e6c1d4ab08130b938116d6d379e4a3e67f 7465 bytes (raw)
name: gnu/packages/ebook.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015, 2016 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
;;; Copyright © 2017 Brendan Tildesley <brendan.tildesley@openmailbox.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages ebook)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (guix build-system python)
  #:use-module (gnu packages)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages fonts)
  #:use-module (gnu packages fontutils)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages icu4c)
  #:use-module (gnu packages image)
  #:use-module (gnu packages libusb)
  #:use-module (gnu packages pdf)
  #:use-module (gnu packages pkg-config)
  #: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
  (package
    (name "chmlib")
    (version "0.40")
    (source (origin
             (method url-fetch)
             (uri (string-append "http://www.jedrea.com/chmlib/chmlib-"
                                 version ".tar.bz2"))
             (sha256
               (base32
                "18zzb4x3z0d7fjh1x5439bs62dmgsi4c1pg3qyr7h5gp1i5xcj9l"))
             (patches (search-patches "chmlib-inttypes.patch"))))
    (build-system gnu-build-system)
    (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 license:lgpl2.1+)))

(define-public calibre
  (package
    (name "calibre")
    (version "2.85.1")
    (source
      (origin
        (method url-fetch)
        (uri (string-append "http://download.calibre-ebook.com/"
                            version "/calibre-"
                            version ".tar.xz"))
        (sha256
         (base32
          "1g8s0kp1gj05yysfgqpp2lgrxvzc0fsny1hwzx5jh9hvqn0b53cc"))
        ;; Remove nonfree unrar and bundled dependencies.
        (modules '((guix build utils)))
        (snippet
          '(begin
            (delete-file-recursively "src/calibre/ebooks/markdown")
            (delete-file-recursively "src/unrar")
            (delete-file-recursively "resources/fonts/liberation")
            (delete-file-recursively "src/chardet")
            (substitute* (find-files "." "\\.py")
              (("calibre\\.ebooks\\.markdown") "markdown"))))
        (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)
    (native-inputs
     `(("pkg-config" ,pkg-config)
       ("qtbase" ,qtbase) ; for qmake
       ;; 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)))
    (inputs
     `(("chmlib" ,chmlib)
       ("fontconfig" ,fontconfig)
       ("font-liberation" ,font-liberation)
       ("glib" ,glib)
       ("icu4c" ,icu4c)
       ("libmtp" ,libmtp)
       ("libpng" ,libpng)
       ("libusb" ,libusb)
       ("libxrender" ,libxrender)
       ("openssl" ,openssl)
       ("podofo" ,podofo)
       ("poppler" ,poppler)
       ("python" ,python-2)
       ("python2-apsw" ,python2-apsw)
       ("python2-chardet" ,python2-chardet)
       ("python2-cssselect" ,python2-cssselect)
       ("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)))
    (arguments
     `(#:python ,python-2
       #:test-target "check"
       #:tests? #f ; FIXME: enable once flake8 is packaged
       ;; Calibre is using setuptools by itself, but the setup.py is not
       ;; compatible with the shim wrapper (taken from pip) we are using.
       #:use-setuptools? #f
       #:phases
       (modify-phases %standard-phases
         (add-before 'build 'configure
          (lambda* (#:key inputs #:allow-other-keys)
            (let ((podofo (assoc-ref inputs "podofo"))
                  (pyqt (assoc-ref inputs "python2-pyqt")))
              (substitute* "setup/build_environment.py"
                (("sys.prefix") (string-append "'" pyqt "'")))
              (setenv "PODOFO_INC_DIR" (string-append podofo "/include/podofo"))
              (setenv "PODOFO_LIB_DIR" (string-append podofo "/lib")))))
         (add-after 'install 'install-font-liberation
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (for-each (lambda (file)
                         (install-file file (string-append
                                             (assoc-ref outputs "out")
                                             "/share/calibre/fonts/liberation")))
                       (find-files (string-append
                                    (assoc-ref inputs "font-liberation")
                                    "/share/fonts/truetype"))))))))
    (home-page "http://calibre-ebook.com/")
    (synopsis "E-book library management software")
    (description "Calibre is an ebook library manager.  It can view, convert
and catalog ebooks in most of the major ebook formats.  It can also talk
to many ebook reader devices.  It can go out to the Internet and fetch
metadata for books.  It can download newspapers and convert them into
ebooks for convenient reading.")
    (license (list license:gpl3 ; Too many files to detail here. See source.
                   license:gpl2+
                   license:gpl2
                   license:bsd-3
                   license:lgpl2.1+
                   license:lgpl2.1
                   license:expat
                   license:asl2.0
                   license:non-copyleft ; hyphenate license, and Info-Zip license.
                   license:cc-by-sa3.0))))

debug log:

solving 2e5863e6c ...
found 2e5863e6c in https://yhetil.org/guix-patches/a7a9af83-eab7-8f06-638e-ce6f962d0759@openmailbox.org/
found 135469279 in https://yhetil.org/guix-patches/bee35c10-d1fa-8807-5dc6-2e107daf29fb@openmailbox.org/
found 8a2a794e6 in https://yhetil.org/guix-patches/73ecd0ec-e160-99fa-9665-08305eff5163@openmailbox.org/
found f38dba662 in https://yhetil.org/guix-patches/ddb6623a-55b5-91be-75e0-cf38c8749ff8@openmailbox.org/
found 97e245291 in https://yhetil.org/guix-patches/1902e4ba-663b-bc0e-2860-b4011d172d99@openmailbox.org/
found 6b9934724 in https://yhetil.org/guix-patches/9ebee0d0-e6ab-0573-2974-5c501537efdd@openmailbox.org/
found d925504a2 in https://yhetil.org/guix-patches/c254e0e1-b1d0-5fb7-eab7-c8bc88bb2b72@openmailbox.org/
found 70ec9ed35 in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 70ec9ed352e36196bedad156d493b3a729aa3629	gnu/packages/ebook.scm

applying [1/7] https://yhetil.org/guix-patches/c254e0e1-b1d0-5fb7-eab7-c8bc88bb2b72@openmailbox.org/
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index 70ec9ed35..d925504a2 100644


applying [2/7] https://yhetil.org/guix-patches/9ebee0d0-e6ab-0573-2974-5c501537efdd@openmailbox.org/
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index d925504a2..6b9934724 100644


applying [3/7] https://yhetil.org/guix-patches/1902e4ba-663b-bc0e-2860-b4011d172d99@openmailbox.org/
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index 6b9934724..97e245291 100644


applying [4/7] https://yhetil.org/guix-patches/ddb6623a-55b5-91be-75e0-cf38c8749ff8@openmailbox.org/
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index 97e245291..f38dba662 100644


applying [5/7] https://yhetil.org/guix-patches/73ecd0ec-e160-99fa-9665-08305eff5163@openmailbox.org/
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index f38dba662..8a2a794e6 100644


applying [6/7] https://yhetil.org/guix-patches/bee35c10-d1fa-8807-5dc6-2e107daf29fb@openmailbox.org/
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index 8a2a794e6..135469279 100644


applying [7/7] https://yhetil.org/guix-patches/a7a9af83-eab7-8f06-638e-ce6f962d0759@openmailbox.org/
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm
index 135469279..2e5863e6c 100644

Checking patch gnu/packages/ebook.scm...
Applied patch gnu/packages/ebook.scm cleanly.
Checking patch gnu/packages/ebook.scm...
Applied patch gnu/packages/ebook.scm cleanly.
Checking patch gnu/packages/ebook.scm...
Applied patch gnu/packages/ebook.scm cleanly.
Checking patch gnu/packages/ebook.scm...
Applied patch gnu/packages/ebook.scm cleanly.
Checking patch gnu/packages/ebook.scm...
Applied patch gnu/packages/ebook.scm cleanly.
Checking patch gnu/packages/ebook.scm...
Applied patch gnu/packages/ebook.scm cleanly.
Checking patch gnu/packages/ebook.scm...
Applied patch gnu/packages/ebook.scm cleanly.

index at:
100644 2e5863e6c1d4ab08130b938116d6d379e4a3e67f	gnu/packages/ebook.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).