aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/gpodder.scm
blob: 474065836ec4bf33d8145322b1415473e4487382 (about) (plain)
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019, 2020, 2021 Pierre Langlois <pierre.langlois@gmx.com>
;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; 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 gpodder)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix build-system cmake)
  #: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 base)
  #:use-module (gnu packages bash)
  #:use-module (gnu packages check)
  #:use-module (gnu packages curl)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages groff)
  #:use-module (gnu packages mp3)
  #:use-module (gnu packages music)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages python-web)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages video)
  #:use-module (gnu packages xml))

(define-public gpodder
  (package
    (name "gpodder")
    (version "3.11.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/gpodder/gpodder")
             (commit version)))
       (sha256
        (base32 "1387n0kgpan869c09smq5jnc3316vz8majl9bw01bw7cxg4vss3p"))
       (file-name (git-file-name name version))
       (patches (search-patches "gpodder-disable-updater.patch"))))
    (build-system python-build-system)
    (native-inputs
     (list intltool
           python-coverage
           python-minimock
           python-pytest
           python-pytest-cov
           python-pytest-httpserver
           which))
    (inputs
     (list bash-minimal
           gtk+
           python-pygobject
           python-pycairo
           python-requests
           python-dbus
           python-html5lib
           python-mutagen
           python-mygpoclient
           python-podcastparser
           youtube-dl
           xdg-utils))
    (arguments
     '(#:phases
       (modify-phases %standard-phases
         ;; Avoid needing xdg-utils as a propagated input.
         (add-after 'unpack 'patch-xdg-open
           (lambda* (#:key inputs #:allow-other-keys)
             (let ((xdg-utils (assoc-ref inputs "xdg-utils")))
               (substitute* "src/gpodder/util.py"
                 (("xdg-open") (string-append xdg-utils "/bin/xdg-open")))
               #t)))
         (replace 'check
           (lambda* (#:key tests? #:allow-other-keys)
             (when tests?
               (invoke "make" "unittest"))))
         ;; 'msgmerge' introduces non-determinism by resetting the
         ;; POT-Creation-Date in .po files.
         (add-before 'install 'do-not-run-msgmerge
           (lambda _
             (substitute* "makefile"
               (("msgmerge") "true"))
             #t))
         (add-before 'install 'make-po-files-writable
           (lambda _
             (for-each
               (lambda (f)
                 (chmod f #o664))
               (find-files "po"))
             #t))
         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (setenv "PREFIX" (assoc-ref outputs "out"))
             (invoke "make" "install")))
         (add-after 'install 'wrap-gpodder
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out"))
                   (gi-typelib-path (getenv "GI_TYPELIB_PATH")))
               (wrap-program (string-append out "/bin/gpodder")
                 `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))
               #t))))))
    (home-page "https://gpodder.github.io")
    (synopsis "Simple podcast client")
    (description "gPodder is a podcatcher, i.e. an application that allows
podcast feeds (RSS, Atom, Youtube, Soundcloud, Vimeo and XSPF) to be
subscribed to, checks for new episodes and allows the podcast to be saved
locally for later listening.")
    (license license:gpl3+)))

(define-public libmygpo-qt
  (package
    (name "libmygpo-qt")
    (version "1.1.0")
    (source (origin
              (method url-fetch)
              (uri (string-append "http://stefan.derkits.at/files/"
                                  "libmygpo-qt/libmygpo-qt." version ".tar.gz"))
              (sha256
               (base32
                "1kg18qrq2rsswgzhl65r3mlyx7kpqg4wwnbp4yiv6svvmadmlxl2"))
              (patches (search-patches "libmygpo-qt-fix-qt-5.11.patch"
                                       "libmygpo-qt-missing-qt5-modules.patch"))))
    (build-system cmake-build-system)
    (native-inputs
     (list pkg-config))
    (inputs
     `(("qt" ,qtbase-5)))
    (arguments
     `(#:configure-flags '("-DMYGPO_BUILD_TESTS=ON")
       ;; TODO: Enable tests when https://github.com/gpodder/gpodder/issues/446
       ;; is fixed.
       #:tests? #f))
    (home-page "https://gpodder.github.io")
    (synopsis "Qt/C++ library wrapping the gpodder web service")
    (description "@code{libmygpo-qt} is a Qt/C++ library wrapping the
@url{https://gpodder.net} APIs.  It allows applications to discover, manage
and track podcasts.")
    (license license:lgpl2.1+)))

(define-public python-mygpoclient
  (package
    (name "python-mygpoclient")
    (version "1.8")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "mygpoclient" version))
       (sha256
        (base32
         "1fi5x6k1mngr0iviw2s4n1f3y2x7pwqy5ivkcrjdprzvwr37f0mh"))))
    (build-system python-build-system)
    (native-inputs
     (list python-coverage python-minimock python-nose))
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (replace 'check
           (lambda _
             (invoke "make" "test"))))))
    (home-page "https://mygpoclient.readthedocs.io")
    (synopsis "Python library for the gPodder web service")
    (description "@code{mygpoclient} provides an easy and structured way to
access the @url{https://gpodder.net} web services.  In addition to
subscription list synchronization and storage, the API supports uploading and
downloading episode status changes.")
    (license license:gpl3+)))

(define-public python-podcastparser
  (package
    (name "python-podcastparser")
    (version "0.6.6")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "podcastparser" version))
       (sha256
        (base32 "0m24r2qhck0win44xfhxajbppkss4ha6am0042s0xyq3408883m3"))))
    (native-inputs
     (list python-pytest))
    (arguments
     '(#:phases
       (modify-phases %standard-phases
         (replace 'check
           (lambda _ (invoke "pytest"))))))
    (build-system python-build-system)
    (home-page "http://gpodder.org/podcastparser")
    (synopsis "Simplified and fast RSS parser Python library")
    (description "@code{podcastparser} is a library for the gPodder project to
provide an easy and reliable way of parsing RSS and Atom-based podcast feeds
in Python.")
    (license license:isc)))

(define-public castget
  ;; Since ronn-ng uses a newer ruby-nokogiri, the test suite would fail on a
  ;; free call with the error: "free(): invalid pointer".  Use the latest
  ;; commit, which is immune to that problem.
  (let ((revision "0")
        (commit "da9727de1b9e4e636be21bf07c73eb41f5d8439b"))
    (package
      (name "castget")
      (version (git-version "2.0.0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/mlj/castget")
               (commit commit)))
         (sha256
          (base32 "0d5ji21af5mfj1xa90v4hp104c1ipy076175kp7nzz1c4sxdadff"))
         (file-name (git-file-name name version))))
      (build-system gnu-build-system)
      (native-inputs
       (list autoconf automake libtool pkg-config ronn-ng))
      (inputs (list curl glib taglib libxml2))
      (synopsis "Command line podcast downloader")
      (description
       "castget is a simple, command-line based RSS enclosure downloader.  It is
primarily intended for automatic, unattended downloading of podcasts.  It uses
libcurl for the download process.")
      (license license:lgpl2.1+)
      (home-page "https://castget.johndal.com"))))
name "perl-lingua-en-findnumber") (version "1.32") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/" "Lingua-EN-FindNumber-" version ".tar.gz")) (sha256 (base32 "015ximzdp42v824llwlg2pd77vd0d172lb4xs55q9f9zhqf6s5qx")))) (build-system perl-build-system) (propagated-inputs (list perl-lingua-en-words2nums)) (home-page "https://metacpan.org/release/Lingua-EN-FindNumber") (synopsis "Locate (written) numbers in English text") (description "This module provides a regular expression for finding numbers in English text. It also provides functions for extracting and manipulating such numbers.") (license license:perl-license))) (define-public perl-lingua-en-inflect (package (name "perl-lingua-en-inflect") (version "1.903") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/D/DC/DCONWAY/" "Lingua-EN-Inflect-" version ".tar.gz")) (sha256 (base32 "0j8d1f1wvmgc11d71pc8xp8fv5a1nb2yfw1dgd19xhscn1klpvzw")))) (build-system perl-build-system) (native-inputs (list perl-module-build)) (home-page "https://metacpan.org/release/Lingua-EN-Inflect") (synopsis "Convert singular to plural") (description "Lingua::EN::Inflect provides plural inflections, \"a\"/\"an\" selection for English words, and manipulation of numbers as words. Plural forms of all nouns, most verbs, and some adjectives are provided. Where appropriate, \"classical\" variants (for example: \"brother\" -> \"brethren\", \"dogma\" -> \"dogmata\", etc.) are also provided.") (license license:perl-license))) (define-public perl-lingua-en-inflect-number (package (name "perl-lingua-en-inflect-number") (version "1.12") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/" "Lingua-EN-Inflect-Number-" version ".tar.gz")) (sha256 (base32 "1gxccynkaqav43ww43jp4rzkyr36x97jd03yb5f6yx0jhn1k7yv6")))) (build-system perl-build-system) (propagated-inputs (list perl-lingua-en-inflect)) (home-page "https://metacpan.org/release/Lingua-EN-Inflect-Number") (synopsis "Force number of words to singular or plural") (description "This module extends the functionality of Lingua::EN::Inflect with three new functions for determining plurality of a word and forcefully converting a word to singular or plural.") (license license:perl-license))) (define-public perl-lingua-en-inflect-phrase (package (name "perl-lingua-en-inflect-phrase") (version "0.20") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/" "Lingua-EN-Inflect-Phrase-" version ".tar.gz")) (sha256 (base32 "1a6y1l2pjim2242wcpgz066di4pbzfgsjjdl7vg5a5wzm48qj1am")))) (build-system perl-build-system) (native-inputs (list perl-test-nowarnings)) (propagated-inputs (list perl-lingua-en-findnumber perl-lingua-en-inflect perl-lingua-en-inflect-number perl-lingua-en-number-isordinal perl-lingua-en-tagger)) (home-page "https://metacpan.org/release/Lingua-EN-Inflect-Phrase") (synopsis "Inflect short English phrases") (description "This module attempts to pluralize or singularize short English phrases.") (license license:perl-license))) (define-public perl-lingua-en-number-isordinal (package (name "perl-lingua-en-number-isordinal") (version "0.05") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/" "Lingua-EN-Number-IsOrdinal-" version ".tar.gz")) (sha256 (base32 "1mhqjvh2ad30gjab5b3a6mbr4aysyrscp4wp42yy5x6001a6km98")))) (build-system perl-build-system) (native-inputs (list perl-try-tiny perl-test-fatal)) (propagated-inputs (list perl-lingua-en-findnumber)) (home-page "https://metacpan.org/release/Lingua-EN-Number-IsOrdinal") (synopsis "Detect if English number is ordinal or cardinal") (description "This module will tell you if a number, either in words or as digits, is a cardinal or ordinal number.") (license license:perl-license))) (define-public perl-lingua-en-tagger (package (name "perl-lingua-en-tagger") (version "0.30") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/A/AC/ACOBURN/" "Lingua-EN-Tagger-" version ".tar.gz")) (sha256 (base32 "0nrnkvsf9f0a7lp82sanmy89ms2nqq1lvjqicvsagsvzp513bl5b")))) (build-system perl-build-system) (propagated-inputs (list perl-memoize-expirelru perl-lingua-stem perl-html-parser perl-html-tagset)) (home-page "https://metacpan.org/release/Lingua-EN-Tagger") (synopsis "Part-of-speech tagger for English natural language processing") (description "This module is a probability based, corpus-trained tagger that assigns part-of-speech tags to English text based on a lookup dictionary and a set of probability values. The tagger assigns appropriate tags based on conditional probabilities - it examines the preceding tag to determine the appropriate tag for the current word. Unknown words are classified according to word morphology or can be set to be treated as nouns or other parts of speech. The tagger also extracts as many nouns and noun phrases as it can, using a set of regular expressions.") (license license:gpl3))) (define-public perl-lingua-en-words2nums (package (name "perl-lingua-en-words2nums") (version "0.18") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/J/JO/JOEY/" "Lingua-EN-Words2Nums-" version ".tar.gz")) (sha256 (base32 "118xx8qr1zbx30psv7ic55w65h15mc1vz6zicshfm96jgiwmcrb8")))) (build-system perl-build-system) (home-page "https://metacpan.org/release/Lingua-EN-Words2Nums") (synopsis "Convert English text to numbers") (description "This module converts English text into numbers. It supports both ordinal and cardinal numbers, negative numbers, and very large numbers.") (license license:perl-license))) (define-public perl-lingua-pt-stemmer (package (name "perl-lingua-pt-stemmer") (version "0.02") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/" "Lingua-PT-Stemmer-" version ".tar.gz")) (sha256 (base32 "17c48sfbgwd2ivlgf59sr6jdhwa3aim8750f8pyzz7xpi8gz0var")))) (build-system perl-build-system) (home-page "https://metacpan.org/release/Lingua-PT-Stemmer") (synopsis "Portuguese language stemming") (description "This module implements a Portuguese stemming algorithm proposed in the paper A Stemming Algorithm for the Portuguese Language by Moreira, V. and Huyck, C.") (license license:perl-license))) (define-public perl-lingua-stem (package (name "perl-lingua-stem") (version "0.84") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/S/SN/SNOWHARE/" "Lingua-Stem-" version ".tar.gz")) (sha256 (base32 "12avh2mnnc7llmmshrr5bgb473fvydxnlqrqbl2815mf2dp4pxcg")))) (build-system perl-build-system) (native-inputs (list perl-module-build)) (propagated-inputs (list perl-lingua-pt-stemmer perl-lingua-stem-fr perl-lingua-stem-it perl-lingua-stem-ru perl-lingua-stem-snowball-da perl-snowball-norwegian perl-snowball-swedish perl-text-german)) (home-page "https://metacpan.org/release/Lingua-Stem") (synopsis "Stemming of words in various languages") (description "This routine applies stemming algorithms to its parameters, returning the stemmed words as appropriate to the selected locale.") (license license:perl-license))) (define-public perl-lingua-stem-fr (package (name "perl-lingua-stem-fr") (version "0.02") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/S/SD/SDP/" "Lingua-Stem-Fr-" version ".tar.gz")) (sha256 (base32 "0vyrspwzaqjxm5mqshf4wvwa3938mkajd1918d9ii2l9m2rn8kwx")))) (build-system perl-build-system) (home-page "https://metacpan.org/release/Lingua-Stem-Fr") (synopsis "Porter's stemming algorithm for French") (description "This module uses a modified version of the Porter Stemming Algorithm to return a stemmed French word.") (license license:perl-license))) (define-public perl-lingua-stem-it (package (name "perl-lingua-stem-it") (version "0.02") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/A/AC/ACALPINI/" "Lingua-Stem-It-" version ".tar.gz")) (sha256 (base32 "1207r183s5hlh4mfwa6p46vzm0dhvrs2dnss5s41a0gyfkxp7riq")))) (build-system perl-build-system) (home-page "https://metacpan.org/release/Lingua-Stem-It") (synopsis "Porter's stemming algorithm for Italian") (description "This module applies the Porter Stemming Algorithm to its parameters, returning the stemmed Italian word.") (license license:perl-license))) (define-public perl-lingua-stem-ru (package (name "perl-lingua-stem-ru") (version "0.04") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/" "Lingua-Stem-Ru-" version ".tar.gz")) (sha256 (base32 "0a2jmdz7jn32qj5hyiw5kbv8fvlpmws8i00a6xcbkzb48yvwww0j")))) (build-system perl-build-system) (home-page "https://metacpan.org/release/Lingua-Stem-Ru") (synopsis "Porter's stemming algorithm for Russian") (description "This module applies the Porter Stemming Algorithm to its parameters, returning the stemmed Russian (KOI8-R only) word.") (license license:perl-license))) (define-public perl-lingua-stem-snowball-da (package (name "perl-lingua-stem-snowball-da") (version "1.01") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/C/CI/CINE/" "Lingua-Stem-Snowball-Da-" version ".tar.gz")) (sha256 (base32 "0mm0m7glm1s6i9f6a78jslw6wh573208arxhq93yriqmw17bwf9f")))) (build-system perl-build-system) (home-page "https://metacpan.org/release/Lingua-Stem-Snowball-Da") (synopsis "Porters stemming algorithm for Danish") (description "Lingua::Stem::Snowball::Da is a perl port of the danish stemmer at http://snowball.sourceforge.net, it was originally altered from the Lingua::Stem::Snowball::Se.") (license license:gpl2))) (define-public perl-snowball-norwegian (package (name "perl-snowball-norwegian") (version "1.2") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/A/AS/ASKSH/" "Snowball-Norwegian-" version ".tar.gz")) (sha256 (base32 "0675v45bbsh7vr7kpf36xs2q79g02iq1kmfw22h20xdk4rzqvkqx")))) (build-system perl-build-system) (native-inputs (list perl-module-build)) (home-page "https://metacpan.org/release/Snowball-Norwegian") (synopsis "Porters stemming algorithm for Norwegian") (description "Lingua::Stem::Snowball::No is a perl port of the norwegian stemmer at http://snowball.tartarus.org.") (license license:perl-license))) (define-public perl-snowball-swedish (package (name "perl-snowball-swedish") (version "1.2") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/A/AS/ASKSH/" "Snowball-Swedish-" version ".tar.gz")) (sha256 (base32 "0agwc12jk5kmabnpsplw3wf4ii5w1zb159cpin44x3srb0sr5apg")))) (build-system perl-build-system) (native-inputs (list perl-module-build)) (home-page "https://metacpan.org/release/Snowball-Swedish") (synopsis "Porters stemming algorithm for Swedish") (description "Lingua::Stem::Snowball::Se is a perl port of the swedish stemmer at http://snowball.sourceforge.net.") (license license:perl-license))) (define-public perl-string-toidentifier-en (package (name "perl-string-toidentifier-en") (version "0.12") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/" "String-ToIdentifier-EN-" version ".tar.gz")) (sha256 (base32 "12nw7h2yiybhdw0vnnpc7bif8ylhsn6kqf6s39dsrf9h54iq9yrs")))) (build-system perl-build-system) (propagated-inputs (list perl-lingua-en-inflect-phrase perl-text-unidecode perl-namespace-clean)) (home-page "https://metacpan.org/release/String-ToIdentifier-EN") (synopsis "Convert strings to English program identifiers") (description "This module provides a utility method, \"to_identifier\" for converting an arbitrary string into a readable representation using the ASCII subset of \"\\w\" for use as an identifier in a computer program. The intent is to make unique identifier names from which the content of the original string can be easily inferred by a human just by reading the identifier.") (license license:perl-license))) (define-public perl-text-german (package (name "perl-text-german") (version "0.06") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/U/UL/ULPFR/" "Text-German-" version ".tar.gz")) (sha256 (base32 "1p87pgap99lw0nv62i3ghvsi7yg90lhn8vsa3yqp75rd04clybcj")))) (build-system perl-build-system) (home-page "https://metacpan.org/release/Text-German") (synopsis "German grundform reduction") (description "This module is a rather incomplete implementation of work done by Gudrun Putze-Meier.") (license license:perl-license))) (define-public link-grammar (package (name "link-grammar") (version "5.7.0") (source (origin (method url-fetch) (uri (string-append "https://www.abisource.com/downloads/" "link-grammar/" version "/link-grammar-" version ".tar.gz")) (sha256 (base32 "0ak1v469k56v3511kxxkxvx1nw6zcxcl0f1kcvc82ffacqbr4y96")))) (build-system gnu-build-system) (home-page "https://www.abisource.com/projects/link-grammar/") (synopsis "Link grammar parser") (description "The Link Grammar Parser is a syntactic parser of English, Russian, Arabic and Persian (and other languages as well), based on Link Grammar, an original theory of syntax and morphology. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a \"constituent\" (HPSG style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.).") (license license:bsd-3))) (define-public praat (package (name "praat") (version "6.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/praat/praat") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1rabv4175r1kbgb6n5xbir4j9ldpfr3wr6xa8jakzgny3dwlmsbg")))) (build-system gnu-build-system) (arguments (list #:make-flags #~(list (string-append "CC=" #$(cc-for-target))) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'delete-failing-tests (lambda _ (delete-file "test/sys/graphicsText.praat"))) (replace 'configure (lambda _ (copy-file "makefiles/makefile.defs.linux.pulse" "makefile.defs"))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "./praat" "--run" "test/runAllTests_batch.praat")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin"))) (mkdir-p bin) (copy-file "praat" (string-append bin "/praat")))))))) (inputs (list alsa-lib gtk+ jack-1 pulseaudio)) (native-inputs (list pkg-config)) (home-page "https://www.fon.hum.uva.nl/praat/") (synopsis "Doing phonetics by computer") (description "Praat is a tool to perform phonetics tasks. It can do speech analysis (pitch, formant, intensity, ...), speech synthesis, labelling, segmenting and manipulation.") (license license:gpl2+))) (define-public libskk (package (name "libskk") (version "1.0.5") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ueno/libskk") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0y279pcgs3jrsi9vzx086xhz9jbz23dqqijp4agygc9ackp9sxy5")))) (build-system gnu-build-system) (native-inputs (list autoconf automake gettext-minimal gobject-introspection libtool pkg-config vala)) (inputs (list libgee json-glib libxkbcommon)) (home-page "https://github.com/ueno/libskk") (synopsis "Dealing with Japanese kana-to-kanji conversion") (description "libskk is a library to deal with Japanese kana-to-kanji conversion method.") (license license:gpl3+))) (define-public skktools (package (name "skktools") (version "1.3.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/skk-dev/skktools") (commit (string-append "skktools-" (string-replace-substring version "." "_"))))) (file-name (git-file-name name version)) (sha256 (base32 "1zway8jsm18279xq8zlpr84iqiw373x3v0ysay74n9bjqxbl234a")) (modules '((guix build utils))) (snippet '(begin ;; Maybe requires jgawk (delete-file "unannotation.awk") (delete-file "convert2skk/edict2skk.awk") (delete-file "convert2skk/wnn2skk.awk") (delete-file "convert2skk/wnn2skk.sed") ;Used with wnn2skk.awk (delete-file "convert2skk/wnn2skk.sh") ;Depends on 2 files above ;; Requires jperl (delete-file "convert2skk/alpha-kana.pl") (delete-file "convert2skk/atok2skk.pl") (delete-file "convert2skk/read.me") ;Readme for jperl scripts (delete-file "convert2skk/wx2skk.pl") (delete-file-recursively "dbm") ;; Needs a lot requirements (delete-file "convert2skk/doc2skk.sh") ;; Obsolete scripts (delete-file-recursively "convert2skk/obsolete") ;; Contains syntax error (delete-file "convert2skk/pubdic2list"))))) (build-system gnu-build-system) (arguments `(#:test-target "test" #:modules ((guix build gnu-build-system) ((guix build emacs-build-system) #:prefix emacs:) (guix build utils) (guix build emacs-utils)) #:imported-modules (,@%default-gnu-imported-modules (guix build emacs-build-system) (guix build emacs-utils)) #:phases (modify-phases %standard-phases (add-before 'install 'fix-library-loading (lambda* (#:key outputs #:allow-other-keys) (for-each (lambda (path) (substitute* path (("require 'skkdictools'") "require_relative 'skkdictools'"))) (list "filters/annotation-filter.rb" "filters/asayaKe.rb" "filters/complete-numerative.rb" "filters/conjugation.rb" "filters/make-tankan-dic.rb")))) (add-after 'install 'install-scripts (lambda* (#:key outputs #:allow-other-keys) (let ((share (string-append (assoc-ref outputs "out") "/share/skktools"))) (install-file "filters/skkdictools.rb" share) (for-each (lambda (file) (invoke "chmod" "755" file) (install-file file share)) (append (find-files "." "\\.rb$") (find-files "." "\\.scm$") (find-files "." "\\.py$") (find-files "convert2skk" "\\.pl") (find-files "convert2skk" "\\.rb") (list "convert2skk/adddummy" "convert2skk/list2skk" "convert2skk/removedummy" "convert2skk/skk2list") (find-files "filters" "\\.rb$")))))) ;; Install and make autoloads for skk-xml.el. (add-after 'unpack 'make-autoloads (assoc-ref emacs:%standard-phases 'make-autoloads)) (add-after 'install 'install-emacs-files (assoc-ref emacs:%standard-phases 'install)) (add-after 'install-emacs-files 'compile-emacs-files (assoc-ref emacs:%standard-phases 'build)) (add-after 'install 'install-docs (lambda* (#:key outputs #:allow-other-keys) (let ((doc (string-append (assoc-ref outputs "out") "/share/doc/" ,name "-" ,version))) (install-file "ChangeLog" doc) (for-each (lambda (file) (install-file file doc)) (append (find-files "READMEs"))) (copy-file "filters/README.md" (string-append doc "/README.filters.md")) (copy-file "convert2skk/README.md" (string-append doc "/README.convert2skk.md"))))) (add-after 'wrap-scripts 'check-scripts ;; Skipped tests for: ;; * skk2cdb.py: Requires cdb file (lambda* (#:key outputs #:allow-other-keys) (let ((out (string-append (assoc-ref outputs "out") "/share/skktools"))) (for-each (lambda (args) (apply invoke (string-append out "/" (car args)) (cdr args))) '(("abbrev-convert.rb") ("abbrev-simplify-keys.rb") ("adddummy") ("annotation-filter.rb") ("aozora2skk.rb") ("asayaKe.rb") ("canna2skk.rb" "/dev/null") ("chasen2skk.rb") ("complete-numerative.rb") ("conjugation.rb") ("ctdicconv.rb") ("dic-it2skk.rb" "/dev/null") ("ipadic2skk.rb") ("list2skk") ("make-tankan-dic.rb") ("prime2skk.rb") ("removedummy") ("saihenkan.rb") ("skk2list") ("/skkdic-diff.scm" "/dev/null" "/dev/null") ("skk-wordpicker.rb"))))))))) (native-inputs (list ;; for skkdic-expr2 pkg-config ;; for installing Emacs Lisp files emacs-minimal)) (inputs (list bdb-4.8 glib ;for skkdic-expr2 ;; For scripts gauche perl python-2 ruby)) (home-page "https://github.com/skk-dev/skktools") (synopsis "SKK dictionary maintenance tools") (description "The skktools are SKK dictionary maintenance tools. This includes commands such as @command{skkdic-count}, @command{skkdic-expr}, and @command{skkdic-sort}.") (license license:gpl2+))) (define-public mecab (package (name "mecab") (version "0.996") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/taku910/mecab") ;; latest commit (commit "046fa78b2ed56fbd4fac312040f6d62fc1bc31e3"))) (file-name (git-file-name name version)) (sha256 (base32 "1hdv7rgn8j0ym9gsbigydwrbxa8cx2fb0qngg1ya15vvbw0lk4aa")) (patches (search-patches "mecab-variable-param.patch")))) (build-system gnu-build-system) (native-search-paths (list (search-path-specification (variable "MECAB_DICDIR") (separator #f) (files '("lib/mecab/dic"))))) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "mecab"))) (add-before 'build 'add-mecab-dicdir-variable (lambda _ (substitute* "mecabrc.in" (("dicdir = .*") "dicdir = $MECAB_DICDIR")) (substitute* "mecab-config.in" (("echo @libdir@/mecab/dic") "if [ -z \"$MECAB_DICDIR\" ]; then echo @libdir@/mecab/dic else echo \"$MECAB_DICDIR\" fi"))))))) (inputs (list libiconv)) (home-page "https://taku910.github.io/mecab") (synopsis "Morphological analysis engine for texts") (description "Mecab is a morphological analysis engine developped as a collaboration between the Kyoto university and Nippon Telegraph and Telephone Corporation. The engine is independent of any language, dictionary or corpus.") (license (list license:gpl2+ license:lgpl2.1+ license:bsd-3)))) (define-public mecab-ipadic (package (name "mecab-ipadic") (version "2.7.0") (source (package-source mecab)) (build-system gnu-build-system) (arguments `(#:configure-flags (list (string-append "--with-dicdir=" (assoc-ref %outputs "out") "/lib/mecab/dic") "--with-charset=utf8") #:phases (modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "mecab-ipadic"))) (add-before 'configure 'set-mecab-dir (lambda* (#:key outputs #:allow-other-keys) (setenv "MECAB_DICDIR" (string-append (assoc-ref outputs "out") "/lib/mecab/dic"))))))) (native-inputs (list mecab)); for mecab-config (home-page "https://taku910.github.io/mecab") (synopsis "Dictionary data for MeCab") (description "This package contains dictionary data derived from ipadic for use with MeCab.") (license (license:non-copyleft "mecab-ipadic/COPYING")))) (define-public mecab-unidic (package (name "mecab-unidic") (version "3.1.0") (source (origin (method url-fetch) (uri (string-append "https://clrd.ninjal.ac.jp/unidic_archive/cwj/" version "/unidic-cwj-" version ".zip")) (sha256 (base32 "1z132p2q3bgchiw529j2d7dari21kn0fhkgrj3vcl0ncg2m521il")))) (build-system copy-build-system) (arguments `(#:install-plan '(("." "lib/mecab/dic" #:include-regexp ("\\.bin$" "\\.def$" "\\.dic$" "dicrc"))))) (native-inputs (list unzip)) (home-page "https://clrd.ninjal.ac.jp/unidic/en/") (synopsis "Dictionary data for MeCab") (description "UniDic for morphological analysis is a dictionary for analysis with the morphological analyser MeCab, where the short units exported from the database are used as entries (heading terms).") ;; triple-licensed (at the user’s choice) (license (list license:gpl2+ license:lgpl2.1 license:bsd-3))))