unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 962492ebb238b810b981a933de44459fad83a337 9481 bytes (raw)
name: gnu/packages/ocr.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019 Alex Vong <alexvong1995@gmail.com>
;;; Copyright © 2021 Andy Tai <atai@atai.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 ocr)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system python)
  #:use-module (gnu packages)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages backup)
  #:use-module (gnu packages check)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages curl)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages icu4c)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages python)
  #:use-module (gnu packages wget)
  #:use-module (gnu packages xml)
  #:use-module (gnu packages image))

(define-public ocrad
  (package
    (name "ocrad")
    (version "0.27")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/ocrad/ocrad-"
                                 version ".tar.lz"))
             (sha256
              (base32
               "0divffvcaim89g4pvqs8kslbcxi475bcl3b4ynphf284k9zfdgx9"))))
    (build-system gnu-build-system)
    (native-inputs `(("lzip" ,lzip)))
    (home-page "https://www.gnu.org/software/ocrad/")
    (synopsis "Optical character recognition based on feature extraction")
    (description
     "GNU Ocrad is an optical character recognition program based on a
feature extraction method.  It can read images in PBM, PGM or PPM formats and
it produces text in 8-bit or UTF-8 formats.")
    (license license:gpl3+)))

(define-public tesseract-ocr
  ;; some useful commits beyond last official stable release in release branch
  (let ((commit "97079fa353557af6df86fd20b5d2e0dff5d8d5df")
        (revision "1"))
  (package
    (name "tesseract-ocr")
    (version (git-version "4.1.1" revision commit))
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/tesseract-ocr/tesseract")
              (commit commit)
              ;; source git repo with submodules; ensure they are fetched
              (recursive? #t)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0axwla82fpzp86lc553wp3hk0fz5dylw4as0jbf4hkqcyajlbzp4"))))
    (build-system gnu-build-system)
    (inputs
     `(  ("cairo" ,cairo)
         ("icu" ,icu4c)
         ("leptonica" ,leptonica)
         ("pango" ,pango)
         ("wget" ,wget)  ;; for downloading training data to run unit tests
         ))
    (native-inputs
     `(("autoconf" ,autoconf)
       ("autoconf-archive" ,autoconf-archive)
       ("automake" ,automake)
       ("googletest" ,googletest)
       ("libarchive" ,libarchive)
       ("libcurl" ,curl)
       ("libtool" ,libtool)
       ("libtiff" ,libtiff)
       ("pkg-config" ,pkg-config)
       ("python" ,python-wrapper)
       ("xsltproc" ,libxslt)))
    (arguments
     '(#:configure-flags
       (let ((leptonica (assoc-ref %build-inputs "leptonica")))
         (list (string-append "LIBLEPT_HEADERSDIR=" leptonica "/include")))
       #:phases
       (modify-phases %standard-phases
         (add-before 'configure 'disable-failing-tests-and-setup
           (lambda _
             ;; pagesegmode_test.cc fails to build, patch it
             (substitute* "unittest/pagesegmode_test.cc"
               (("<tesseract/baseapi.h>") "\"baseapi.h\""))
             (substitute* "unittest/pagesegmode_test.cc"
               (("<tesseract/helpers.h>") "\"helpers.h\""))
             #t))
         (add-before 'build 'build-training
           (lambda _
             (invoke "make" "-j" (number->string (parallel-job-count)) "training")))
         (add-after 'install 'install-training
           (lambda _
             (invoke "make" "training-install")
             #t))
         (replace 'check
           (lambda _
             (status:exit-val (system* "make" "check")) ;;exit code ignored
             #t))  ;; failed tests will not stop the whole instal process
         (add-before 'check 'pre-check-setup
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (let ((tessdata_prefix   "/tmp") ;; (tmpnam))
                   (wget   (which "wget")))
               ;;TESSDATA_PREFIX environment var shall be parent directory of tessdata directory
               ;; note for now, to run tests successfully you need to manually download eng.traineddata
               ;; to /tmp/tessdata first
                 (if tessdata_prefix
                   (let ((data_dir (string-append tessdata_prefix "/tessdata")))
                     (setenv "TESSDATA_PREFIX" tessdata_prefix)
                     (format #t  "TESSDATA_PREFIX data dir: ~a  " data_dir)
                     (mkdir-p data_dir)  ; code below shows attempt to download; not working now
                     ;;(with-directory-excursion data_dir
                     ;;  (begin
                     ;;    (invoke wget "-t" "5" "https://github.com/tesseract-ocr/tessdata/blob/master/eng.traineddata")
                     ;;))
                   )
                   (format #t "No TESSDATA_PREFIX found "))
             #t))))))
    (home-page "https://github.com/tesseract-ocr/tesseract")
    (synopsis "Optical character recognition engine")
    (description
     "Tesseract is an optical character recognition (OCR) engine with very
high accuracy.  It supports many languages, output text formatting, hOCR
positional information and page layout analysis.  Several image formats are
supported through the Leptonica library.  It can also detect whether text is
monospaced or proportional.")
    (license license:asl2.0))))

(define-public zinnia
  (let* ((commit "581faa8f6f15e4a7b21964be3a5ec36265c80e5b")
         (revision "1")
         ;; version copied from 'configure.in'
         (version (git-version "0.07" revision commit)))
    (package
      (name "zinnia")
      (version version)
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/taku910/zinnia")
               (commit commit)))
         (sha256
          (base32
           "1izjy5qw6swg0rs2ym2i72zndb90mwrfbd1iv8xbpwckbm4899lg"))
         (file-name (git-file-name name version))
         (modules '((guix build utils)
                    (ice-9 ftw)
                    (srfi srfi-26)))
         (snippet ; remove unnecessary files with potentially different license
          '(begin
             (for-each delete-file-recursively
                       (scandir "."
                                (negate (cut member <> '("zinnia"
                                                         "." "..")))))
             #t))))
      (build-system gnu-build-system)
      (arguments
       `(#:phases
         (modify-phases %standard-phases
           (replace 'bootstrap
             (lambda _
               (chdir "zinnia")
               (for-each make-file-writable
                         '("config.log" "config.status"))
               #t)))))
      (home-page "https://taku910.github.io/zinnia/")
      (synopsis "Online hand recognition system with machine learning")
      (description
       "Zinnia is a simple, customizable and portable online hand recognition
system based on Support Vector Machines.  Zinnia simply receives user pen
strokes as a sequence of coordinate data and outputs n-best characters sorted
by SVM confidence.  To keep portability, Zinnia doesn't have any rendering
functionality.  In addition to recognition, Zinnia provides training module
that allows us to create any hand-written recognition systems with low-cost.")
      (license (list license:bsd-3 ; all files except...
                     (license:non-copyleft ; some autotools related files
                      "file://zinnia/aclocal.m4")
                     license:x11 ; 'install-sh'
                     license:public-domain))))) ; 'install-sh'

;;; python 2 bindings, license under the same terms as zinnia
(define-public python2-zinnia
  (package
    (inherit zinnia)
    (name "python2-zinnia")
    (build-system python-build-system)
    (arguments
     `(#:python ,python-2 ; CObject API is used, it was removed in Python 3.2
       #:tests? #f ; avoid circular dependency on tegaki-zinnia-japanese
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'chdir
           (lambda _
             (chdir "zinnia/python")
             #t)))))
    (inputs
     `(("zinnia" ,zinnia)))))

debug log:

solving 962492ebb2 ...
found 962492ebb2 in https://yhetil.org/guix-patches/CAJsg1E8qM-_eRdQy4OBFQMWDkw68gzPv_2xiDrNt0VTdHyYYGQ@mail.gmail.com/
found dc4930918a in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 dc4930918aad5e38629ef0b3f4748d5f6ec31112	gnu/packages/ocr.scm

applying [1/1] https://yhetil.org/guix-patches/CAJsg1E8qM-_eRdQy4OBFQMWDkw68gzPv_2xiDrNt0VTdHyYYGQ@mail.gmail.com/
diff --git a/gnu/packages/ocr.scm b/gnu/packages/ocr.scm
index dc4930918a..962492ebb2 100644

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

index at:
100644 962492ebb238b810b981a933de44459fad83a337	gnu/packages/ocr.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).