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