Merge remote-tracking branch 'master' into core-updates.
[jackhill/guix/guix.git] / gnu / packages / xml.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013, 2014, 2015, 2016, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
5 ;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
6 ;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
7 ;;; Copyright © 2015, 2016, 2017 Mark H Weaver <mhw@netris.org>
8 ;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
9 ;;; Copyright © 2015 Raimon Grau <raimonster@gmail.com>
10 ;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
11 ;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
12 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
13 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
14 ;;; Copyright © 2016, 2017 ng0 <ng0@n0.is>
15 ;;; Copyright © 2016, 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
16 ;;; Copyright © 2016, 2017, 2018, 2019 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
18 ;;; Copyright © 2017 Gregor Giesen <giesen@zaehlwerk.net>
19 ;;; Copyright © 2017 Alex Vong <alexvong1995@gmail.com>
20 ;;; Copyright © 2017 Petter <petter@mykolab.ch>
21 ;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
22 ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
23 ;;; Copyright © 2018 Jack Hill <jackhill@jackhill.us>
24 ;;;
25 ;;; This file is part of GNU Guix.
26 ;;;
27 ;;; GNU Guix is free software; you can redistribute it and/or modify it
28 ;;; under the terms of the GNU General Public License as published by
29 ;;; the Free Software Foundation; either version 3 of the License, or (at
30 ;;; your option) any later version.
31 ;;;
32 ;;; GNU Guix is distributed in the hope that it will be useful, but
33 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
34 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 ;;; GNU General Public License for more details.
36 ;;;
37 ;;; You should have received a copy of the GNU General Public License
38 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
39
40 (define-module (gnu packages xml)
41 #:use-module (gnu packages)
42 #:use-module (gnu packages autotools)
43 #:use-module (gnu packages check)
44 #:use-module (gnu packages compression)
45 #:use-module (gnu packages curl)
46 #:use-module (gnu packages gnupg)
47 #:use-module (gnu packages java)
48 #:use-module (gnu packages nss)
49 #:use-module (gnu packages perl)
50 #:use-module (gnu packages perl-check)
51 #:use-module (gnu packages python)
52 #:use-module (gnu packages tls)
53 #:use-module (gnu packages web)
54 #:use-module ((guix licenses) #:prefix license:)
55 #:use-module (guix packages)
56 #:use-module (guix download)
57 #:use-module (guix git-download)
58 #:use-module (guix build-system ant)
59 #:use-module (guix build-system cmake)
60 #:use-module (guix build-system gnu)
61 #:use-module (guix build-system perl)
62 #:use-module (guix build-system python)
63 #:use-module (gnu packages linux)
64 #:use-module (gnu packages pkg-config))
65
66 (define-public expat
67 (package
68 (name "expat")
69 (version "2.2.9")
70 (source (let ((dot->underscore (lambda (c) (if (char=? #\. c) #\_ c))))
71 (origin
72 (method url-fetch)
73 (uri (list (string-append "mirror://sourceforge/expat/expat/"
74 version "/expat-" version ".tar.xz")
75 (string-append
76 "https://github.com/libexpat/libexpat/releases/download/R_"
77 (string-map dot->underscore version)
78 "/expat-" version ".tar.xz")))
79 (sha256
80 (base32
81 "1960mmgbb4cm64n1p0nz3hrs1pw03hkrfcw8prmnn4622mdrd9hy")))))
82 (build-system gnu-build-system)
83 (arguments
84 '(#:configure-flags '("--disable-static")))
85 (home-page "https://libexpat.github.io/")
86 (synopsis "Stream-oriented XML parser library written in C")
87 (description
88 "Expat is an XML parser library written in C. It is a
89 stream-oriented parser in which an application registers handlers for
90 things the parser might find in the XML document (like start tags).")
91 (license license:expat)))
92
93 (define-public libebml
94 (package
95 (name "libebml")
96 (version "1.3.10")
97 (source
98 (origin
99 (method url-fetch)
100 (uri (string-append "https://dl.matroska.org/downloads/libebml/"
101 "libebml-" version ".tar.xz"))
102 (sha256
103 (base32 "0gjy5wv2hw1xhyxdgms8azs12f33ws8j7cvg8jy5k03v2bs959y6"))))
104 (build-system cmake-build-system)
105 (arguments
106 `(#:configure-flags
107 (list "-DBUILD_SHARED_LIBS=YES")
108 #:tests? #f)) ; no test suite
109 (home-page "https://matroska-org.github.io/libebml/")
110 (synopsis "C++ library to parse EBML files")
111 (description "libebml is a C++ library to read and write @dfn{EBML}
112 (Extensible Binary Meta Language) files. EBML was designed to be a simplified
113 binary extension of XML for the purpose of storing and manipulating data in a
114 hierarchical form with variable field lengths.")
115 (license license:lgpl2.1)))
116
117 (define-public libxml2
118 (package
119 (name "libxml2")
120 (version "2.9.10")
121 (source (origin
122 (method url-fetch)
123 (uri (string-append "ftp://xmlsoft.org/libxml2/libxml2-"
124 version ".tar.gz"))
125 (sha256
126 (base32
127 "07xynh8hcxb2yb1fs051xrgszjvj37wnxvxgsj10rzmqzy9y3zma"))))
128 (build-system gnu-build-system)
129 (outputs '("out" "static"))
130 (arguments
131 `(#:phases (modify-phases %standard-phases
132 (add-after 'install 'move-static-libs
133 (lambda* (#:key outputs #:allow-other-keys)
134 (let ((src (string-append (assoc-ref outputs "out") "/lib"))
135 (dst (string-append (assoc-ref outputs "static")
136 "/lib")))
137 (mkdir-p dst)
138 (for-each (lambda (ar)
139 (rename-file ar (string-append dst "/"
140 (basename ar))))
141 (find-files src "\\.a$"))
142
143 ;; Remove reference to the static library from the .la
144 ;; file such that Libtool does the right thing when both
145 ;; the shared and static variants are available.
146 (substitute* (string-append src "/libxml2.la")
147 (("^old_library='libxml2.a'") "old_library=''"))
148 #t))))))
149 (home-page "http://www.xmlsoft.org/")
150 (synopsis "C parser for XML")
151 (inputs `(("xz" ,xz)))
152 (propagated-inputs `(("zlib" ,zlib))) ; libxml2.la says '-lz'.
153 (native-inputs `(("perl" ,perl)))
154 ;; $XML_CATALOG_FILES lists 'catalog.xml' files found in under the 'xml'
155 ;; sub-directory of any given package.
156 (native-search-paths (list (search-path-specification
157 (variable "XML_CATALOG_FILES")
158 (separator " ")
159 (files '("xml"))
160 (file-pattern "^catalog\\.xml$")
161 (file-type 'regular))))
162 (search-paths native-search-paths)
163 (description
164 "Libxml2 is the XML C parser and toolkit developed for the Gnome
165 project (but it is usable outside of the Gnome platform).")
166 (license license:x11)))
167
168 (define-public python-libxml2
169 (package/inherit libxml2
170 (name "python-libxml2")
171 (source (origin
172 (inherit (package-source libxml2))
173 (patches (cons (search-patch "python-libxml2-utf8.patch")
174 (origin-patches (package-source libxml2))))))
175 (build-system python-build-system)
176 (outputs '("out"))
177 (arguments
178 `(;; XXX: Tests are specified in 'Makefile.am', but not in 'setup.py'.
179 #:tests? #f
180 #:phases
181 (modify-phases %standard-phases
182 (add-before
183 'build 'configure
184 (lambda* (#:key inputs #:allow-other-keys)
185 (chdir "python")
186 (let ((glibc (assoc-ref inputs ,(if (%current-target-system)
187 "cross-libc" "libc")))
188 (libxml2 (assoc-ref inputs "libxml2")))
189 (substitute* "setup.py"
190 ;; For 'libxml2/libxml/tree.h'.
191 (("ROOT = r'/usr'")
192 (format #f "ROOT = r'~a'" libxml2))
193 ;; For 'iconv.h'.
194 (("/opt/include")
195 (string-append glibc "/include"))))
196 #t)))))
197 (inputs `(("libxml2" ,libxml2)))
198 (synopsis "Python bindings for the libxml2 library")))
199
200 (define-public python2-libxml2
201 (package-with-python2 python-libxml2))
202
203 (define-public libxslt
204 (package
205 (name "libxslt")
206 (version "1.1.34")
207 (source (origin
208 (method url-fetch)
209 (uri (string-append "ftp://xmlsoft.org/libxslt/libxslt-"
210 version ".tar.gz"))
211 (sha256
212 (base32
213 "0zrzz6kjdyavspzik6fbkpvfpbd25r2qg6py5nnjaabrsr3bvccq"))
214 (patches (search-patches "libxslt-generated-ids.patch"))))
215 (build-system gnu-build-system)
216 (arguments
217 `(#:phases (modify-phases %standard-phases
218 (add-before 'check 'disable-fuzz-tests
219 (lambda _
220 ;; Disable libFuzzer tests, because they require
221 ;; instrumentation builds of libxml2 and libxslt.
222 (substitute* "tests/Makefile"
223 (("exslt plugins fuzz")
224 "exslt plugins"))
225 #t)))))
226 (home-page "http://xmlsoft.org/XSLT/index.html")
227 (synopsis "C library for applying XSLT stylesheets to XML documents")
228 (inputs `(("libgcrypt" ,libgcrypt)
229 ("libxml2" ,libxml2)
230 ("python" ,python-minimal-wrapper)
231 ("zlib" ,zlib)
232 ("xz" ,xz)))
233 (native-inputs
234 `(("pkg-config" ,pkg-config)))
235 (description
236 "Libxslt is an XSLT C library developed for the GNOME project. It is
237 based on libxml for XML parsing, tree manipulation and XPath support.")
238 (license license:x11)))
239
240 (define-public perl-graph-readwrite
241 (package
242 (name "perl-graph-readwrite")
243 (version "2.09")
244 (source
245 (origin
246 (method url-fetch)
247 (uri (string-append
248 "mirror://cpan/authors/id/N/NE/NEILB/Graph-ReadWrite-"
249 version
250 ".tar.gz"))
251 (sha256
252 (base32
253 "0jlsg64pmy6ka5q5gy851nnyfgjzvhyxc576bhns3vi2x5ng07mh"))))
254 (build-system perl-build-system)
255 (propagated-inputs
256 `(("perl-graph" ,perl-graph)
257 ("perl-parse-yapp" ,perl-parse-yapp)
258 ("perl-xml-parser" ,perl-xml-parser)
259 ("perl-xml-writer" ,perl-xml-writer)))
260 (home-page "https://metacpan.org/release/Graph-ReadWrite")
261 (synopsis "Modules for reading and writing directed graphs")
262 (description "This is a collection of perl classes for reading and writing
263 directed graphs in a variety of file formats. The graphs are represented in
264 Perl using Jarkko Hietaniemi's @code{Graph} classes.
265
266 There are two base classes. @code{Graph::Reader} is the base class for classes
267 which read a graph file and create an instance of the Graph class.
268 @code{Graph::Writer} is the base class for classes which take an instance of
269 the @code{Graph} class and write it out in a specific file format.")
270 (license license:perl-license)))
271
272 (define-public perl-xml-atom
273 (package
274 (name "perl-xml-atom")
275 (version "0.42")
276 (source (origin
277 (method url-fetch)
278 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
279 "XML-Atom-" version ".tar.gz"))
280 (sha256
281 (base32
282 "1wa8kfy1w4mg7kzxim4whyprkn48a2il6fap0b947zywknw4c6y6"))))
283 (build-system perl-build-system)
284 (arguments
285 `(#:phases
286 (modify-phases %standard-phases
287 (add-before 'check 'set-perl-search-path
288 (lambda _
289 (setenv "PERL5LIB"
290 (string-append (getcwd) ":"
291 (getenv "PERL5LIB")))
292 #t)))))
293 (native-inputs
294 ;; TODO package: perl-datetime-format-atom
295 `(("perl-html-tagset" ,perl-html-tagset)
296 ("perl-module-build-tiny" ,perl-module-build-tiny)
297 ("perl-module-install" ,perl-module-install)))
298 (propagated-inputs
299 `(("perl-class-data-inheritable" ,perl-class-data-inheritable)
300 ("perl-datetime" ,perl-datetime)
301 ("perl-datetime-timezone" ,perl-datetime-timezone)
302 ("perl-digest-sha1" ,perl-digest-sha1)
303 ("perl-libwww" ,perl-libwww)
304 ("perl-uri" ,perl-uri)
305 ("perl-xml-libxml" ,perl-xml-libxml)
306 ("perl-xml-xpath" ,perl-xml-xpath)))
307 (home-page "https://metacpan.org/release/XML-Atom")
308 (synopsis "Atom feed and API implementation")
309 (description
310 "Atom is a syndication, API, and archiving format for weblogs and other data.
311 @code{XML::Atom} implements the feed format as well as a client for the API.")
312 (license license:perl-license)))
313
314 (define-public perl-xml-descent
315 (package
316 (name "perl-xml-descent")
317 (version "1.04")
318 (source (origin
319 (method url-fetch)
320 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
321 "XML-Descent-" version ".tar.gz"))
322 (sha256
323 (base32
324 "0l5xmw2hd95ypppz3lyvp4sn02ccsikzjwacli3ydxfdz1bbh4d7"))))
325 (build-system perl-build-system)
326 (native-inputs
327 `(("perl-module-build" ,perl-module-build)))
328 (propagated-inputs
329 `(("perl-test-differences" ,perl-test-differences)
330 ("perl-xml-tokeparser" ,perl-xml-tokeparser)))
331 (home-page "https://metacpan.org/release/XML-Descent")
332 (synopsis "Recursive descent XML parsing")
333 (description
334 "The conventional models for parsing XML are either @dfn{DOM}
335 (a data structure representing the entire document tree is created) or
336 @dfn{SAX} (callbacks are issued for each element in the XML).
337
338 XML grammar is recursive - so it's nice to be able to write recursive
339 parsers for it. @code{XML::Descent} allows such parsers to be created.")
340 (license license:perl-license)))
341
342 (define-public perl-xml-parser
343 (package
344 (name "perl-xml-parser")
345 (version "2.44")
346 (source (origin
347 (method url-fetch)
348 (uri (string-append
349 "mirror://cpan/authors/id/T/TO/TODDR/XML-Parser-"
350 version ".tar.gz"))
351 (sha256
352 (base32
353 "05ij0g6bfn27iaggxf8nl5rhlwx6f6p6xmdav6rjcly3x5zd1s8s"))))
354 (build-system perl-build-system)
355 (arguments `(#:make-maker-flags
356 (let ((expat (assoc-ref %build-inputs "expat")))
357 (list (string-append "EXPATLIBPATH=" expat "/lib")
358 (string-append "EXPATINCPATH=" expat "/include")))))
359 (inputs `(("expat" ,expat)))
360 (license license:perl-license)
361 (synopsis "Perl bindings to the Expat XML parsing library")
362 (description
363 "This module provides ways to parse XML documents. It is built on top of
364 XML::Parser::Expat, which is a lower level interface to James Clark's expat
365 library. Each call to one of the parsing methods creates a new instance of
366 XML::Parser::Expat which is then used to parse the document. Expat options
367 may be provided when the XML::Parser object is created. These options are
368 then passed on to the Expat object on each parse call. They can also be given
369 as extra arguments to the parse methods, in which case they override options
370 given at XML::Parser creation time.")
371 (home-page "https://metacpan.org/release/XML-Parser")))
372
373 (define-public perl-xml-tokeparser
374 (package
375 (name "perl-xml-tokeparser")
376 (version "0.05")
377 (source (origin
378 (method url-fetch)
379 (uri (string-append "mirror://cpan/authors/id/P/PO/PODMASTER/"
380 "XML-TokeParser-" version ".tar.gz"))
381 (sha256
382 (base32
383 "1hnpwb3lh6cbgwvjjgqzcp6jm4mp612qn6ili38adc9nhkwv8fc5"))))
384 (build-system perl-build-system)
385 (propagated-inputs `(("perl-xml-parser" ,perl-xml-parser)))
386 (home-page "https://metacpan.org/release/XML-TokeParser")
387 (synopsis "Simplified interface to XML::Parser")
388 (description
389 "@code{XML::TokeParser} provides a procedural (\"pull mode\") interface
390 to @code{XML::Parser} in much the same way that Gisle Aas'
391 @code{HTML::TokeParser} provides a procedural interface to @code{HTML::Parser}.
392 @code{XML::TokeParser} splits its XML input up into \"tokens\", each
393 corresponding to an @code{XML::Parser} event.")
394 (license license:perl-license)))
395
396 (define-public perl-libxml
397 (package
398 (name "perl-libxml")
399 (version "0.08")
400 (source (origin
401 (method url-fetch)
402 (uri (string-append
403 "mirror://cpan/authors/id/K/KM/KMACLEOD/libxml-perl-"
404 version ".tar.gz"))
405 (sha256
406 (base32
407 "1jy9af0ljyzj7wakqli0437zb2vrbplqj4xhab7bfj2xgfdhawa5"))))
408 (build-system perl-build-system)
409 (propagated-inputs
410 `(("perl-xml-parser" ,perl-xml-parser)))
411 (license license:perl-license)
412 (synopsis "Perl modules for working with XML")
413 (description
414 "libxml-perl is a collection of smaller Perl modules, scripts, and
415 documents for working with XML in Perl. libxml-perl software works in
416 combination with @code{XML::Parser}, PerlSAX, @code{XML::DOM},
417 @code{XML::Grove}, and others.")
418 (home-page "https://metacpan.org/release/libxml-perl")))
419
420 (define-public perl-xml-libxml
421 (package
422 (name "perl-xml-libxml")
423 (version "2.0134")
424 (source
425 (origin
426 (method url-fetch)
427 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
428 "XML-LibXML-" version ".tar.gz"))
429 (sha256
430 (base32
431 "1ks69xymv6zkj7hvaymjvb78ch81abri7kg4zrwxhdfsqb8a9g7h"))))
432 (build-system perl-build-system)
433 (propagated-inputs
434 `(("perl-xml-namespacesupport" ,perl-xml-namespacesupport)
435 ("perl-xml-sax" ,perl-xml-sax)))
436 (inputs
437 `(("libxml2" ,libxml2)))
438 (home-page "https://metacpan.org/release/XML-LibXML")
439 (synopsis "Perl interface to libxml2")
440 (description "This module implements a Perl interface to the libxml2
441 library which provides interfaces for parsing and manipulating XML files. This
442 module allows Perl programmers to make use of the highly capable validating
443 XML parser and the high performance DOM implementation.")
444 (license license:perl-license)))
445
446 (define-public perl-xml-libxml-simple
447 (package
448 (name "perl-xml-libxml-simple")
449 (version "0.99")
450 (source (origin
451 (method url-fetch)
452 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
453 "XML-LibXML-Simple-" version ".tar.gz"))
454 (sha256
455 (base32
456 "0i4ybiqdnvnbfxqslw2y392kvy7i752dl8n99bqiqv5kzk4lbzhl"))))
457 (build-system perl-build-system)
458 (propagated-inputs
459 `(("perl-file-slurp-tiny" ,perl-file-slurp-tiny)
460 ("perl-xml-libxml" ,perl-xml-libxml)))
461 (home-page "https://metacpan.org/release/XML-LibXML-Simple")
462 (synopsis "XML::LibXML based XML::Simple clone")
463 (description
464 "This package provides the same API as @code{XML::Simple} but is based on
465 @code{XML::LibXML}.")
466 (license license:perl-license)))
467
468 (define-public perl-xml-libxslt
469 (package
470 (name "perl-xml-libxslt")
471 (version "1.96")
472 (source
473 (origin
474 (method url-fetch)
475 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
476 "XML-LibXSLT-" version ".tar.gz"))
477 (sha256
478 (base32
479 "0wyl8klgr65j8y8fzgwz9jlvfjwvxazna8j3dg9gksd2v973fpia"))))
480 (build-system perl-build-system)
481 (inputs
482 `(("libxslt" ,libxslt)))
483 (propagated-inputs
484 `(("perl-xml-libxml" ,perl-xml-libxml)))
485 (home-page "https://metacpan.org/release/XML-LibXSLT")
486 (synopsis "Perl bindings to GNOME libxslt library")
487 (description "This Perl module is an interface to the GNOME project's
488 libxslt library.")
489 (license license:perl-license)))
490
491 (define-public perl-xml-namespacesupport
492 (package
493 (name "perl-xml-namespacesupport")
494 (version "1.12")
495 (source
496 (origin
497 (method url-fetch)
498 (uri (string-append "mirror://cpan/authors/id/P/PE/PERIGRIN/"
499 "XML-NamespaceSupport-" version ".tar.gz"))
500 (sha256
501 (base32
502 "1vz5pbi4lm5fhq2slrs2hlp6bnk29863abgjlcx43l4dky2rbsa7"))))
503 (build-system perl-build-system)
504 (home-page "https://metacpan.org/release/XML-NamespaceSupport")
505 (synopsis "XML namespace support class")
506 (description "This module offers a simple to process namespaced XML
507 names (unames) from within any application that may need them. It also helps
508 maintain a prefix to namespace URI map, and provides a number of basic
509 checks.")
510 (license license:perl-license)))
511
512 (define-public perl-xml-rss
513 (package
514 (name "perl-xml-rss")
515 (version "1.61")
516 (source (origin
517 (method url-fetch)
518 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
519 "XML-RSS-" version ".tar.gz"))
520 (sha256
521 (base32
522 "03f983l2dnkvcw6iyg1s0xmv5wn793d3kvqlshmhm01ibp7ffvzs"))))
523 (build-system perl-build-system)
524 (native-inputs
525 `(("perl-module-build" ,perl-module-build)
526 ("perl-test-manifest" ,perl-test-manifest)
527 ("perl-test-differences" ,perl-test-differences)
528 ("perl-test-pod" ,perl-test-pod)
529 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
530 ;; XXX: The test which uses this modules does not run, even when it is included
531 ;; it is ignored. ("perl-test-trailingspace" ,perl-test-trailingspace)
532 (inputs
533 `(("perl-datetime" ,perl-datetime)
534 ("perl-datetime-format-mail" ,perl-datetime-format-mail)
535 ("perl-datetime-format-w3cdtf" ,perl-datetime-format-w3cdtf)
536 ("perl-html-parser" ,perl-html-parser)
537 ("perl-xml-parser" ,perl-xml-parser)))
538 (home-page "https://metacpan.org/release/XML-RSS")
539 (synopsis "Creates and updates RSS files")
540 (description
541 "This module provides a basic framework for creating and maintaining
542 RDF Site Summary (RSS) files. This distribution also contains many examples
543 that allow you to generate HTML from an RSS, convert between 0.9, 0.91, and
544 1.0 version, and more.")
545 (license license:perl-license)))
546
547 (define-public perl-xml-sax
548 (package
549 (name "perl-xml-sax")
550 (version "1.02")
551 (source
552 (origin
553 (method url-fetch)
554 (uri (string-append "mirror://cpan/authors/id/G/GR/GRANTM/"
555 "XML-SAX-" version ".tar.gz"))
556 (sha256
557 (base32 "0am13vnv8qsjafr5ljakwnkhlwpk15sga02z8mxsg9is0j3w61j5"))))
558 (build-system perl-build-system)
559 (propagated-inputs
560 `(("perl-xml-namespacesupport" ,perl-xml-namespacesupport)
561 ("perl-xml-sax-base" ,perl-xml-sax-base)))
562 (arguments
563 `(#:phases (modify-phases %standard-phases
564 (add-before
565 'install 'augment-path
566 ;; The install target tries to load the newly-installed
567 ;; XML::SAX module, but can't find it, so we need to tell
568 ;; perl where to look.
569 (lambda* (#:key outputs #:allow-other-keys)
570 (setenv "PERL5LIB"
571 (string-append (getenv "PERL5LIB") ":"
572 (assoc-ref outputs "out")
573 "/lib/perl5/site_perl"))
574 #t)))))
575 (home-page "https://metacpan.org/release/XML-SAX")
576 (synopsis "Perl API for XML")
577 (description "XML::SAX consists of several framework classes for using and
578 building Perl SAX2 XML parsers, filters, and drivers.")
579 (license license:perl-license)))
580
581 (define-public perl-xml-sax-base
582 (package
583 (name "perl-xml-sax-base")
584 (version "1.09")
585 (source
586 (origin
587 (method url-fetch)
588 (uri (string-append "mirror://cpan/authors/id/G/GR/GRANTM/"
589 "XML-SAX-Base-" version ".tar.gz"))
590 (sha256
591 (base32
592 "1l1ai9g1z11ja7mvnfl5mj346r13jyckbg9qlw6c2izglidkbjv6"))))
593 (build-system perl-build-system)
594 (home-page "https://metacpan.org/release/XML-SAX-Base")
595 (synopsis "Base class for SAX Drivers and Filters")
596 (description "This module has a very simple task - to be a base class for
597 PerlSAX drivers and filters. It's default behaviour is to pass the input
598 directly to the output unchanged. It can be useful to use this module as a
599 base class so you don't have to, for example, implement the characters()
600 callback.")
601 (license license:perl-license)))
602
603 (define-public perl-xml-simple
604 (package
605 (name "perl-xml-simple")
606 (version "2.25")
607 (source (origin
608 (method url-fetch)
609 (uri (string-append
610 "mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-"
611 version ".tar.gz"))
612 (sha256
613 (base32
614 "1y6vh328zrh085d40852v4ij2l4g0amxykswxd1nfhd2pspds7sk"))))
615 (build-system perl-build-system)
616 (propagated-inputs
617 `(("perl-xml-parser" ,perl-xml-parser)
618 ("perl-xml-sax" ,perl-xml-sax)))
619 (license license:perl-license)
620 (synopsis "Perl module for easy reading/writing of XML files")
621 (description
622 "The XML::Simple module provides a simple API layer on top of an
623 underlying XML parsing module (either XML::Parser or one of the SAX2
624 parser modules).")
625 (home-page "https://metacpan.org/release/XML-Simple")))
626
627 (define-public perl-xml-regexp
628 (package
629 (name "perl-xml-regexp")
630 (version "0.04")
631 (source (origin
632 (method url-fetch)
633 (uri (string-append
634 "mirror://cpan/authors/id/T/TJ/TJMATHER/XML-RegExp-"
635 version ".tar.gz"))
636 (sha256
637 (base32
638 "0m7wj00a2kik7wj0azhs1zagwazqh3hlz4255n75q21nc04r06fz"))))
639 (build-system perl-build-system)
640 (inputs
641 `(("perl-xml-parser" ,perl-xml-parser)))
642 (license license:perl-license)
643 (synopsis "Perl regular expressions for XML tokens")
644 (description
645 "XML::RegExp contains regular expressions for the following XML tokens:
646 BaseChar, Ideographic, Letter, Digit, Extender, CombiningChar, NameChar,
647 EntityRef, CharRef, Reference, Name, NmToken, and AttValue.")
648 (home-page "https://metacpan.org/release/XML-RegExp")))
649
650 (define-public perl-xml-dom
651 (package
652 (name "perl-xml-dom")
653 (version "1.46")
654 (source (origin
655 (method url-fetch)
656 (uri (string-append
657 "mirror://cpan/authors/id/T/TJ/TJMATHER/XML-DOM-"
658 version ".tar.gz"))
659 (sha256
660 (base32
661 "0phpkc4li43m2g44hdcvyxzy9pymqwlqhh5hwp2xc0cv8l5lp8lb"))))
662 (build-system perl-build-system)
663 (propagated-inputs
664 `(("perl-libwww" ,perl-libwww)
665 ("perl-libxml" ,perl-libxml)
666 ("perl-xml-parser" ,perl-xml-parser)
667 ("perl-xml-regexp" ,perl-xml-regexp)))
668 (license license:perl-license)
669 (synopsis
670 "Perl module for building DOM Level 1 compliant document structures")
671 (description
672 "This module extends the XML::Parser module by Clark Cooper. The
673 XML::Parser module is built on top of XML::Parser::Expat, which is a lower
674 level interface to James Clark's expat library. XML::DOM::Parser is derived
675 from XML::Parser. It parses XML strings or files and builds a data structure
676 that conforms to the API of the Document Object Model.")
677 (home-page "https://metacpan.org/release/XML-DOM")))
678
679 (define-public perl-xml-compile-tester
680 (package
681 (name "perl-xml-compile-tester")
682 (version "0.91")
683 (source (origin
684 (method url-fetch)
685 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
686 "XML-Compile-Tester-" version ".tar.gz"))
687 (sha256
688 (base32
689 "1drzwziwi96rfkh48qpw4l225mcbk8ppl2157nj92cslcpwwdk75"))))
690 (build-system perl-build-system)
691 (propagated-inputs
692 `(("perl-log-report" ,perl-log-report)
693 ("perl-test-deep" ,perl-test-deep)))
694 (home-page "https://metacpan.org/release/XML-Compile-Tester")
695 (synopsis "XML::Compile related regression testing")
696 (description
697 "The @code{XML::Compile} module suite has extensive regression testing.
698 This module provide functions which simplify writing tests for
699 @code{XML::Compile} related distributions.")
700 (license license:perl-license)))
701
702 (define-public perl-xml-compile
703 (package
704 (name "perl-xml-compile")
705 (version "1.63")
706 (source (origin
707 (method url-fetch)
708 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
709 "XML-Compile-" version ".tar.gz"))
710 (sha256
711 (base32
712 "0psr5pwsk2biz2bfkigmx04v2rfhs6ybwcfmcrrg7gvh9bpp222b"))))
713 (build-system perl-build-system)
714 (propagated-inputs
715 `(("perl-carp" ,perl-carp)
716 ("perl-log-report" ,perl-log-report)
717 ("perl-xml-compile-tester" ,perl-xml-compile-tester)
718 ("perl-xml-libxml" ,perl-xml-libxml)
719 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
720 ("perl-test-deep" ,perl-test-deep)
721 ("perl-types-serialiser" ,perl-types-serialiser)))
722 (home-page "https://metacpan.org/release/XML-Compile")
723 (synopsis "Compilation-based XML processing")
724 (description
725 "@code{XML::Compile} can be used to translate a Perl data-structure into
726 XML or XML into a Perl data-structure, both directions under rigid control by
727 a schema.")
728 (license license:perl-license)))
729
730 (define-public perl-xml-compile-cache
731 (package
732 (name "perl-xml-compile-cache")
733 (version "1.06")
734 (source (origin
735 (method url-fetch)
736 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
737 "XML-Compile-Cache-" version ".tar.gz"))
738 (sha256
739 (base32
740 "181qf1s7ymgi7saph3cf9p6dbxkxyh1ja23na4dchhi8v5mi66sr"))))
741 (build-system perl-build-system)
742 (propagated-inputs
743 `(("perl-log-report" ,perl-log-report)
744 ("perl-xml-compile" ,perl-xml-compile)
745 ("perl-xml-compile-tester" ,perl-xml-compile-tester)
746 ("perl-xml-libxml-simple" ,perl-xml-libxml-simple)))
747 (home-page "https://metacpan.org/release/XML-Compile-Cache")
748 (synopsis "Cache compiled XML translators")
749 (description
750 "This package provides methods to cache compiled XML translators.")
751 (license license:perl-license)))
752
753 (define-public perl-xml-compile-soap
754 (package
755 (name "perl-xml-compile-soap")
756 (version "3.24")
757 (source (origin
758 (method url-fetch)
759 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
760 "XML-Compile-SOAP-" version ".tar.gz"))
761 (sha256
762 (base32
763 "0pkcph562l2ij7rlwlvm58v6y062qsbydfpaz2qnph2ixqy0xfd1"))))
764 (build-system perl-build-system)
765 (propagated-inputs
766 `(("perl-file-slurp-tiny" ,perl-file-slurp-tiny)
767 ("perl-libwww" ,perl-libwww)
768 ("perl-log-report" ,perl-log-report)
769 ("perl-xml-compile" ,perl-xml-compile)
770 ("perl-xml-compile-cache" ,perl-xml-compile-cache)
771 ("perl-xml-compile-tester" ,perl-xml-compile-tester)))
772 (home-page "https://metacpan.org/release/XML-Compile-SOAP")
773 (synopsis "Base-class for SOAP implementations")
774 (description
775 "This module provides a class to handle the SOAP protocol. The first
776 implementation is @url{SOAP1.1,
777 http://www.w3.org/TR/2000/NOTE-SOAP-20000508/}, which is still most often
778 used.")
779 (license license:perl-license)))
780
781 (define-public perl-xml-compile-wsdl11
782 (package
783 (name "perl-xml-compile-wsdl11")
784 (version "3.07")
785 (source (origin
786 (method url-fetch)
787 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
788 "XML-Compile-WSDL11-" version ".tar.gz"))
789 (sha256
790 (base32
791 "09ayl442hzvn97q4ghn5rz4r82dm9w3l69hixhb29h9xq9ysi7ba"))))
792 (build-system perl-build-system)
793 (propagated-inputs
794 `(("perl-log-report" ,perl-log-report)
795 ("perl-xml-compile" ,perl-xml-compile)
796 ("perl-xml-compile-cache" ,perl-xml-compile-cache)
797 ("perl-xml-compile-soap" ,perl-xml-compile-soap)))
798 (home-page "https://metacpan.org/release/XML-Compile-WSDL11")
799 (synopsis "Create SOAP messages defined by WSDL 1.1")
800 (description
801 "This module understands WSDL version 1.1. A WSDL file defines a set of
802 messages to be send and received over SOAP connections. This involves
803 encoding of the message to be send into XML, sending the message to the
804 server, collect the answer, and finally decoding the XML to Perl.")
805 (license license:perl-license)))
806
807 (define-public perl-xml-feed
808 (package
809 (name "perl-xml-feed")
810 (version "0.59")
811 (source (origin
812 (method url-fetch)
813 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVECROSS/"
814 "XML-Feed-" version ".tar.gz"))
815 (sha256
816 (base32
817 "1z1a88bpy64j42bbyl8acbfl3dn9iaz47gx6clkgy5sbn4kr0kgk"))))
818 (build-system perl-build-system)
819 (arguments
820 `(#:tests? #f)) ; tests require internet connection
821 (native-inputs
822 `(("perl-module-build" ,perl-module-build)
823 ("perl-uri" ,perl-uri)
824 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
825 (inputs
826 `(("perl-class-errorhandler" ,perl-class-errorhandler)
827 ("perl-datetime" ,perl-datetime)
828 ("perl-datetime-format-mail" ,perl-datetime-format-mail)
829 ("perl-datetime-format-w3cdtf" ,perl-datetime-format-w3cdtf)
830 ("perl-feed-find" ,perl-feed-find)
831 ("perl-html-parser" ,perl-html-parser)
832 ("perl-libwww-perl" ,perl-libwww)
833 ("perl-module-pluggable" ,perl-module-pluggable)
834 ("perl-uri-fetch" ,perl-uri-fetch)
835 ("perl-xml-atom" ,perl-xml-atom)
836 ("perl-xml-libxml" ,perl-xml-libxml)
837 ("perl-xml-rss" ,perl-xml-rss)))
838 (home-page "https://metacpan.org/release/XML-Feed")
839 (synopsis "XML Syndication Feed Support")
840 (description "@code{XML::Feed} is a syndication feed parser for both RSS and
841 Atom feeds. It also implements feed auto-discovery for finding feeds, given a URI.
842 @code{XML::Feed} supports the following syndication feed formats:
843 RSS 0.91, RSS 1.0, RSS 2.0, Atom")
844 (license license:perl-license)))
845
846 (define-public perl-xml-xpath
847 (package
848 (name "perl-xml-xpath")
849 (version "1.44")
850 (source (origin
851 (method url-fetch)
852 (uri (string-append "mirror://cpan/authors/id/M/MA/MANWAR/"
853 "XML-XPath-" version ".tar.gz"))
854 (sha256
855 (base32
856 "03yxj7w5a43ibbpiqsvb3lswj2b71dydsx4rs2fw0p8n0l3i3j8w"))))
857 (build-system perl-build-system)
858 (native-inputs
859 `(("perl-path-tiny" ,perl-path-tiny)))
860 (propagated-inputs
861 `(("perl-xml-parser" ,perl-xml-parser)))
862 (home-page "https://metacpan.org/release/XML-XPath")
863 (synopsis "Parse and evaluate XPath statements")
864 (description
865 "This module aims to comply exactly to the @url{XPath specification,
866 https://www.w3.org/TR/xpath} and yet allow extensions to be added in
867 the form of functions.")
868 (license license:perl-license)))
869
870 (define-public pugixml
871 (package
872 (name "pugixml")
873 (version "1.10")
874 (source
875 (origin
876 (method url-fetch)
877 (uri (string-append "https://github.com/zeux/pugixml/releases/download/v"
878 version "/pugixml-" version ".tar.gz"))
879 (sha256
880 (base32 "02l7nllhydggf7s64d2x84kckbmwag4lsn28sc82953hnkxrkwsm"))))
881 (build-system cmake-build-system)
882 (arguments
883 `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")
884 #:tests? #f)) ; no tests
885 (native-inputs
886 `(("pkg-config" ,pkg-config)))
887 (home-page "https://pugixml.org")
888 (synopsis "Light-weight, simple and fast XML parser for C++ with XPath support")
889 (description
890 "pugixml is a C++ XML processing library, which consists of a DOM-like
891 interface with rich traversal/modification capabilities, a fast XML parser
892 which constructs the DOM tree from an XML file/buffer, and an XPath 1.0
893 implementation for complex data-driven tree queries. Full Unicode support is
894 also available, with Unicode interface variants and conversions between
895 different Unicode encodings which happen automatically during
896 parsing/saving.")
897 (license license:expat)))
898
899 (define-public python-pyxb
900 (package
901 (name "python-pyxb")
902 (version "1.2.6")
903 (source (origin
904 (method url-fetch)
905 (uri (pypi-uri "PyXB" version))
906 (sha256
907 (base32
908 "1d17pyixbfvjyi2lb0cfp0ch8wwdf44mmg3r5pwqhyyqs66z601a"))))
909 (build-system python-build-system)
910 (home-page "http://pyxb.sourceforge.net/")
911 (synopsis "Python XML Schema Bindings")
912 (description
913 "PyXB (\"pixbee\") is a pure Python package that generates Python source
914 code for classes that correspond to data structures defined by XMLSchema.")
915 (license (list license:asl2.0 ; Most files.
916 license:expat ; pyxb/utils/six.py
917 license:gpl2 ; bundled jquery in doc is dual MIT/GPL2
918 license:psfl)))) ; pyxb/utils/activestate.py
919
920 (define-public python2-pyxb
921 (package-with-python2 python-pyxb))
922
923 (define-public xmlto
924 (package
925 (name "xmlto")
926 (version "0.0.28")
927 (source
928 (origin
929 (method url-fetch)
930 ;; The old source on fedorahosted.org is offline permanently:
931 ;; <https://bugs.gnu.org/25989>
932 (uri (string-append "mirror://debian/pool/main/x/xmlto/"
933 "xmlto_" version ".orig.tar.bz2"))
934 (file-name (string-append name "-" version ".tar.bz2"))
935 (sha256
936 (base32
937 "0xhj8b2pwp4vhl9y16v3dpxpsakkflfamr191mprzsspg4xdyc0i"))))
938 (build-system gnu-build-system)
939 (arguments
940 ;; Make sure the reference to util-linux's 'getopt' is kept in 'xmlto'.
941 '(#:configure-flags (list (string-append "GETOPT="
942 (assoc-ref %build-inputs
943 "util-linux")
944 "/bin/getopt"))))
945 (native-inputs
946 `(("util-linux" ,util-linux)))
947 (inputs
948 `(("util-linux" ,util-linux) ; for 'getopt'
949 ("libxml2" ,libxml2) ; for 'xmllint'
950 ("libxslt" ,libxslt))) ; for 'xsltproc'
951 (home-page "http://cyberelk.net/tim/software/xmlto/")
952 (synopsis "Front-end to an XSL toolchain")
953 (description
954 "Xmlto is a front-end to an XSL toolchain. It chooses an appropriate
955 stylesheet for the conversion you want and applies it using an external
956 XSL-T processor. It also performs any necessary post-processing.")
957 (license license:gpl2+)))
958
959 (define-public xmlsec
960 (package
961 (name "xmlsec")
962 (version "1.2.29")
963 (source (origin
964 (method url-fetch)
965 (uri (string-append "https://www.aleksey.com/xmlsec/download/"
966 "xmlsec1-" version ".tar.gz"))
967 (sha256
968 (base32
969 "1arr50fvma01q2ix7g4k2c7lb8qcqjajn7wdc07r66b0jsxdxldi"))))
970 (build-system gnu-build-system)
971 (propagated-inputs ; according to xmlsec1.pc
972 `(("libxml2" ,libxml2)
973 ("libxslt" ,libxslt)))
974 (inputs
975 `(("gnutls" ,gnutls)
976 ("libgcrypt" ,libgcrypt)
977 ("libltdl" ,libltdl)))
978 (native-inputs
979 `(("pkg-config" ,pkg-config)))
980 (home-page "https://www.aleksey.com/xmlsec/")
981 (synopsis "XML Security Library")
982 (description
983 "The XML Security Library is a C library based on Libxml2. It
984 supports XML security standards such as XML Signature, XML Encryption,
985 Canonical XML (part of Libxml2) and Exclusive Canonical XML (part of
986 Libxml2).")
987 (license (license:x11-style "file://COPYING"
988 "See 'COPYING' in the distribution."))))
989
990 (define-public xmlsec-nss
991 (package
992 (inherit xmlsec)
993 (name "xmlsec-nss")
994 (native-inputs
995 ;; For tests.
996 `(("nss:bin" ,nss "bin") ; for certutil
997 ,@(package-native-inputs xmlsec)))
998 (inputs
999 `(("nss" ,nss)
1000 ("libltdl" ,libltdl)))
1001 (synopsis "XML Security Library (using NSS instead of GnuTLS)")))
1002
1003 (define-public minixml
1004 (package
1005 (name "minixml")
1006 (version "2.12")
1007 (source (origin
1008 (method url-fetch)
1009 (uri (string-append "https://github.com/michaelrsweet/mxml/"
1010 "releases/download/v" version
1011 "/mxml-" version ".tar.gz"))
1012 (sha256
1013 (base32
1014 "0kq3wiycb40dcyswvajrqb1n5ffm5xcnsfxxaml92vhpl6x57yvb"))))
1015 (build-system gnu-build-system)
1016 (arguments
1017 `(#:configure-flags
1018 (list (string-append "LDFLAGS=-Wl,-rpath="
1019 (assoc-ref %outputs "out") "/lib"))
1020 #:tests? #f)) ; tests are run during build
1021 (home-page "https://michaelrsweet.github.io/mxml")
1022 (synopsis "Small XML parsing library")
1023 (description
1024 "Mini-XML is a small C library to read and write XML files and strings in
1025 UTF-8 and UTF-16 encoding.")
1026 ;; LGPL 2.0+ with additional exceptions for static linking
1027 (license license:lgpl2.0+)))
1028
1029 ;; TinyXML is an unmaintained piece of software, so the patches and build
1030 ;; system massaging have no upstream potential.
1031 (define-public tinyxml
1032 (package
1033 (name "tinyxml")
1034 (version "2.6.2")
1035 (source (origin
1036 (method url-fetch)
1037 (uri (string-append "mirror://sourceforge/tinyxml/tinyxml/"
1038 version "/tinyxml_"
1039 (string-join (string-split version #\.) "_")
1040 ".tar.gz"))
1041 (file-name (string-append name "-" version ".tar.gz"))
1042 (sha256
1043 (base32
1044 "14smciid19lvkxqznfig77jxn5s4iq3jpb47vh5a6zcaqp7gvg8m"))
1045 (patches (search-patches "tinyxml-use-stl.patch"))))
1046 (build-system gnu-build-system)
1047 ;; This library is missing *a lot* of the steps to make it usable, so we
1048 ;; have to add them here, like every other distro must do.
1049 (arguments
1050 `(#:phases
1051 (modify-phases %standard-phases
1052 (delete 'configure)
1053 (add-after 'build 'build-shared-library
1054 (lambda _
1055 (invoke "g++" "-Wall" "-O2" "-shared" "-fpic"
1056 "tinyxml.cpp" "tinyxmlerror.cpp"
1057 "tinyxmlparser.cpp" "tinystr.cpp"
1058 "-o" "libtinyxml.so")))
1059 (replace 'check
1060 (lambda _ (invoke "./xmltest")))
1061 (replace 'install
1062 (lambda* (#:key outputs #:allow-other-keys)
1063 (let* ((out (assoc-ref outputs "out"))
1064 (include (string-append out "/include"))
1065 (lib (string-append out "/lib"))
1066 (pkgconfig (string-append out "/lib/pkgconfig"))
1067 (doc (string-append out "/share/doc")))
1068 ;; Install libs and headers.
1069 (install-file "libtinyxml.so" lib)
1070 (install-file "tinystr.h" include)
1071 (install-file "tinyxml.h" include)
1072 ;; Generate and install pkg-config file.
1073 (mkdir-p pkgconfig)
1074 ;; Software such as Kodi expect this file to be present, but
1075 ;; it's not provided in the source code.
1076 (call-with-output-file (string-append pkgconfig "/tinyxml.pc")
1077 (lambda (port)
1078 (format port "prefix=~a
1079 exec_prefix=${prefix}
1080 libdir=${exec_prefix}/lib
1081 includedir=${prefix}/include
1082
1083 Name: TinyXML
1084 Description: A simple, small, C++ XML parser
1085 Version: ~a
1086 Libs: -L${libdir} -ltinyxml
1087 Cflags: -I${includedir}
1088 "
1089 out ,version)))
1090 ;; Install docs.
1091 (mkdir-p doc)
1092 (copy-recursively "docs" (string-append doc "tinyxml"))
1093 #t))))))
1094 (synopsis "Small XML parser for C++")
1095 (description "TinyXML is a small and simple XML parsing library for the
1096 C++ programming language.")
1097 (home-page "http://www.grinninglizard.com/tinyxml/index.html")
1098 (license license:zlib)))
1099
1100 (define-public tinyxml2
1101 (package
1102 (name "tinyxml2")
1103 (version "7.0.1")
1104 (source
1105 (origin
1106 (method git-fetch)
1107 (uri (git-reference
1108 (url "https://github.com/leethomason/tinyxml2.git")
1109 (commit version)))
1110 (file-name (git-file-name name version))
1111 (sha256
1112 (base32 "1sf6sch1kawrna2f9dc8f4xl836acqcddkghzdib0s7dl48m9r7m"))))
1113 (build-system cmake-build-system)
1114 (synopsis "Small XML parser for C++")
1115 (description "TinyXML2 is a small and simple XML parsing library for the
1116 C++ programming language.")
1117 (home-page "http://www.grinninglizard.com/tinyxml2/")
1118 (license license:zlib)))
1119
1120 (define-public xmlstarlet
1121 (package
1122 (name "xmlstarlet")
1123 (version "1.6.1")
1124 (source
1125 (origin
1126 (method url-fetch)
1127 (uri (string-append "mirror://sourceforge/xmlstar/xmlstarlet/"
1128 version "/xmlstarlet-" version ".tar.gz"))
1129 (sha256
1130 (base32
1131 "1jp737nvfcf6wyb54fla868yrr39kcbijijmjpyk4lrpyg23in0m"))))
1132 (build-system gnu-build-system)
1133 (arguments
1134 '(#:phases
1135 (modify-phases %standard-phases
1136 (add-before 'check 'drop-failing-tests
1137 (lambda _
1138 ;; FIXME: Why are these tests failing.
1139 (substitute* "Makefile"
1140 (("^examples/schema1\\\\") "\\")
1141 (("^examples/valid1\\\\") "\\"))
1142 #t)))))
1143 (inputs
1144 `(("libxslt" ,libxslt)
1145 ("libxml2" ,libxml2)))
1146 (home-page "http://xmlstar.sourceforge.net/")
1147 (synopsis "Command line XML toolkit")
1148 (description "XMLStarlet is a set of command line utilities which can be
1149 used to transform, query, validate, and edit XML documents. XPath is used to
1150 match and extract data, and elements can be added, deleted or modified using
1151 XSLT and EXSLT.")
1152 (license license:x11)))
1153
1154 (define-public html-xml-utils
1155 (package
1156 (name "html-xml-utils")
1157 (version "7.7")
1158 (source
1159 (origin
1160 (method url-fetch)
1161 (uri (string-append
1162 "https://www.w3.org/Tools/HTML-XML-utils/html-xml-utils-"
1163 version ".tar.gz"))
1164 (sha256
1165 (base32
1166 "1vwqp5q276j8di9zql3kygf31z2frp2c59yjqlrvvwcvccvkcdwr"))))
1167 (build-system gnu-build-system)
1168 (home-page "https://www.w3.org/Tools/HTML-XML-utils/")
1169 (synopsis "Command line utilities to manipulate HTML and XML files")
1170 (description "HTML-XML-utils provides a number of simple utilities for
1171 manipulating and converting HTML and XML files in various ways. The suite
1172 consists of the following tools:
1173
1174 @itemize
1175 @item @command{asc2xml} convert from @code{UTF-8} to @code{&#nnn;} entities
1176 @item @command{xml2asc} convert from @code{&#nnn;} entities to @code{UTF-8}
1177 @item @command{hxaddid} add IDs to selected elements
1178 @item @command{hxcite} replace bibliographic references by hyperlinks
1179 @item @command{hxcite} mkbib - expand references and create bibliography
1180 @item @command{hxclean} apply heuristics to correct an HTML file
1181 @item @command{hxcopy} copy an HTML file while preserving relative links
1182 @item @command{hxcount} count elements and attributes in HTML or XML files
1183 @item @command{hxextract} extract selected elements
1184 @item @command{hxincl} expand included HTML or XML files
1185 @item @command{hxindex} create an alphabetically sorted index
1186 @item @command{hxmkbib} create bibliography from a template
1187 @item @command{hxmultitoc} create a table of contents for a set of HTML files
1188 @item @command{hxname2id} move some @code{ID=} or @code{NAME=} from A
1189 elements to their parents
1190 @item @command{hxnormalize} pretty-print an HTML file
1191 @item @command{hxnsxml} convert output of hxxmlns back to normal XML
1192 @item @command{hxnum} number section headings in an HTML file
1193 @item @command{hxpipe} convert XML to a format easier to parse with Perl or AWK
1194 @item @command{hxprintlinks} number links and add table of URLs at end of an HTML file
1195 @item @command{hxprune} remove marked elements from an HTML file
1196 @item @command{hxref} generate cross-references
1197 @item @command{hxselect} extract elements that match a (CSS) selector
1198 @item @command{hxtoc} insert a table of contents in an HTML file
1199 @item @command{hxuncdata} replace CDATA sections by character entities
1200 @item @command{hxunent} replace HTML predefined character entities to @code{UTF-8}
1201 @item @command{hxunpipe} convert output of pipe back to XML format
1202 @item @command{hxunxmlns} replace \"global names\" by XML Namespace prefixes
1203 @item @command{hxwls} list links in an HTML file
1204 @item @command{hxxmlns} replace XML Namespace prefixes by \"global names\"
1205 @end itemize
1206 ")
1207 (license license:expat)))
1208
1209 (define-public xlsx2csv
1210 (package
1211 (name "xlsx2csv")
1212 (version "0.7.4")
1213 (source
1214 (origin
1215 (method git-fetch)
1216 (uri (git-reference
1217 (url "https://github.com/dilshod/xlsx2csv.git")
1218 (commit version)))
1219 (file-name (git-file-name name version))
1220 (sha256
1221 (base32 "168dm6p7w6pvgd87yb9hcxv9y0liv6mxgril202nfva68cp8y939"))))
1222 (build-system python-build-system)
1223 (arguments
1224 `(#:python ,python-2 ; use python-2 for the test script
1225 #:phases
1226 (modify-phases %standard-phases
1227 (replace 'check
1228 (lambda _
1229 (substitute* "test/run"
1230 ;; Run tests with `python' only.
1231 (("^(PYTHON_VERSIONS = ).*" all m) (string-append m "['']")))
1232 (invoke "test/run"))))))
1233 (home-page "https://github.com/dilshod/xlsx2csv")
1234 (synopsis "XLSX to CSV converter")
1235 (description
1236 "Xlsx2csv is a program to convert Microsoft Excel 2007 XML (XLSX and
1237 XLSM) format spreadsheets into plaintext @dfn{comma separated values} (CSV)
1238 files. It is designed to be fast and to handle large input files.")
1239 (license license:gpl2+)))
1240
1241 (define-public python-defusedxml
1242 (package
1243 (name "python-defusedxml")
1244 (version "0.6.0")
1245 (source
1246 (origin
1247 (method url-fetch)
1248 (uri (pypi-uri "defusedxml" version))
1249 (sha256
1250 (base32
1251 "1xbp8fivl3wlbyg2jrvs4lalaqv1xp9a9f29p75wdx2s2d6h717n"))))
1252 (build-system python-build-system)
1253 (home-page "https://bitbucket.org/tiran/defusedxml")
1254 (synopsis "XML bomb protection for Python stdlib modules")
1255 (description
1256 "Defusedxml provides XML bomb protection for Python stdlib modules.")
1257 (license license:psfl)))
1258
1259 (define-public python2-defusedxml
1260 (package-with-python2 python-defusedxml))
1261
1262 (define-public freexl
1263 (package
1264 (name "freexl")
1265 (version "1.0.5")
1266 (source (origin
1267 (method url-fetch)
1268 (uri (string-append "http://www.gaia-gis.it/gaia-sins/"
1269 name "-" version ".tar.gz"))
1270 (sha256
1271 (base32
1272 "03bmwq6hngmzwpqpb7c2amqlspz4q69iv96nlf0f5c0qs98b3j9x"))))
1273 (build-system gnu-build-system)
1274 (home-page "https://www.gaia-gis.it/fossil/freexl/index")
1275 (synopsis "Read Excel files")
1276 (description
1277 "FreeXL is a C library to extract valid data from within an Excel (.xls)
1278 spreadsheet.")
1279 ;; Any of these licenses may be picked.
1280 (license (list license:gpl2+
1281 license:lgpl2.1+
1282 license:mpl1.1))))
1283
1284 (define-public xerces-c
1285 (package
1286 (name "xerces-c")
1287 (version "3.1.4")
1288 (source (origin
1289 (method url-fetch)
1290 (uri (string-append "mirror://apache/xerces/c/3/sources/"
1291 "xerces-c-" version ".tar.xz"))
1292 (sha256
1293 (base32
1294 "0hb29c0smqlpxj0zdm09s983z5jx37szlliccnvgh0qq91wwqwwr"))))
1295 (build-system gnu-build-system)
1296 (arguments
1297 (let ((system (or (%current-target-system)
1298 (%current-system))))
1299 (if (string-prefix? "x86_64" system)
1300 '()
1301 '(#:configure-flags '("--disable-sse2")))))
1302 (native-inputs
1303 `(("perl" ,perl)))
1304 (home-page "http://xerces.apache.org/xerces-c/")
1305 (synopsis "Validating XML parser library for C++")
1306 (description "Xerces-C++ is a validating XML parser written in a portable
1307 subset of C++. Xerces-C++ makes it easy to give your application the ability
1308 to read and write XML data. A shared library is provided for parsing,
1309 generating, manipulating, and validating XML documents using the DOM, SAX, and
1310 SAX2 APIs.")
1311 (license license:asl2.0)))
1312
1313 (define-public java-simple-xml
1314 (package
1315 (name "java-simple-xml")
1316 (version "2.7.1")
1317 (source (origin
1318 (method url-fetch)
1319 (uri (string-append "mirror://sourceforge/simple/simple-xml-"
1320 version ".zip"))
1321 (sha256
1322 (base32
1323 "0w19k1awslmihpwsxwjbg89hv0vjhk4k3i0vrfchy3mqknd988y5"))
1324 (patches (search-patches "java-simple-xml-fix-tests.patch"))))
1325 (build-system ant-build-system)
1326 (arguments
1327 `(#:build-target "build"
1328 #:test-target "test"
1329 #:phases
1330 (modify-phases %standard-phases
1331 (replace 'install (install-jars "jar")))))
1332 (native-inputs
1333 `(("unzip" ,unzip)))
1334 (home-page "http://simple.sourceforge.net/")
1335 (synopsis "XML serialization framework for Java")
1336 (description "Simple is a high performance XML serialization and
1337 configuration framework for Java. Its goal is to provide an XML framework
1338 that enables rapid development of XML configuration and communication systems.
1339 This framework aids the development of XML systems with minimal effort and
1340 reduced errors. It offers full object serialization and deserialization,
1341 maintaining each reference encountered.")
1342 (license license:asl2.0)))
1343
1344 (define-public perl-xml-xpathengine
1345 (package
1346 (name "perl-xml-xpathengine")
1347 (version "0.14")
1348 (source (origin
1349 (method url-fetch)
1350 (uri (string-append "mirror://cpan/authors/id/M/MI/MIROD/"
1351 "XML-XPathEngine-" version ".tar.gz"))
1352 (sha256
1353 (base32
1354 "0r72na14bmsxfd16s9nlza155amqww0k8wsa9x2a3sqbpp5ppznj"))))
1355 (build-system perl-build-system)
1356 (home-page "https://metacpan.org/release/XML-XPathEngine")
1357 (synopsis "Re-usable XPath engine for DOM-like trees")
1358 (description
1359 "This module provides an XPath engine, that can be re-used by other
1360 modules/classes that implement trees.
1361
1362 In order to use the XPath engine, nodes in the user module need to mimic DOM
1363 nodes. The degree of similitude between the user tree and a DOM dictates how
1364 much of the XPath features can be used. A module implementing all of the DOM
1365 should be able to use this module very easily (you might need to add the
1366 @code{cmp} method on nodes in order to get ordered result sets).")
1367 (license license:perl-license)))
1368
1369 (define-public perl-tree-xpathengine
1370 (package
1371 (name "perl-tree-xpathengine")
1372 (version "0.05")
1373 (source (origin
1374 (method url-fetch)
1375 (uri (string-append "mirror://cpan/authors/id/M/MI/MIROD/"
1376 "Tree-XPathEngine-" version ".tar.gz"))
1377 (sha256
1378 (base32
1379 "1vbbw8wxm79r3xbra8narw1dqvm34510q67wbmg2zmj6zd1k06r9"))))
1380 (build-system perl-build-system)
1381 (home-page "https://metacpan.org/release/Tree-XPathEngine")
1382 (synopsis "Re-usable XPath engine")
1383 (description
1384 "This module provides an XPath engine, that can be re-used by other
1385 module/classes that implement trees. It is designed to be compatible with
1386 @code{Class::XPath}, ie it passes its tests if you replace @code{Class::XPath}
1387 by @code{Tree::XPathEngine}.")
1388 (license license:perl-license)))
1389
1390 (define-public perl-xml-filter-buffertext
1391 (package
1392 (name "perl-xml-filter-buffertext")
1393 (version "1.01")
1394 (source
1395 (origin
1396 (method url-fetch)
1397 (uri (string-append "mirror://cpan/authors/id/R/RB/RBERJON/"
1398 "XML-Filter-BufferText-" version ".tar.gz"))
1399 (sha256
1400 (base32
1401 "0p5785c1dsk6kdp505vapb5h54k8krrz8699hpgm9igf7dni5llg"))))
1402 (build-system perl-build-system)
1403 (propagated-inputs
1404 `(("perl-xml-sax-base" ,perl-xml-sax-base)))
1405 (home-page "https://metacpan.org/release/XML-Filter-BufferText")
1406 (synopsis "Filter to put all characters() in one event")
1407 (description "This is a very simple filter. One common cause of
1408 grief (and programmer error) is that XML parsers aren't required to provide
1409 character events in one chunk. They can, but are not forced to, and most
1410 don't. This filter does the trivial but oft-repeated task of putting all
1411 characters into a single event.")
1412 (license license:perl-license)))
1413
1414 (define-public perl-xml-sax-writer
1415 (package
1416 (name "perl-xml-sax-writer")
1417 (version "0.57")
1418 (source (origin
1419 (method url-fetch)
1420 (uri (string-append
1421 "mirror://cpan/authors/id/P/PE/PERIGRIN/"
1422 "XML-SAX-Writer-" version ".tar.gz"))
1423 (sha256
1424 (base32
1425 "1w1cd1ybxdvhmnxdlkywi3x5ka3g4md42kyynksjc09vyizd0q9x"))))
1426 (build-system perl-build-system)
1427 (propagated-inputs
1428 `(("perl-libxml" ,perl-libxml)
1429 ("perl-xml-filter-buffertext" ,perl-xml-filter-buffertext)
1430 ("perl-xml-namespacesupport" ,perl-xml-namespacesupport)
1431 ("perl-xml-sax-base" ,perl-xml-sax-base)))
1432 (home-page "https://metacpan.org/release/XML-SAX-Writer")
1433 (synopsis "SAX2 XML Writer")
1434 (description
1435 "This is an XML writer that understands SAX2. It is based on
1436 @code{XML::Handler::YAWriter}.")
1437 (license license:perl-license)))
1438
1439 (define-public perl-xml-handler-yawriter
1440 (package
1441 (name "perl-xml-handler-yawriter")
1442 (version "0.23")
1443 (source
1444 (origin
1445 (method url-fetch)
1446 (uri (string-append "mirror://cpan/authors/id/K/KR/KRAEHE/"
1447 "XML-Handler-YAWriter-" version ".tar.gz"))
1448 (sha256
1449 (base32
1450 "11d45a1sz862va9rry3p2m77pwvq3kpsvgwhc5ramh9mbszbnk77"))))
1451 (build-system perl-build-system)
1452 (propagated-inputs
1453 `(("perl-libxml" ,perl-libxml)))
1454 (home-page "https://metacpan.org/release/XML-Handler-YAWriter")
1455 (synopsis "Yet another Perl SAX XML Writer")
1456 (description "YAWriter implements Yet Another @code{XML::Handler::Writer}.
1457 It provides a flexible escaping technique and pretty printing.")
1458 (license license:perl-license)))
1459
1460 (define-public perl-xml-twig
1461 (package
1462 (name "perl-xml-twig")
1463 (version "3.52")
1464 (source (origin
1465 (method url-fetch)
1466 (uri (string-append "mirror://cpan/authors/id/M/MI/MIROD/"
1467 "XML-Twig-" version ".tar.gz"))
1468 (sha256
1469 (base32
1470 "1bc0hrz4jp6199hi29sdxmb9gyy45whla9hd19yqfasgq8k5ixzy"))))
1471 (build-system perl-build-system)
1472 (inputs
1473 `(("expat" ,expat)))
1474 (propagated-inputs
1475 `(("perl-html-tidy" ,perl-html-tidy)
1476 ("perl-html-tree" ,perl-html-tree)
1477 ("perl-io-captureoutput" ,perl-io-captureoutput)
1478 ("perl-io-string" ,perl-io-string)
1479 ("perl-io-stringy" ,perl-io-stringy)
1480 ("perl-libxml" ,perl-libxml)
1481 ("perl-xml-filter-buffertext" ,perl-xml-filter-buffertext)
1482 ("perl-xml-handler-yawriter" ,perl-xml-handler-yawriter)
1483 ("perl-xml-parser" ,perl-xml-parser)
1484 ("perl-xml-sax-writer" ,perl-xml-sax-writer)
1485 ("perl-xml-simple" ,perl-xml-simple)
1486 ("perl-xml-xpathengine" ,perl-xml-xpathengine)
1487 ("perl-test-pod" ,perl-test-pod)
1488 ("perl-tree-xpathengine" ,perl-tree-xpathengine)))
1489 (home-page "https://metacpan.org/release/XML-Twig")
1490 (synopsis "Perl module for processing huge XML documents in tree mode")
1491 (description "@code{XML::Twig} is an XML transformation module. Its
1492 strong points: can be used to process huge documents while still being in tree
1493 mode; not bound by DOM or SAX, so it is very perlish and offers a very
1494 comprehensive set of methods; simple to use; DWIMs as much as possible.
1495
1496 What it doesn't offer: full SAX support (it can export SAX, but only reads
1497 XML), full XPath support (unless you use @code{XML::Twig::XPath}), nor DOM
1498 support.")
1499 (license license:perl-license)))
1500
1501 ;; TODO: Debian builds several jars out of this: jaxp-1.4.jar,
1502 ;; xml-apis.jar and xml-apis-1.4.01.jar.
1503 (define-public java-jaxp
1504 (package
1505 (name "java-jaxp")
1506 (version "1.4.01")
1507 (source
1508 (origin
1509 (method url-fetch)
1510 (uri (string-append "mirror://apache/xerces/xml-commons/source/"
1511 "xml-commons-external-" version "-src.tar.gz"))
1512 (sha256
1513 (base32 "0rhq32a7dl9yik7zx9h0naz2iz068qgcdiayak91wp4wr26xhjyk"))))
1514 (build-system ant-build-system)
1515 (arguments
1516 `(#:jar-name "jaxp.jar"
1517 #:jdk ,icedtea-8
1518 #:source-dir ".."
1519 #:tests? #f)); no tests
1520 (home-page "http://xerces.apache.org/xml-commons/")
1521 (synopsis "Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX)")
1522 (description "Jaxp from the Apache XML Commons project is used by
1523 the Xerces-J XML parser and Xalan-J XSLT processor and specifies these APIs:
1524
1525 @itemize
1526 @item Document Object Model (DOM)
1527 @item Simple API for XML (SAX)
1528 @item Java APIs for XML Processing (JAXP)
1529 @item Transformation API for XML (TrAX)
1530 @item Document Object Model (DOM) Load and Save
1531 @item JSR 206 Java API for XML Processing
1532 @end itemize")
1533 (license (list license:asl2.0
1534 license:w3c ;; Files under org.w3c
1535 license:public-domain)))) ;; org.xml.sax
1536
1537 (define-public java-apache-xml-commons-resolver
1538 (package
1539 (name "java-apache-xml-commons-resolver")
1540 (version "1.2")
1541 (source
1542 (origin
1543 (method url-fetch)
1544 (uri (string-append "mirror://apache/xerces/xml-commons/"
1545 "xml-commons-resolver-" version ".tar.gz"))
1546 (sha256
1547 (base32 "1zhy4anc3fg9f8y348bj88vmab15aavrg6nf419ifb25asyygnsm"))
1548 (modules '((guix build utils)))
1549 (snippet
1550 '(begin
1551 (for-each delete-file (find-files "." ".*\\.(jar|zip)"))
1552 #t))))
1553 (build-system ant-build-system)
1554 (arguments
1555 `(#:jar-name (string-append "xml-resolver.jar")
1556 #:tests? #f)); no tests
1557 (inputs
1558 `(("java-junit" ,java-junit)))
1559 (home-page "http://xerces.apache.org/xml-commons/")
1560 (synopsis "Catalog-based entity and URI resolution")
1561 (description "The resolver class implements the full semantics of OASIS Technical
1562 Resolution 9401:1997 (Amendment 2 to TR 9401) catalogs and the 06 Aug
1563 2001 Committee Specification of OASIS XML Catalogs.
1564
1565 It also includes a framework of classes designed to read catalog files
1566 in a number of formats:
1567
1568 @itemize
1569 @item The plain-text flavor described by TR9401.
1570 @item The XCatalog XML format defined by John Cowan
1571 @item The XML Catalog format defined by the OASIS Entity Resolution
1572 Technical Committee.
1573 @end itemize")
1574 (license license:asl2.0)))
1575
1576 ;; Jaxen requires java-dom4j and java-xom that in turn require jaxen.
1577 ;; This package is a bootstrap version without dependencies on dom4j and xom.
1578 (define java-jaxen-bootstrap
1579 (package
1580 (name "java-jaxen-bootstrap")
1581 (version "1.1.6")
1582 (source (origin
1583 (method url-fetch)
1584 ;; No release on github
1585 (uri (string-append "https://repo1.maven.org/maven2/jaxen/jaxen/"
1586 version "/jaxen-" version "-sources.jar"))
1587 (sha256
1588 (base32
1589 "18pa8mks3gfhazmkyil8wsp6j1g1x7rggqxfv4k2mnixkrj5x1kx"))))
1590 (build-system ant-build-system)
1591 (arguments
1592 `(#:jar-name "jaxen.jar"
1593 #:source-dir "src"
1594 #:tests? #f; no tests
1595 #:phases
1596 (modify-phases %standard-phases
1597 (add-before 'build 'remove-dom4j
1598 (lambda _
1599 (delete-file-recursively "src/org/jaxen/dom4j")
1600 (delete-file-recursively "src/org/jaxen/xom")
1601 #t)))))
1602 (inputs
1603 `(("java-jdom" ,java-jdom)))
1604 (home-page "https://github.com/jaxen-xpath/jaxen")
1605 (synopsis "XPath library")
1606 (description "Jaxen is an XPath library written in Java. It is adaptable
1607 to many different object models, including DOM, XOM, dom4j, and JDOM. It is
1608 also possible to write adapters that treat non-XML trees such as compiled
1609 Java byte code or Java beans as XML, thus enabling you to query these trees
1610 with XPath too.")
1611 (license license:bsd-3)))
1612
1613 (define-public java-jaxen
1614 (package
1615 (inherit java-jaxen-bootstrap)
1616 (name "java-jaxen")
1617 (inputs
1618 `(("java-jdom" ,java-jdom)
1619 ("java-xom" ,java-xom)
1620 ("java-dom4j" ,java-dom4j)))))
1621
1622 (define-public java-xom
1623 (package
1624 (name "java-xom")
1625 (version "127")
1626 (source (origin
1627 (method git-fetch)
1628 (uri (git-reference
1629 (url "https://github.com/elharo/xom.git")
1630 (commit (string-append "XOM_" version))))
1631 (file-name (git-file-name name version))
1632 (sha256
1633 (base32
1634 "1jh6y03g5zzdhsb5jm6ms1xnamr460qmn96y3w6aw0ikfwqlg0bq"))
1635 (modules '((guix build utils)))
1636 (snippet
1637 '(begin
1638 (for-each delete-file
1639 (find-files "." "\\.jar$"))
1640 #t))))
1641 (build-system ant-build-system)
1642 (arguments
1643 `(#:jar-name "xom.jar"
1644 #:jdk ,icedtea-8
1645 #:tests? #f ; no tests
1646 #:phases
1647 (modify-phases %standard-phases
1648 (add-after 'unpack 'make-git-checkout-writable
1649 (lambda _
1650 (for-each make-file-writable (find-files "."))
1651 #t))
1652 (add-before 'configure 'fix-tagsoup-dep
1653 (lambda _
1654 ;; FIXME: Where is tagsoup source?
1655 (delete-file "src/nu/xom/tools/XHTMLJavaDoc.java")
1656 #t)))))
1657 (inputs
1658 `(("java-jdom" ,java-jdom)
1659 ("java-junit" ,java-junit)
1660 ("java-classpathx-servletapi" ,java-classpathx-servletapi)
1661 ("java-jaxen-bootstrap" ,java-jaxen-bootstrap)
1662 ("java-xerces" ,java-xerces)))
1663 (home-page "https://xom.nu/")
1664 (synopsis "XML Object Model")
1665 (description "XOM is a new XML Object Model for processing XML with Java
1666 that strives for correctness and simplicity.")
1667 ;; 2.1 only
1668 (license license:lgpl2.1)))
1669
1670 (define-public java-xsdlib
1671 (package
1672 (name "java-xsdlib")
1673 (version "2013.2")
1674 (source (origin
1675 (method url-fetch)
1676 (uri (string-append "http://central.maven.org/maven2/com/sun/msv/"
1677 "datatype/xsd/xsdlib/" version "/xsdlib-"
1678 version "-sources.jar"))
1679 (sha256
1680 (base32
1681 "185i48p1xp09wbq03i9zgfl701qa262rq46yf4cajzmk3336kqim"))))
1682 (build-system ant-build-system)
1683 (arguments
1684 `(#:tests? #f; no tests
1685 #:jar-name "xsdlib.jar"
1686 #:jdk ,icedtea-8))
1687 (inputs
1688 `(("java-xerces" ,java-xerces)))
1689 (home-page "http://central.maven.org/maven2/com/sun/msv/datatype/xsd/xsdlib/")
1690 (synopsis "Sun Multi-Schema Validator")
1691 (description "Xsdlib contains an implementation of sun.com.msv, an XML
1692 validator.")
1693 (license license:bsd-2)))
1694
1695 (define-public java-xpp3
1696 (package
1697 (name "java-xpp3")
1698 (version "1.1.4")
1699 (source (origin
1700 (method url-fetch)
1701 (uri (string-append "http://www.extreme.indiana.edu/dist/"
1702 "java-repository/xpp3/distributions/xpp3-"
1703 version "_src.tgz"))
1704 (sha256
1705 (base32
1706 "1b99zrhyij5qwyhilyjdl1ykxvhk902vsvflh6gx4fir8hfvdl5p"))
1707 (modules '((guix build utils)))
1708 (snippet
1709 '(begin ;; Delete bundled jar archives.
1710 (for-each delete-file (find-files "." ".*\\.jar"))
1711 #t))))
1712 (build-system ant-build-system)
1713 (arguments
1714 `(#:tests? #f; no tests
1715 #:build-target "jar"
1716 #:phases
1717 (modify-phases %standard-phases
1718 (replace 'install (install-jars "build")))))
1719 (home-page "http://www.extreme.indiana.edu/xgws/xsoap/xpp/")
1720 (synopsis "Streaming pull XML parser")
1721 (description "Xml Pull Parser (in short XPP) is a streaming pull XML
1722 parser and should be used when there is a need to process quickly and
1723 efficiently all input elements (for example in SOAP processors). This
1724 package is a stable XmlPull parsing engine that is based on ideas from XPP
1725 and in particular XPP2 but completely revised and rewritten to take the best
1726 advantage of JIT JVMs.")
1727 (license (license:non-copyleft "file://LICENSE.txt"))))
1728
1729 (define-public java-xmlpull2
1730 (package
1731 (name "java-xmlpull2")
1732 (version "2.1.10")
1733 (source (origin
1734 (method url-fetch)
1735 (uri (string-append "http://www.extreme.indiana.edu/xgws/xsoap/"
1736 "PullParser/PullParser" version ".tgz"))
1737 (sha256
1738 (base32
1739 "1kw9nhyqb7bzhn2zjbwlpi5vp5rzj89amzi3hadw2acyh2dmd0md"))
1740 (modules '((guix build utils)))
1741 (snippet
1742 '(begin ;; Delete bundled jar archives.
1743 (for-each delete-file (find-files "." ".*\\.jar"))
1744 #t))))
1745 (build-system ant-build-system)
1746 (arguments
1747 `(#:tests? #f; no tests
1748 #:build-target "impl"
1749 #:phases
1750 (modify-phases %standard-phases
1751 (replace 'install (install-jars "build/lib")))))
1752 (home-page "http://www.extreme.indiana.edu/xgws/xsoap/xpp/")
1753 (synopsis "Streaming pull XML parser")
1754 (description "Xml Pull Parser (in short XPP) is a streaming pull XML
1755 parser and should be used when there is a need to process quickly and
1756 efficiently all input elements (for example in SOAP processors). This
1757 package is in maintenance mode.")
1758 (license (license:non-copyleft "file:///LICENSE.txt"))))
1759
1760 (define-public java-dom4j
1761 (package
1762 (name "java-dom4j")
1763 (version "2.1.1")
1764 (source (origin
1765 (method git-fetch)
1766 (uri (git-reference
1767 (url "https://github.com/dom4j/dom4j.git")
1768 (commit (string-append "version-" version))))
1769 (file-name (git-file-name name version))
1770 (sha256
1771 (base32
1772 "0q907srj9v4hwicpcrn4slyld5npf2jv7hzchsgrg29q2xmbwkdl"))
1773 (modules '((guix build utils)))
1774 (snippet
1775 '(begin ;; Delete bundled jar archives.
1776 (for-each delete-file (find-files "." ".*\\.jar"))
1777 #t))))
1778 (build-system ant-build-system)
1779 (arguments
1780 `(#:jar-name "dom4j.jar"
1781 #:jdk ,icedtea-8
1782 #:source-dir "src/main/java"
1783 ;; FIXME: Requires xalan, but xalan depends on java-cup which has a
1784 ;; dependency on itself through jflex.
1785 #:tests? #f
1786 #:phases
1787 (modify-phases %standard-phases
1788 (add-before 'build 'copy-jaxen-sources
1789 ;; java-jaxen-bootstrap is not enough. These files have a circular
1790 ;; dependency and there is no subset of dom4j that would allow
1791 ;; breaking the circle.
1792 (lambda* (#:key inputs #:allow-other-keys)
1793 (mkdir-p "jaxen-sources")
1794 (with-directory-excursion "jaxen-sources"
1795 (system* "jar" "xf" (assoc-ref inputs "java-jaxen-sources")))
1796 (mkdir-p "src/main/java/org/jaxen/dom4j")
1797 (copy-file "jaxen-sources/org/jaxen/dom4j/DocumentNavigator.java"
1798 "src/main/java/org/jaxen/dom4j/DocumentNavigator.java")
1799 (copy-file "jaxen-sources/org/jaxen/dom4j/Dom4jXPath.java"
1800 "src/main/java/org/jaxen/dom4j/Dom4jXPath.java")
1801 #t))
1802 (add-before 'build 'fix-old-xpp2
1803 (lambda _
1804 ;; This package normally depends on xpp2 2.0, but version 2.1.10
1805 ;; is the only version whose source code is published.
1806 (substitute* "src/main/java/org/dom4j/xpp/ProxyXmlStartTag.java"
1807 (("public void resetStartTag")
1808 "public boolean removeAttributeByRawName(String name) {\n
1809 return false;\n
1810 }\n
1811 public boolean removeAttributeByName(String name, String name2) {\n
1812 return false;\n
1813 }\n\npublic void resetStartTag")
1814 (("Atttribute") "Attribute"))
1815 #t)))))
1816 (inputs
1817 `(("java-jaxen-bootstrap" ,java-jaxen-bootstrap)
1818 ("java-jaxen-sources" ,(package-source java-jaxen-bootstrap))
1819 ("java-xmlpull2" ,java-xmlpull2)
1820 ("java-xpp3" ,java-xpp3)
1821 ("java-xsdlib" ,java-xsdlib)))
1822 (native-inputs
1823 `(("java-testng" ,java-testng)
1824 ("java-xerces" ,java-xerces)))
1825 (home-page "https://dom4j.github.io/")
1826 (synopsis "Flexible XML framework for Java")
1827 (description "Dom4j is a flexible XML framework for Java. DOM4J works
1828 with DOM, SAX, XPath, and XSLT. It can parse large XML documents with very
1829 low memory footprint.")
1830 ;; some BSD-like 5-clause license
1831 (license (license:non-copyleft "file://LICENSE"))))
1832
1833 (define-public java-kxml2
1834 (package
1835 (name "java-kxml2")
1836 (version "2.4.2")
1837 (source (origin
1838 (method git-fetch)
1839 (uri (git-reference
1840 (url "https://github.com/stefanhaustein/kxml2.git")
1841 (commit (string-append "v" version))))
1842 (file-name (git-file-name name version))
1843 (sha256
1844 (base32
1845 "0g6d8c9r9sh3x04sf4wdpgwvhkqvk11k3kq9skx91i60h4vn01hg"))))
1846 (build-system ant-build-system)
1847 (arguments
1848 `(#:jar-name "kxml2.jar"
1849 #:source-dir "src/main/java"
1850 #:test-include (list "TestWb.java")
1851 ;; Test failure: it was expected to get an XML entity but got the
1852 ;; equivalent Unicode character instead.
1853 #:tests? #f
1854 #:phases
1855 (modify-phases %standard-phases
1856 (add-after 'unpack 'make-git-checkout-writable
1857 (lambda _
1858 (for-each make-file-writable (find-files "."))
1859 #t))
1860 (add-before 'build 'copy-resources
1861 (lambda _
1862 (copy-recursively "src/main/resources" "build/classes")
1863 #t)))))
1864 (inputs
1865 `(("java-xpp3" ,java-xpp3)))
1866 (native-inputs
1867 `(("java-junit" ,java-junit)))
1868 (home-page "http://kxml.org")
1869 (synopsis "XML pull parser")
1870 (description "kXML is a small XML pull parser, specially designed for
1871 constrained environments such as Applets, Personal Java or devices compliant
1872 with the Mobile Information Device Profile (MIDP).")
1873 (license license:expat)))
1874
1875 (define-public java-stax
1876 (package
1877 (name "java-stax")
1878 (version "1.2.0")
1879 (source (origin
1880 (method url-fetch)
1881 (uri (string-append "https://repo1.maven.org/maven2/stax/stax/"
1882 version "/stax-" version "-sources.jar"))
1883 (sha256
1884 (base32
1885 "04ba4qvbrps45j8bldbakxq31k7gjlsay9pppa9yn13fr00q586z"))))
1886 (build-system ant-build-system)
1887 (arguments
1888 `(#:jar-name "stax.jar"
1889 #:tests? #f; no tests
1890 #:phases
1891 (modify-phases %standard-phases
1892 (add-before 'configure 'fix-utf8
1893 (lambda _
1894 ;; This file is ISO-8859-1 but java expects UTF-8.
1895 ;; Remove special characters in comments.
1896 (with-fluids ((%default-port-encoding "ISO-8859-1"))
1897 (substitute* "src/com/wutka/dtd/Scanner.java"
1898 (("//.*") "\n")))
1899 #t)))))
1900 (home-page "https://repo1.maven.org/maven2/stax/stax/")
1901 (synopsis "Streaming API for XML")
1902 (description "This package provides the reference implementation of the
1903 @dfn{Streaming API for XML} (StAX). It is used for streaming XML data to
1904 and from a Java application. It provides a standard pull parser interface.")
1905 (license license:asl2.0)))
1906
1907 (define-public java-jettison
1908 (package
1909 (name "java-jettison")
1910 (version "1.3.7")
1911 (source (origin
1912 (method git-fetch)
1913 (uri (git-reference
1914 (url "https://github.com/codehaus/jettison.git")
1915 (commit (string-append "jettison-" version))))
1916 (file-name (git-file-name name version))
1917 (sha256
1918 (base32
1919 "15sydmi5chdh4126qc7v8bsrp7fp4ldaya8a05iby4pq2324q0qw"))))
1920 (build-system ant-build-system)
1921 (arguments
1922 `(#:jar-name "jettison.jar"
1923 #:source-dir "src/main/java"
1924 #:test-exclude (list "**/Abstract*.java"
1925 ;; Abstract classes
1926 "**/DOMTest.java"
1927 "**/BadgerFishDOMTest.java"
1928 "**/MappedDOMTest.java")))
1929 (native-inputs
1930 `(("java-junit" ,java-junit)))
1931 (home-page "https://github.com/codehaus/jettison")
1932 (synopsis "StAX implementation for JSON")
1933 (description "Jettison is a Java library for converting XML to JSON and
1934 vice-versa with the help of the @dfn{Streaming API for XML} (StAX). It
1935 implements @code{XMLStreamWriter} and @code{XMLStreamReader} and supports
1936 @code{Mapped} and @code{BadgerFish} conventions.")
1937 (license license:asl2.0)))
1938
1939 (define-public java-jdom2
1940 (package
1941 (name "java-jdom")
1942 (version "2.0.6")
1943 (source (origin
1944 (method git-fetch)
1945 (uri (git-reference
1946 (url "https://github.com/hunterhacker/jdom.git")
1947 (commit (string-append "JDOM-" version))))
1948 (file-name (git-file-name name version))
1949 (sha256
1950 (base32
1951 "14vv1kxrsdvwi4cz3rx6r48w5y6fvk9cymil8qhvxwp56xxrgxiq"))))
1952 (build-system ant-build-system)
1953 (arguments
1954 `(#:build-target "package"
1955 #:tests? #f ; tests are run as part of the build process
1956 #:phases
1957 (modify-phases %standard-phases
1958 (replace 'install
1959 (install-jars "build")))))
1960 (home-page "http://jdom.org/")
1961 (synopsis "Access, manipulate, and output XML data")
1962 (description "Jdom is a Java-based solution for accessing, manipulating, and
1963 outputting XML data from Java code.")
1964 (license license:bsd-4)))
1965
1966 (define-public java-xstream
1967 (package
1968 (name "java-xstream")
1969 (version "1.4.10")
1970 (source
1971 (origin
1972 (method git-fetch)
1973 (uri (git-reference
1974 (url "https://github.com/x-stream/xstream.git")
1975 (commit (string-append
1976 "XSTREAM_"
1977 (string-map (lambda (x) (if (eq? x #\.) #\_ x))
1978 version)))))
1979 (file-name (git-file-name name version))
1980 (sha256
1981 (base32 "12m2bw8bapdc1w0pni9wl5hh2y8jfdgcvxd464jl9917dsp3ai2n"))))
1982 (build-system ant-build-system)
1983 (arguments
1984 `(#:jar-name "xstream.jar"
1985 ;; FIXME: Tests are not in a java subdirectory as assumed by ant-build-system.
1986 #:tests? #f
1987 #:jdk ,icedtea-8
1988 #:source-dir "xstream/src/java"))
1989 (inputs
1990 `(("java-jdom" ,java-jdom)
1991 ("java-jdom2" ,java-jdom2)
1992 ("java-cglib" ,java-cglib)
1993 ("java-joda-time" ,java-joda-time)
1994 ("java-jettison" ,java-jettison)
1995 ("java-xom" ,java-xom)
1996 ("java-xpp3" ,java-xpp3)
1997 ("java-dom4j" ,java-dom4j)
1998 ("java-stax2-api" ,java-stax2-api)
1999 ("java-woodstox-core" ,java-woodstox-core)
2000 ("java-kxml2" ,java-kxml2)
2001 ("java-stax" ,java-stax)))
2002 (home-page "https://x-stream.github.io")
2003 (synopsis "XML serialization library")
2004 (description "XStream is a simple library to serialize Java objects to XML
2005 and back again.")
2006 (license license:bsd-3)))
2007
2008 (define-public xmlrpc-c
2009 (package
2010 (name "xmlrpc-c")
2011 (version "1.43.08")
2012 (source (origin
2013 (method url-fetch)
2014 (uri (string-append "mirror://sourceforge/xmlrpc-c/Xmlrpc-c%20Super%20Stable/"
2015 version "/xmlrpc-c-" version ".tgz"))
2016 (sha256
2017 (base32
2018 "18zwbj6i2hpcn5riiyp8i6rml0sfv60dd7phw1x8g4r4lj2bbxf9"))))
2019 (build-system gnu-build-system)
2020 (inputs
2021 `(("curl" ,curl)))
2022 (native-inputs
2023 `(;; For tools, if ever needed.
2024 ("perl" ,perl)))
2025 (arguments
2026 `(#:make-flags ; Add $libdir to the RUNPATH of all the executables.
2027 (list (string-append "LDFLAGS_PERSONAL=-Wl,-rpath=" %output "/lib"))
2028 #:phases
2029 (modify-phases %standard-phases
2030 (add-after 'unpack 'fix-/bin/sh-in-tests
2031 (lambda _
2032 (substitute* "GNUmakefile"
2033 (("#! /bin/sh") (which "sh")))
2034 #t)))))
2035 (home-page "http://xmlrpc-c.sourceforge.net/")
2036 (synopsis "Lightweight RPC library based on XML and HTTP")
2037 (description
2038 "XML-RPC is a quick-and-easy way to make procedure calls over the Internet.
2039 It converts the procedure call into an XML document, sends it to a remote
2040 server using HTTP, and gets back the response as XML. This library provides a
2041 modular implementation of XML-RPC for C and C++.")
2042 (license (list license:psfl license:expat))))
2043
2044 (define-public python-xmltodict
2045 (package
2046 (name "python-xmltodict")
2047 (version "0.12.0")
2048 (source
2049 (origin
2050 (method url-fetch)
2051 (uri (pypi-uri "xmltodict" version))
2052 (sha256
2053 (base32
2054 "08cadlb9vsb4pmzc99lz3a2lx6qcfazyvgk10pcqijvyxlwcdn2h"))))
2055 (build-system python-build-system)
2056 (native-inputs
2057 `(("python-coverage" ,python-coverage)
2058 ("python-nose" ,python-nose)))
2059 (home-page "https://github.com/martinblech/xmltodict")
2060 (synopsis "Work with XML like you are working with JSON")
2061 (description "This package provides a Python library to convert XML to
2062 @code{OrderedDict}.")
2063 (license license:expat)))