gnu: Use 'modify-phases' syntax.
[jackhill/guix/guix.git] / gnu / packages / perl.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
23212bf9 2;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
15974e63 3;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
2fa21791 4;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
97b07aaa 5;;; Copyright © 2015, 2016 Eric Bavier <bavier@member.fsf.org>
f187b2a2 6;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
ce3ac667 7;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
65829fec 8;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
0e05269a 9;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
8a28e717 10;;; Coypright © 2016 ng0 <ng0@libertad.pw>
d2d6cd67 11;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
091963c6 12;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
176345c5 13;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
16c6a01e 14;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
ce195ba1 15;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
811f4f5b 16;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
f9f67fcb 17;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
c9d7cd47 18;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
13d73c42 19;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
c44899a2 20;;;
233e7676 21;;; This file is part of GNU Guix.
c44899a2 22;;;
233e7676 23;;; GNU Guix is free software; you can redistribute it and/or modify it
c44899a2
LC
24;;; under the terms of the GNU General Public License as published by
25;;; the Free Software Foundation; either version 3 of the License, or (at
26;;; your option) any later version.
27;;;
233e7676 28;;; GNU Guix is distributed in the hope that it will be useful, but
c44899a2
LC
29;;; WITHOUT ANY WARRANTY; without even the implied warranty of
30;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31;;; GNU General Public License for more details.
32;;;
33;;; You should have received a copy of the GNU General Public License
233e7676 34;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
c44899a2 35
1ffa7090 36(define-module (gnu packages perl)
4a44e743 37 #:use-module (guix licenses)
59a43334 38 #:use-module (gnu packages)
c44899a2 39 #:use-module (guix packages)
87f5d366 40 #:use-module (guix download)
15974e63 41 #:use-module (guix build-system gnu)
72f8646e 42 #:use-module (guix build-system perl)
38e29d03
MB
43 #:use-module (gnu packages perl-web)
44 #:use-module (gnu packages pkg-config))
c44899a2 45
73fc71ba
EB
46;;;
47;;; Please: Try to add new module packages in alphabetic order.
48;;;
49
50\f
c44899a2
LC
51(define-public perl
52 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
53 (package
54 (name "perl")
f6580548 55 (version "5.26.0")
c44899a2 56 (source (origin
87f5d366 57 (method url-fetch)
966a543b 58 (uri (string-append "mirror://cpan/src/5.0/perl-"
c44899a2
LC
59 version ".tar.gz"))
60 (sha256
61 (base32
f6580548 62 "0zxn9hd7mqgq06ikyi6k70ngbvjf01z1paw0jd25byyl0rlwdrzb"))
fc1adab1 63 (patches (search-patches
c67d587f 64 "perl-file-path-CVE-2017-6512.patch"
fc1adab1
AK
65 "perl-no-sys-dirs.patch"
66 "perl-autosplit-default-time.patch"
fc1adab1 67 "perl-deterministic-ordering.patch"
a3d6e1f4 68 "perl-reproducible-build-date.patch"))))
c44899a2
LC
69 (build-system gnu-build-system)
70 (arguments
12abb19d 71 '(#:tests? #f
56ee1d20
BW
72 #:configure-flags
73 (let ((out (assoc-ref %outputs "out"))
74 (libc (assoc-ref %build-inputs "libc")))
75 (list
76 (string-append "-Dprefix=" out)
77 (string-append "-Dman1dir=" out "/share/man/man1")
78 (string-append "-Dman3dir=" out "/share/man/man3")
79 "-de" "-Dcc=gcc"
80 "-Uinstallusrbinperl"
81 "-Dinstallstyle=lib/perl5"
82 "-Duseshrplib"
83 (string-append "-Dlocincpth=" libc "/include")
156c0810
BW
84 (string-append "-Dloclibpth=" libc "/lib")
85 "-Dusethreads"))
12abb19d 86 #:phases
f683d67d 87 (modify-phases %standard-phases
9f2989b6
BW
88 (add-before 'configure 'setup-configure
89 (lambda _
90 ;; Use the right path for `pwd'.
91 (substitute* "dist/PathTools/Cwd.pm"
92 (("/bin/pwd")
93 (which "pwd")))
94
95 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
96 ;; <bits/string3.h>.
97 (substitute* "cflags.SH"
98 (("-std=c89")
99 "-std=gnu89"))
100 #t))
56ee1d20
BW
101 (replace 'configure
102 (lambda* (#:key configure-flags #:allow-other-keys)
103 (format #t "Perl configure flags: ~s~%" configure-flags)
104 (zero? (apply system* "./Configure" configure-flags))))
696062b1
LC
105 (add-before
106 'strip 'make-shared-objects-writable
107 (lambda* (#:key outputs #:allow-other-keys)
108 ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them
109 ;; writable so that 'strip' actually strips them.
110 (let* ((out (assoc-ref outputs "out"))
111 (lib (string-append out "/lib")))
112 (for-each (lambda (dso)
113 (chmod dso #o755))
81cea47d
LC
114 (find-files lib "\\.so$")))))
115
116 (add-after 'install 'remove-extra-references
117 (lambda* (#:key inputs outputs #:allow-other-keys)
118 (let* ((out (assoc-ref outputs "out"))
119 (libc (assoc-ref inputs "libc"))
120 (config1 (car (find-files (string-append out "/lib/perl5")
121 "^Config_heavy\\.pl$")))
122 (config2 (find-files (string-append out "/lib/perl5")
123 "^Config\\.pm$")))
124 ;; Force the library search path to contain only libc because
125 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
126 ;; want to keep a reference to everything that's in
127 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
128 ;; etc.)
129 (substitute* config1
130 (("^incpth=.*$")
131 (string-append "incpth='" libc "/include'\n"))
132 (("^(libpth|plibpth|libspath)=.*$" _ variable)
133 (string-append variable "='" libc "/lib'\n")))
134
135 (for-each (lambda (file)
136 (substitute* config2
137 (("libpth => .*$")
138 (string-append "libpth => '" libc
139 "/lib',\n"))))
140 config2)
141 #t))))))
a18eda27
LC
142 (native-search-paths (list (search-path-specification
143 (variable "PERL5LIB")
af070955 144 (files '("lib/perl5/site_perl")))))
c44899a2
LC
145 (synopsis "Implementation of the Perl programming language")
146 (description
147 "Perl 5 is a highly capable, feature-rich programming language with over
14824 years of development.")
149 (home-page "http://www.perl.org/")
4a44e743 150 (license gpl1+))) ; or "Artistic"
15974e63 151
606f2f82
EB
152(define-public perl-algorithm-c3
153 (package
154 (name "perl-algorithm-c3")
155 (version "0.10")
156 (source
157 (origin
158 (method url-fetch)
159 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
160 "Algorithm-C3-" version ".tar.gz"))
161 (sha256
162 (base32
163 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
164 (build-system perl-build-system)
165 (home-page "http://search.cpan.org/dist/Algorithm-C3")
166 (synopsis "Module for merging hierarchies using the C3 algorithm")
167 (description "This module implements the C3 algorithm, which aims to
168provide a sane method resolution order under multiple inheritance.")
169 (license (package-license perl))))
170
0d3ec495
EB
171(define-public perl-algorithm-diff
172 (package
173 (name "perl-algorithm-diff")
174 (version "1.1903")
175 (source
176 (origin
177 (method url-fetch)
178 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
179 "Algorithm-Diff-" version ".tar.gz"))
180 (sha256
181 (base32
182 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
183 (build-system perl-build-system)
184 (home-page "http://search.cpan.org/dist/Algorithm-Diff")
185 (synopsis "Compute differences between two files or lists")
186 (description "This is a module for computing the difference between two
187files, two strings, or any other two lists of things. It uses an intelligent
188algorithm similar to (or identical to) the one used by the Unix \"diff\"
189program. It is guaranteed to find the *smallest possible* set of
190differences.")
191 (license (package-license perl))))
192
eb81114c
EB
193(define-public perl-aliased
194 (package
195 (name "perl-aliased")
196 (version "0.34")
197 (source
198 (origin
199 (method url-fetch)
200 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
201 "aliased-" version ".tar.gz"))
202 (sha256
203 (base32
204 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
205 (build-system perl-build-system)
a2190ccc 206 (native-inputs `(("perl-module-build" ,perl-module-build)))
eb81114c
EB
207 (home-page "http://search.cpan.org/dist/aliased")
208 (synopsis "Use shorter versions of class names")
209 (description "The alias module loads the class you specify and exports
210into your namespace a subroutine that returns the class name. You can
211explicitly alias the class to another name or, if you prefer, you can do so
212implicitly.")
213 (license (package-license perl))))
214
68e31f81
MB
215(define-public perl-any-moose
216 (package
217 (name "perl-any-moose")
218 (version "0.27")
219 (source (origin
220 (method url-fetch)
221 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
222 "Any-Moose-" version ".tar.gz"))
223 (sha256
224 (base32
225 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
226 (build-system perl-build-system)
227 (native-inputs
228 `(("perl-mouse" ,perl-mouse)
229 ("perl-moose" ,perl-moose)))
230 (home-page "http://search.cpan.org/dist/Any-Moose")
231 (synopsis "Transparently use Moose or Mouse modules")
232 (description
233 "This module facilitates using @code{Moose} or @code{Mouse} modules
234without changing the code. By default, Mouse will be provided to libraries,
235unless Moose is already loaded, or explicitly requested by the end-user. End
236users can force the decision of which backend to use by setting the environment
237variable ANY_MOOSE to be Moose or Mouse.")
238 (license (package-license perl))))
239
b3d9779c
EB
240(define-public perl-appconfig
241 (package
242 (name "perl-appconfig")
243 (version "1.71")
244 (source
245 (origin
246 (method url-fetch)
247 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
248 "AppConfig-" version ".tar.gz"))
249 (sha256
250 (base32
251 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
252 (build-system perl-build-system)
253 (native-inputs
254 `(("perl-test-pod" ,perl-test-pod)))
255 (home-page "http://search.cpan.org/dist/AppConfig")
256 (synopsis "Configuration files and command line parsing")
257 (description "AppConfig is a bundle of Perl5 modules for reading
258configuration files and parsing command line arguments.")
259 (license (package-license perl))))
260
ba5324c3
JD
261(define-public perl-archive-zip
262 (package
263 (name "perl-archive-zip")
264 (version "1.30")
e881752c 265 (source
ba5324c3
JD
266 (origin
267 (method url-fetch)
268 (uri (string-append
e881752c 269 "mirror://cpan/authors/id/A/AD/ADAMK/Archive-Zip-"
ba5324c3
JD
270 version ".tar.gz"))
271 (sha256
272 (base32
273 "0633zah5z9njiqnvy3vh42fjymncmil1jdfb7d18w8xpfzzp5d7q"))))
274 (build-system perl-build-system)
275 (synopsis "Perl API to zip files")
276 (description "The Archive::Zip module allows a Perl program to create,
277manipulate, read, and write Zip archive files.")
278 (home-page "http://search.cpan.org/~phred/Archive-Zip-1.37/lib/Archive/Zip.pm")
279 (license (package-license perl))))
05093579 280
67cc6d73
BW
281(define-public perl-array-utils
282 (package
283 (name "perl-array-utils")
284 (version "0.5")
285 (source
286 (origin
287 (method url-fetch)
288 (uri (string-append
289 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
290 version
291 ".tar.gz"))
292 (sha256
293 (base32
294 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
295 (build-system perl-build-system)
296 (home-page "http://search.cpan.org/dist/Array-Utils")
297 (synopsis "Small utils for array manipulation")
298 (description "@code{Array::Utils} is a small pure-perl module containing
299list manipulation routines.")
300 (license (package-license perl))))
301
811f4f5b
MB
302(define-public perl-async-interrupt
303 (package
304 (name "perl-async-interrupt")
305 (version "1.21")
306 (source (origin
307 (method url-fetch)
308 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
309 "Async-Interrupt-" version ".tar.gz"))
310 (sha256
311 (base32
312 "092zs7b72f8q109c3z829nqfgwqghp3nhw44c0gcyhacbb4wgpk3"))))
313 (build-system perl-build-system)
314 (propagated-inputs
315 `(("perl-common-sense" ,perl-common-sense)))
316 (home-page "http://search.cpan.org/dist/Async-Interrupt")
317 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
318 (description
319 "@code{Async::Interrupt} implements a single feature only of interest
320to advanced perl modules, namely asynchronous interruptions (think \"UNIX
321signals\", which are very similar).
322
323Sometimes, modules wish to run code asynchronously (in another thread,
324or from a signal handler), and then signal the perl interpreter on
325certain events. One common way is to write some data to a pipe and use
326an event handling toolkit to watch for I/O events. Another way is to
327send a signal. Those methods are slow, and in the case of a pipe, also
328not asynchronous - it won't interrupt a running perl interpreter.
329
330This module implements asynchronous notifications that enable you to
331signal running perl code from another thread, asynchronously, and
332sometimes even without using a single syscall.")
333 (license (package-license perl))))
334
3f1df54c
RW
335(define-public perl-autovivification
336 (package
337 (name "perl-autovivification")
338 (version "0.16")
339 (source
340 (origin
341 (method url-fetch)
342 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
343 "autovivification-" version ".tar.gz"))
344 (sha256
345 (base32
346 "1422kw9fknv7rbjkgdfflg1q3mb69d3yryszp38dn0bgzkqhwkc1"))))
347 (build-system perl-build-system)
348 (home-page "http://search.cpan.org/dist/autovivification")
349 (synopsis "Lexically disable autovivification")
350 (description "When an undefined variable is dereferenced, it gets silently
351upgraded to an array or hash reference (depending of the type of the
352dereferencing). This behaviour is called autovivification and usually does
353what you mean but it may be unnatural or surprising because your variables get
354populated behind your back. This is especially true when several levels of
355dereferencing are involved, in which case all levels are vivified up to the
356last, or when it happens in intuitively read-only constructs like
357@code{exists}. The pragma provided by this package lets you disable
358autovivification for some constructs and optionally throws a warning or an
359error when it would have happened.")
360 (license (package-license perl))))
361
f902e4bc
EB
362(define-public perl-base
363 (package
364 (name "perl-base")
365 (version "2.18")
366 (source
367 (origin
368 (method url-fetch)
369 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
370 "base-" version ".tar.gz"))
371 (sha256
372 (base32
373 "01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
374 (build-system perl-build-system)
375 (home-page "http://search.cpan.org/dist/base")
376 (synopsis "Establish an ISA relationship with base classes at compile time")
377 (description "Allows you to both load one or more modules, while setting
378up inheritance from those modules at the same time. Unless you are using the
379fields pragma, consider this module discouraged in favor of the lighter-weight
380parent.")
381 (license (package-license perl)))) ;See README
382
0e2f7cfc
EB
383(define-public perl-b-hooks-endofscope
384 (package
385 (name "perl-b-hooks-endofscope")
ee6d7162 386 (version "0.21")
0e2f7cfc
EB
387 (source
388 (origin
389 (method url-fetch)
390 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
391 "B-Hooks-EndOfScope-" version ".tar.gz"))
392 (sha256
393 (base32
ee6d7162 394 "0b70vbpabsy9ia366k330cz1zbdyb1pwhb0l7j28pmpih045iwwh"))))
0e2f7cfc
EB
395 (build-system perl-build-system)
396 (propagated-inputs
397 `(("perl-module-runtime" ,perl-module-runtime)
398 ("perl-module-implementation" ,perl-module-implementation)
399 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
400 ("perl-variable-magic" ,perl-variable-magic)))
401 (home-page "http://search.cpan.org/dist/B-Hooks-EndOfScope")
402 (synopsis "Execute code after a scope finished compilation")
403 (description "This module allows you to execute code when perl finished
404compiling the surrounding scope.")
405 (license (package-license perl))))
406
2aa46624
EB
407(define-public perl-benchmark-timer
408 (package
409 (name "perl-benchmark-timer")
410 (version "0.7102")
411 (source (origin
412 (method url-fetch)
413 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
414 "Benchmark-Timer-" version ".tar.gz"))
415 (sha256
416 (base32
417 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
418 (build-system perl-build-system)
9dab5017
MB
419 (native-inputs
420 `(("perl-module-install" ,perl-module-install)))
2aa46624
EB
421 ;; The optional input module Statistics::PointEstimation (from
422 ;; Statistics-TTest) lists no license.
423 (synopsis "Benchmarking with statistical confidence")
424 (description
425 "The Benchmark::Timer class allows you to time portions of code
426conveniently, as well as benchmark code by allowing timings of repeated
427trials. It is perfect for when you need more precise information about the
428running time of portions of your code than the Benchmark module will give you,
429but don't want to go all out and profile your code.")
430 (home-page (string-append "http://search.cpan.org/~dcoppit/"
431 "Benchmark-Timer-" version))
432 (license gpl2)))
63edfca4 433
bb90ae0c
EB
434(define-public perl-bit-vector
435 (package
436 (name "perl-bit-vector")
437 (version "7.4")
438 (source
439 (origin
440 (method url-fetch)
441 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
442 "Bit-Vector-" version ".tar.gz"))
443 (sha256
444 (base32
445 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
446 (build-system perl-build-system)
447 (propagated-inputs
448 `(("perl-carp-clan" ,perl-carp-clan)))
449 (home-page "http://search.cpan.org/dist/Bit-Vector")
450 (synopsis "Bit vector library")
451 (description "Bit::Vector is an efficient C library which allows you to
452handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
453matrices, all of arbitrary sizes. The package also includes an
454object-oriented Perl module for accessing the C library from Perl, and
455optionally features overloaded operators for maximum ease of use. The C
456library can nevertheless be used stand-alone, without Perl.")
457 (license (list (package-license perl) lgpl2.0+))))
458
85690ec1
EB
459(define-public perl-boolean
460 (package
461 (name "perl-boolean")
462 (version "0.45")
463 (source
464 (origin
465 (method url-fetch)
466 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
467 "boolean-" version ".tar.gz"))
468 (sha256
469 (base32
470 "18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"))))
471 (build-system perl-build-system)
472 (home-page "http://search.cpan.org/dist/boolean")
473 (synopsis "Boolean support for Perl")
474 (description "This module provides basic Boolean support, by defining two
475special objects: true and false.")
476 (license (package-license perl))))
477
a3f5beb7
RW
478(define-public perl-business-isbn-data
479 (package
480 (name "perl-business-isbn-data")
481 (version "20140910.003")
482 (source
483 (origin
484 (method url-fetch)
485 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
486 "Business-ISBN-Data-" version ".tar.gz"))
487 (sha256
488 (base32
489 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
490 (build-system perl-build-system)
491 (home-page "http://search.cpan.org/dist/Business-ISBN-Data")
492 (synopsis "Data files for Business::ISBN")
493 (description "This package provides a data pack for @code{Business::ISBN}.
494These data are generated from the RangeMessage.xml file provided by the ISBN
495Agency.")
496 (license (package-license perl))))
497
72f8646e
RW
498(define-public perl-business-isbn
499 (package
500 (name "perl-business-isbn")
501 (version "3.003")
502 (source
503 (origin
504 (method url-fetch)
505 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
506 "Business-ISBN-" version ".tar.gz"))
507 (sha256
508 (base32
509 "1i2bxzqkki257rqbswa4ryj1grmwa5s47wrxln2ff5mha1ry31gm"))))
510 (build-system perl-build-system)
511 (propagated-inputs
512 `(("perl-business-isbn-data" ,perl-business-isbn-data)
513 ("perl-mojolicious" ,perl-mojolicious)))
514 (home-page "http://search.cpan.org/dist/Business-ISBN")
515 (synopsis "Work with International Standard Book Numbers")
516 (description "This modules provides tools to deal with International
517Standard Book Numbers, including ISBN-10 and ISBN-13.")
518 (license artistic2.0)))
519
e0b6accf
RW
520(define-public perl-business-issn
521 (package
522 (name "perl-business-issn")
523 (version "0.91")
524 (source
525 (origin
526 (method url-fetch)
527 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
528 "Business-ISSN-" version ".tar.gz"))
529 (sha256
530 (base32
531 "1dfnm7h7lbqj356700ldlmgbr51v6hyjn1qig2bb4ysl1wn1jnzi"))))
532 (build-system perl-build-system)
533 (home-page "http://search.cpan.org/dist/Business-ISSN")
534 (synopsis "Work with International Standard Serial Numbers")
535 (description "This modules provides tools to deal with International
536Standard Serial Numbers.")
537 (license (package-license perl))))
538
adbf4b94
RW
539(define-public perl-business-ismn
540 (package
541 (name "perl-business-ismn")
542 (version "1.13")
543 (source
544 (origin
545 (method url-fetch)
546 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
547 "Business-ISMN-" version ".tar.gz"))
548 (sha256
549 (base32
550 "0cm1v75axg4gp6cnbyavmnqqjscsxh7nc60vcbw34rqivvf9idc9"))))
551 (build-system perl-build-system)
552 (native-inputs
553 `(("perl-tie-cycle" ,perl-tie-cycle)))
554 (home-page "http://search.cpan.org/dist/Business-ISMN")
555 (synopsis "Work with International Standard Music Numbers")
556 (description "This modules provides tools to deal with International
557Standard Music Numbers.")
558 (license (package-license perl))))
559
97c821e0
EB
560(define-public perl-cache-cache
561 (package
562 (name "perl-cache-cache")
563 (version "1.08")
564 (source (origin
565 (method url-fetch)
566 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
567 "Cache-Cache-" version ".tar.gz"))
568 (sha256
569 (base32
570 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
571 (build-system perl-build-system)
572 (propagated-inputs
573 `(("perl-digest-sha1" ,perl-digest-sha1)
574 ("perl-error" ,perl-error)
575 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
576 (home-page "http://search.cpan.org/dist/Cache-Cache")
577 (synopsis "Cache interface for Perl")
578 (description "The Cache modules are designed to assist a developer in
579persisting data for a specified period of time. Often these modules are used
580in web applications to store data locally to save repeated and redundant
581expensive calls to remote machines or databases. People have also been known
582to use Cache::Cache for its straightforward interface in sharing data between
583runs of an application or invocations of a CGI-style script or simply as an
8f65585b 584easy to use abstraction of the file system or shared memory.")
97c821e0
EB
585 (license (package-license perl))))
586
a1c9547f
EB
587(define-public perl-cache-fastmmap
588 (package
589 (name "perl-cache-fastmmap")
590 (version "1.40")
591 (source
592 (origin
593 (method url-fetch)
594 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
595 "Cache-FastMmap-" version ".tar.gz"))
596 (sha256
597 (base32
598 "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
599 (build-system perl-build-system)
600 (home-page "http://search.cpan.org/dist/Cache-FastMmap")
601 (synopsis "Shared memory interprocess cache via mmap")
602 (description "A shared memory cache through an mmap'ed file. It's core is
603written in C for performance. It uses fcntl locking to ensure multiple
604processes can safely access the cache at the same time. It uses a basic LRU
605algorithm to keep the most used entries in the cache.")
606 (license (package-license perl))))
607
6f38dce7
RW
608(define-public perl-capture-tiny
609 (package
610 (name "perl-capture-tiny")
4c08a8a6 611 (version "0.46")
6f38dce7
RW
612 (source
613 (origin
614 (method url-fetch)
615 (uri (string-append
616 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
617 version ".tar.gz"))
618 (sha256
619 (base32
4c08a8a6 620 "05bhlx6d4nzamhkkh0pkckg7wlvaq6mazf7q1fbb5wpp1j1nlyjx"))))
6f38dce7
RW
621 (build-system perl-build-system)
622 (home-page "http://search.cpan.org/dist/Capture-Tiny")
623 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
624 (description
625 "Capture::Tiny provides a simple, portable way to capture almost anything
626sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
627code or from an external program. Optionally, output can be teed so that it
628is captured while being passed through to the original file handles.")
629 (license asl2.0)))
630
647b6d38
MB
631(define-public perl-canary-stability
632 (package
633 (name "perl-canary-stability")
634 (version "2012")
635 (source (origin
636 (method url-fetch)
637 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
638 "Canary-Stability-" version ".tar.gz"))
639 (sha256
640 (base32
641 "01vih43hvpqy67m6a6fwmlswli91mqpv8n8ccglvlkc33l8hn97x"))))
642 (build-system perl-build-system)
643 (home-page "http://search.cpan.org/dist/Canary-Stability")
644 (synopsis "Check compatibility with the installed perl version")
645 (description
646 "This module is used by Schmorp's modules during configuration stage
647to test the installed perl for compatibility with his modules.")
648 (license (package-license perl))))
649
207d9126
EB
650(define-public perl-carp-assert
651 (package
652 (name "perl-carp-assert")
653 (version "0.21")
654 (source
655 (origin
656 (method url-fetch)
657 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
658 "Carp-Assert-" version ".tar.gz"))
659 (sha256
660 (base32
661 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
662 (build-system perl-build-system)
663 (home-page "http://search.cpan.org/dist/Carp-Assert")
664 (synopsis "Executable comments for Perl")
665 (description "Carp::Assert is intended for a purpose like the ANSI C
666library assert.h.")
667 (license (package-license perl))))
668
622d9adb
EB
669(define-public perl-carp-assert-more
670 (package
671 (name "perl-carp-assert-more")
672 (version "1.14")
673 (source
674 (origin
675 (method url-fetch)
676 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
677 "Carp-Assert-More-" version ".tar.gz"))
678 (sha256
679 (base32
680 "0cq7qk4qbhqppm4raby5k24b5mx5qjgy1884nrddhxillnzlq01z"))))
681 (build-system perl-build-system)
682 (native-inputs
683 `(("perl-test-exception" ,perl-test-exception)))
684 (propagated-inputs
685 `(("perl-carp-assert" ,perl-carp-assert)))
686 (home-page "http://search.cpan.org/dist/Carp-Assert-More")
687 (synopsis "Convenience wrappers around Carp::Assert")
688 (description "Carp::Assert::More is a set of handy assertion functions for
689Perl.")
690 (license artistic2.0)))
691
40b2ea4c
EB
692(define-public perl-carp-clan
693 (package
694 (name "perl-carp-clan")
7e441fac 695 (version "6.06")
40b2ea4c
EB
696 (source
697 (origin
698 (method url-fetch)
7e441fac 699 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
40b2ea4c
EB
700 "Carp-Clan-" version ".tar.gz"))
701 (sha256
702 (base32
7e441fac 703 "1m6902n6s627nsvyn2vyrk29q7lh6808hsdk7ka5cirm27vchjpa"))))
40b2ea4c
EB
704 (build-system perl-build-system)
705 (native-inputs
706 `(("perl-test-exception" ,perl-test-exception)))
707 (home-page "http://search.cpan.org/dist/Carp-Clan")
708 (synopsis "Report errors from a \"clan\" of modules")
709 (description "This module allows errors from a clan (or family) of modules
710to appear to originate from the caller of the clan. This is necessary in
711cases where the clan modules are not classes derived from each other, and thus
712the Carp.pm module doesn't help.")
713 (license (package-license perl))))
714
fb222fb2
RJ
715(define-public perl-cddb-get
716 (package
717 (name "perl-cddb-get")
718 (version "2.28")
719 (source (origin
720 (method url-fetch)
721 (uri (string-append
722 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
723 version ".tar.gz"))
724 (sha256
725 (base32
726 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
727 (build-system perl-build-system)
728 (home-page "http://search.cpan.org/dist/CDDB_get")
729 (synopsis "Read the CDDB entry for an audio CD in your drive")
730 (description "This module can retrieve information from the CDDB.")
731 ;; Either GPLv2 or the "Artistic" license.
732 (license (list gpl2 artistic2.0))))
733
8819f57b
EB
734(define-public perl-class-accessor
735 (package
736 (name "perl-class-accessor")
737 (version "0.34")
738 (source
739 (origin
740 (method url-fetch)
741 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
742 "Class-Accessor-" version ".tar.gz"))
743 (sha256
744 (base32
745 "1z6fqg0yz8gay15r1iasslv8f1n1mzjkrhs47fvbj3rqz36y1cfd"))))
746 (build-system perl-build-system)
747 (native-inputs
748 `(("perl-sub-name" ,perl-sub-name)))
749 (propagated-inputs
750 `(("perl-base" ,perl-base)))
751 (home-page "http://search.cpan.org/dist/Class-Accessor")
752 (synopsis "Automated accessor generation")
753 (description "This module automagically generates accessors/mutators for
754your class.")
755 (license (package-license perl))))
756
994fad66
EB
757(define-public perl-class-accessor-chained
758 (package
759 (name "perl-class-accessor-chained")
760 (version "0.01")
761 (source
762 (origin
763 (method url-fetch)
764 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
765 "Class-Accessor-Chained-" version ".tar.gz"))
766 (sha256
767 (base32
768 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
769 (build-system perl-build-system)
a2190ccc
EB
770 (native-inputs
771 `(("perl-module-build" ,perl-module-build)))
994fad66
EB
772 (propagated-inputs
773 `(("perl-class-accessor" ,perl-class-accessor)))
774 (home-page "http://search.cpan.org/dist/Class-Accessor-Chained")
775 (synopsis "Faster, but less expandable, chained accessors")
776 (description "A chained accessor is one that always returns the object
777when called with parameters (to set), and the value of the field when called
778with no arguments. This module subclasses Class::Accessor in order to provide
779the same mk_accessors interface.")
780 (license (package-license perl))))
781
ac42bfff
EB
782(define-public perl-class-accessor-grouped
783 (package
784 (name "perl-class-accessor-grouped")
785 (version "0.10012")
786 (source
787 (origin
788 (method url-fetch)
789 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
790 "Class-Accessor-Grouped-" version ".tar.gz"))
791 (sha256
792 (base32
793 "1zp74yv023q3macrf4rv3i82z8pkffqyhh7xk9xg8fbr63ikwqf4"))))
794 (build-system perl-build-system)
795 (native-inputs
9dab5017
MB
796 `(("perl-module-install" ,perl-module-install)
797 ("perl-test-exception" ,perl-test-exception)))
ac42bfff
EB
798 (propagated-inputs
799 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
800 ("perl-module-runtime" ,perl-module-runtime)
801 ("perl-sub-name" ,perl-sub-name)))
802 (home-page "http://search.cpan.org/dist/Class-Accessor-Grouped")
803 (synopsis "Build groups of accessors")
804 (description "This class lets you build groups of accessors that will call
805different getters and setters.")
806 (license (package-license perl))))
807
7a00ad4c
EB
808(define-public perl-class-c3
809 (package
810 (name "perl-class-c3")
811 (version "0.27")
812 (source
813 (origin
814 (method url-fetch)
815 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
816 "Class-C3-" version ".tar.gz"))
817 (sha256
818 (base32
819 "185jdpr4applrkvh71ks9ildx5kdymhqr4hilsqxwqny1wr56qss"))))
820 (build-system perl-build-system)
821 (propagated-inputs
822 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
823 (home-page "http://search.cpan.org/dist/Class-C3")
824 (synopsis "Pragma to use the C3 method resolution order algorithm")
825 (description "This is pragma to change Perl 5's standard method resolution
826order from depth-first left-to-right (a.k.a - pre-order) to the more
827sophisticated C3 method resolution order.")
828 (license (package-license perl))))
829
4abba47d
EB
830(define-public perl-class-c3-adopt-next
831 (package
832 (name "perl-class-c3-adopt-next")
833 (version "0.13")
834 (source
835 (origin
836 (method url-fetch)
837 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
838 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
839 (sha256
840 (base32
841 "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
842 (build-system perl-build-system)
843 (native-inputs
844 `(("perl-test-exception" ,perl-test-exception)))
845 (propagated-inputs
846 `(("perl-list-moreutils" ,perl-list-moreutils)
847 ("perl-mro-compat" ,perl-mro-compat)))
848 (home-page "http://search.cpan.org/dist/Class-C3-Adopt-NEXT")
849 (synopsis "Drop-in replacement for NEXT")
850 (description "This module is intended as a drop-in replacement for NEXT,
851supporting the same interface, but using Class::C3 to do the hard work.")
852 (license (package-license perl))))
853
42641c44
EB
854(define-public perl-class-c3-componentised
855 (package
856 (name "perl-class-c3-componentised")
857 (version "1.001000")
858 (source
859 (origin
860 (method url-fetch)
861 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
862 "Class-C3-Componentised-" version ".tar.gz"))
863 (sha256
864 (base32
865 "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
866 (build-system perl-build-system)
867 (native-inputs
9dab5017
MB
868 `(("perl-module-install" ,perl-module-install)
869 ("perl-test-exception" ,perl-test-exception)))
42641c44
EB
870 (propagated-inputs
871 `(("perl-class-c3" ,perl-class-c3)
872 ("perl-class-inspector" ,perl-class-inspector)
873 ("perl-mro-compat" ,perl-mro-compat)))
874 (home-page "http://search.cpan.org/dist/Class-C3-Componentised")
875 (synopsis "Load mix-ins or components to your C3-based class")
876 (description "This module will inject base classes to your module using
877the Class::C3 method resolution order.")
878 (license (package-license perl))))
879
bc4899e3
EB
880(define-public perl-class-data-inheritable
881 (package
882 (name "perl-class-data-inheritable")
883 (version "0.08")
884 (source
885 (origin
886 (method url-fetch)
887 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
888 "Class-Data-Inheritable-" version ".tar.gz"))
889 (sha256
890 (base32
891 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
892 (build-system perl-build-system)
893 (home-page "http://search.cpan.org/dist/Class-Data-Inheritable")
894 (synopsis "Inheritable, overridable class data")
895 (description "Class::Data::Inheritable is for creating accessor/mutators
896to class data. That is, if you want to store something about your class as a
897whole (instead of about a single object). This data is then inherited by your
e881752c 898subclasses and can be overridden.")
bc4899e3
EB
899 (license (package-license perl))))
900
fcf1043e
EB
901(define-public perl-class-date
902 (package
903 (name "perl-class-date")
904 (version "1.1.15")
905 (source
906 (origin
907 (method url-fetch)
908 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
909 "Class-Date-" version ".tar.gz"))
910 (sha256
911 (base32
912 "0dd707sq8ix2dqbnp7ga77ba69r3vsn0cd6scnkn13s0gm2g4b00"))))
913 (build-system perl-build-system)
914 (arguments `(#:tests? #f)) ;timezone tests in chroot
915 (home-page "http://search.cpan.org/dist/Class-Date")
916 (synopsis "Class for easy date and time manipulation")
917 (description "This module provides a general-purpose date and datetime
918type for perl.")
919 (license (package-license perl))))
ba248288 920
921(define-public perl-class-errorhandler
922 (package
923 (name "perl-class-errorhandler")
924 (version "0.04")
925 (source (origin
926 (method url-fetch)
927 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
928 "Class-ErrorHandler-" version ".tar.gz"))
929 (sha256
930 (base32
931 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
932 (build-system perl-build-system)
933 (home-page "http://search.cpan.org/dist/Class-ErrorHandler")
934 (synopsis "Base class for error handling")
935 (description
936 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
937enough to be used as the base class for a variety of OO classes. Subclasses inherit
938its two error-handling methods, error and errstr, to communicate error messages back
939to the calling program.")
940 (license (package-license perl))))
fcf1043e 941
bd44b05d
EB
942(define-public perl-class-factory-util
943 (package
944 (name "perl-class-factory-util")
945 (version "1.7")
946 (source
947 (origin
948 (method url-fetch)
949 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
950 "Class-Factory-Util-" version ".tar.gz"))
951 (sha256
952 (base32
953 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
954 (build-system perl-build-system)
bb8afbf5 955 (native-inputs `(("perl-module-build" ,perl-module-build)))
bd44b05d
EB
956 (home-page "http://search.cpan.org/dist/Class-Factory-Util")
957 (synopsis "Utility methods for factory classes")
958 (description "This module exports methods useful for factory classes.")
959 (license (package-license perl))))
960
9afa15ff
EB
961(define-public perl-class-inspector
962 (package
963 (name "perl-class-inspector")
3db83cc7 964 (version "1.31")
9afa15ff
EB
965 (source
966 (origin
967 (method url-fetch)
3db83cc7 968 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
9afa15ff
EB
969 "Class-Inspector-" version ".tar.gz"))
970 (sha256
971 (base32
3db83cc7 972 "1sqfjgzxx1f951fykc6vgfvys4j8rxaw2zf3jq26yrvs3ygn8pq6"))))
9afa15ff
EB
973 (build-system perl-build-system)
974 (home-page "http://search.cpan.org/dist/Class-Inspector")
975 (synopsis "Get information about a class and its structure")
976 (description "Class::Inspector allows you to get information about a
977loaded class.")
978 (license (package-license perl))))
979
d439d537
EB
980(define-public perl-class-load
981 (package
982 (name "perl-class-load")
fb89fc0c 983 (version "0.23")
d439d537
EB
984 (source
985 (origin
986 (method url-fetch)
987 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
988 "Class-Load-" version ".tar.gz"))
989 (sha256
990 (base32
fb89fc0c 991 "13xjfh4fadq4pkq7fcj42b26544jl7gqdg2y3imnra9fwxwsbg7j"))))
d439d537
EB
992 (build-system perl-build-system)
993 (native-inputs
994 `(("perl-module-build-tiny" ,perl-module-build-tiny)
995 ("perl-test-fatal" ,perl-test-fatal)
996 ("perl-test-requires" ,perl-test-requires)))
997 (propagated-inputs
998 `(("perl-package-stash" ,perl-package-stash)
999 ("perl-data-optlist" ,perl-data-optlist)
1000 ("perl-namespace-clean" ,perl-namespace-clean)
1001 ("perl-module-runtime" ,perl-module-runtime)
1002 ("perl-module-implementation" ,perl-module-implementation)))
1003 (home-page "http://search.cpan.org/dist/Class-Load")
1004 (synopsis "Working (require \"Class::Name\") and more")
1005 (description "\"require EXPR\" only accepts Class/Name.pm style module
1006names, not Class::Name. For that, this module provides \"load_class
1007'Class::Name'\".")
1008 (license (package-license perl))))
1009
81bffd45
EB
1010(define-public perl-class-load-xs
1011 (package
1012 (name "perl-class-load-xs")
1013 (version "0.09")
1014 (source
1015 (origin
1016 (method url-fetch)
1017 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1018 "Class-Load-XS-" version ".tar.gz"))
1019 (sha256
1020 (base32
1021 "1aivalms81s3a2cj053ncgnmkpgl7vspna8ajlkqir7rdn8kpv5v"))))
1022 (build-system perl-build-system)
1023 (native-inputs
1024 `(("perl-test-fatal" ,perl-test-fatal)
1025 ("perl-test-requires" ,perl-test-requires)))
1026 (inputs `(("perl-class-load" ,perl-class-load)))
1027 (home-page "http://search.cpan.org/dist/Class-Load-XS")
1028 (synopsis "XS implementation of parts of Class::Load")
1029 (description "This module provides an XS implementation for portions of
e881752c 1030Class::Load.")
81bffd45
EB
1031 (license artistic2.0)))
1032
cd718b82
EB
1033(define-public perl-class-methodmaker
1034 (package
1035 (name "perl-class-methodmaker")
1036 (version "2.24")
1037 (source
1038 (origin
1039 (method url-fetch)
1040 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1041 "class-methodmaker/Class-MethodMaker-"
1042 version ".tar.gz"))
1043 (sha256
1044 (base32
1045 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1046 (build-system perl-build-system)
1047 (home-page "http://search.cpan.org/dist/Class-MethodMaker")
1048 (synopsis "Create generic methods for OO Perl")
1049 (description "This module solves the problem of having to continually
1050write accessor methods for your objects that perform standard tasks.")
1051 (license (package-license perl))))
1052
417e11bf
EB
1053(define-public perl-class-method-modifiers
1054 (package
1055 (name "perl-class-method-modifiers")
199bbbe1 1056 (version "2.12")
417e11bf
EB
1057 (source
1058 (origin
1059 (method url-fetch)
1060 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1061 "Class-Method-Modifiers-" version ".tar.gz"))
1062 (sha256
1063 (base32
199bbbe1 1064 "1j3swa212wh14dq5r6zjarm2lzpx6mrdfplpjy65px8b09ri0k74"))))
417e11bf
EB
1065 (build-system perl-build-system)
1066 (native-inputs
1067 `(("perl-test-fatal" ,perl-test-fatal)
1068 ("perl-test-requires" ,perl-test-requires)))
1069 (home-page "http://search.cpan.org/dist/Class-Method-Modifiers")
1070 (synopsis "Moose-like method modifiers")
e881752c
AK
1071 (description "Class::Method::Modifiers provides three modifiers: 'before',
1072'around', and 'after'. 'before' and 'after' are run just before and after the
1073method they modify, but can not really affect that original method. 'around'
1074is run in place of the original method, with a hook to easily call that
1075original method.")
417e11bf
EB
1076 (license (package-license perl))))
1077
c16a204a
EB
1078(define-public perl-class-singleton
1079 (package
1080 (name "perl-class-singleton")
1081 (version "1.5")
1082 (source
1083 (origin
1084 (method url-fetch)
1085 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1086 "Class-Singleton-" version ".tar.gz"))
1087 (sha256
1088 (base32
1089 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1090 (build-system perl-build-system)
1091 (home-page "http://search.cpan.org/dist/Class-Singleton")
1092 (synopsis "Implementation of a singleton class for Perl")
1093 (description "This module implements a Singleton class from which other
e881752c 1094classes can be derived. By itself, the Class::Singleton module does very
c16a204a
EB
1095little other than manage the instantiation of a single object.")
1096 (license (package-license perl))))
1097
d85de704
EB
1098(define-public perl-class-tiny
1099 (package
1100 (name "perl-class-tiny")
1101 (version "1.000")
1102 (source
1103 (origin
1104 (method url-fetch)
1105 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1106 "Class-Tiny-" version ".tar.gz"))
1107 (sha256
1108 (base32
1109 "0jll90byj0nl16hwpf28k54i4n53jidjsj1bnlbx72v0n56qfpb2"))))
1110 (build-system perl-build-system)
1111 (home-page "http://search.cpan.org/dist/Class-Tiny")
1112 (synopsis "Minimalist class construction")
1113 (description "This module offers a minimalist class construction kit. It
1114uses no non-core modules for any recent Perl.")
1115 (license asl2.0)))
1116
8ac8f1e0
EB
1117(define-public perl-class-unload
1118 (package
1119 (name "perl-class-unload")
1120 (version "0.08")
1121 (source
1122 (origin
1123 (method url-fetch)
1124 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1125 "Class-Unload-" version ".tar.gz"))
1126 (sha256
1127 (base32
1128 "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
1129 (build-system perl-build-system)
1130 (propagated-inputs
1131 `(("perl-class-inspector" ,perl-class-inspector)))
1132 (home-page "http://search.cpan.org/dist/Class-Unload")
1133 (synopsis "Unload a class")
1134 (description "Class:Unload unloads a given class by clearing out its
1135symbol table and removing it from %INC.")
1136 (license (package-license perl))))
1137
448ebad1
EB
1138(define-public perl-class-xsaccessor
1139 (package
1140 (name "perl-class-xsaccessor")
1141 (version "1.19")
1142 (source
1143 (origin
1144 (method url-fetch)
1145 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1146 "Class-XSAccessor-" version ".tar.gz"))
1147 (sha256
1148 (base32
1149 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1150 (build-system perl-build-system)
1151 (home-page "http://search.cpan.org/dist/Class-XSAccessor")
1152 (synopsis "Generate fast XS accessors without runtime compilation")
1153 (description "Class::XSAccessor implements fast read, write, and
1154read/write accessors in XS. Additionally, it can provide predicates such as
1155\"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1156object. It only works with objects that are implemented as ordinary hashes.
1157Class::XSAccessor::Array implements the same interface for objects that use
1158arrays for their internal representation.")
1159 (license (package-license perl))))
1160
73fc71ba
EB
1161(define-public perl-clone
1162 (package
1163 (name "perl-clone")
a941be6a 1164 (version "0.38")
73fc71ba
EB
1165 (source (origin
1166 (method url-fetch)
1167 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
1168 "Clone-" version ".tar.gz"))
1169 (sha256
1170 (base32
a941be6a 1171 "1s5xrv9zlckqqzyhxi0l9lwj9m6na2bz5hqxrkva2v7gnx5m7c4z"))))
73fc71ba
EB
1172 (build-system perl-build-system)
1173 (synopsis "Recursively copy Perl datatypes")
1174 (description
1175 "This module provides a clone() method which makes recursive copies of
1176nested hash, array, scalar and reference types, including tied variables and
1177objects.")
1178 (home-page (string-append "http://search.cpan.org/~garu/"
1179 "Clone-" version))
1180 (license (package-license perl))))
1181
89341090
EB
1182(define-public perl-common-sense
1183 (package
1184 (name "perl-common-sense")
a00afca4 1185 (version "3.74")
89341090
EB
1186 (source
1187 (origin
1188 (method url-fetch)
1189 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1190 "common-sense-" version ".tar.gz"))
1191 (sha256
1192 (base32
a00afca4 1193 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
89341090
EB
1194 (build-system perl-build-system)
1195 (home-page "http://search.cpan.org/dist/common-sense")
1196 (synopsis "Sane defaults for Perl programs")
1197 (description "This module implements some sane defaults for Perl programs,
1198as defined by two typical specimens of Perl coders.")
1199 (license (package-license perl))))
1200
d39e8254
EB
1201(define-public perl-config-any
1202 (package
1203 (name "perl-config-any")
1cb6e2cd 1204 (version "0.32")
d39e8254
EB
1205 (source
1206 (origin
1207 (method url-fetch)
1cb6e2cd 1208 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
d39e8254
EB
1209 "Config-Any-" version ".tar.gz"))
1210 (sha256
1211 (base32
1cb6e2cd 1212 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
d39e8254 1213 (build-system perl-build-system)
a2190ccc
EB
1214 (propagated-inputs
1215 `(("perl-module-pluggable" ,perl-module-pluggable)))
d39e8254
EB
1216 (home-page "http://search.cpan.org/dist/Config-Any")
1217 (synopsis "Load configuration from different file formats")
1218 (description "Config::Any provides a facility for Perl applications and
1219libraries to load configuration data from multiple different file formats. It
1220supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1221 (license (package-license perl))))
1222
ce60f167
EB
1223(define-public perl-config-autoconf
1224 (package
1225 (name "perl-config-autoconf")
1226 (version "0.309")
1227 (source
1228 (origin
1229 (method url-fetch)
1230 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1231 "Config-AutoConf-" version ".tar.gz"))
1232 (sha256
1233 (base32
1234 "1nqc7calfny12dwfhz7ylsvx55nf69kirdc5dbyvh3sjsqj8yvdq"))))
1235 (build-system perl-build-system)
1236 (propagated-inputs
1237 `(("perl-capture-tiny" ,perl-capture-tiny)))
1238 (home-page "http://search.cpan.org/dist/Config-AutoConf")
1239 (synopsis "Module to implement some AutoConf macros in Perl")
1240 (description "Config::AutoConf is intended to provide the same
1241opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1242 (license (package-license perl))))
1243
1846b423
EB
1244(define-public perl-config-general
1245 (package
1246 (name "perl-config-general")
1247 (version "2.56")
1248 (source
1249 (origin
1250 (method url-fetch)
1251 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1252 "Config-General-" version ".tar.gz"))
1253 (sha256
1254 (base32
1255 "0szxxaihz71pr0r2jp9wvbrfc3hrsxi9xrd9vnyrxlrax8sci5h9"))))
1256 (build-system perl-build-system)
1257 (home-page "http://search.cpan.org/dist/Config-General")
1258 (synopsis "Generic Config Module")
1259 (description "This module opens a config file and parses its contents for
1260you. The format of config files supported by Config::General is inspired by
1261the well known Apache config format and is 100% compatible with Apache
1262configs, but you can also just use simple name/value pairs in your config
1263files. In addition to the capabilities of an Apache config file it supports
1264some enhancements such as here-documents, C-style comments, and multiline
1265options.")
1266 (license (package-license perl))))
1267
d209710b
AS
1268(define-public perl-config-ini
1269 (package
1270 (name "perl-config-ini")
1271 (version "0.025")
7640c62d
AS
1272 (source (origin
1273 (method url-fetch)
1274 (uri (string-append
1275 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1276 version ".tar.gz"))
1277 (sha256
1278 (base32
1279 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
d209710b
AS
1280 (build-system perl-build-system)
1281 (inputs
1282 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1283 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1284 ("perl-sub-exporter" ,perl-sub-exporter)))
7640c62d 1285 (home-page "http://search.cpan.org/dist/Config-INI")
d209710b 1286 (synopsis "Simple .ini-file format reader and writer")
7640c62d
AS
1287 (description "@code{Config::INI} is a module that facilates the reading
1288and writing of @code{.ini}-style configuration files.")
d209710b
AS
1289 (license (package-license perl))))
1290
f787e9fd
EB
1291(define-public perl-context-preserve
1292 (package
1293 (name "perl-context-preserve")
1627ca04 1294 (version "0.02")
f787e9fd
EB
1295 (source
1296 (origin
1297 (method url-fetch)
def056d1 1298 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
f787e9fd
EB
1299 "Context-Preserve-" version ".tar.gz"))
1300 (sha256
1301 (base32
1627ca04 1302 "0qkjj1qifr87zlfpfnn21gdyrpfgilh8zp3b53008m2ax02k87gc"))))
f787e9fd
EB
1303 (build-system perl-build-system)
1304 (native-inputs
1305 `(("perl-test-exception" ,perl-test-exception)
1306 ("perl-test-simple" ,perl-test-simple)))
1307 (home-page "http://search.cpan.org/dist/Context-Preserve")
1308 (synopsis "Preserve context during subroutine call")
1309 (description "This module runs code after a subroutine call, preserving
1310the context the subroutine would have seen if it were the last statement in
1311the caller.")
1312 (license (package-license perl))))
1313
2d6125ed
CB
1314(define-public perl-convert-binhex
1315 (package
1316 (name "perl-convert-binhex")
1317 (version "1.125")
1318 (source
1319 (origin
1320 (method url-fetch)
1321 (uri (string-append
1322 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1323 version
1324 ".tar.gz"))
1325 (sha256
1326 (base32
1327 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1328 (build-system perl-build-system)
1329 (native-inputs
1330 `(("perl-file-slurp" ,perl-file-slurp)
1331 ("perl-test-most" ,perl-test-most)))
1332 (home-page
1333 "http://search.cpan.org/dist/Convert-BinHex")
1334 (synopsis "Extract data from Macintosh BinHex files")
1335 (description
1336 "BinHex is a format for transporting files safely through electronic
1337mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1338provides a means of converting those data streams back into into binary
1339data.")
1340 (license perl-license)))
1341
a77ed67d
EB
1342(define-public perl-cpan-meta-check
1343 (package
1344 (name "perl-cpan-meta-check")
ed9543c0 1345 (version "0.014")
a77ed67d
EB
1346 (source
1347 (origin
1348 (method url-fetch)
1349 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1350 "CPAN-Meta-Check-" version ".tar.gz"))
1351 (sha256
1352 (base32
ed9543c0 1353 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
a77ed67d
EB
1354 (build-system perl-build-system)
1355 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1356 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1357 (home-page "http://search.cpan.org/dist/CPAN-Meta-Check")
1358 (synopsis "Verify requirements in a CPAN::Meta object")
1359 (description "This module verifies if requirements described in a
1360CPAN::Meta object are present.")
1361 (license (package-license perl))))
1362
31831e56
EB
1363(define-public perl-cpanel-json-xs
1364 (package
1365 (name "perl-cpanel-json-xs")
1366 (version "3.0114")
1367 (source
1368 (origin
1369 (method url-fetch)
1370 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1371 "Cpanel-JSON-XS-" version ".tar.gz"))
1372 (sha256
1373 (base32
1374 "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71"))))
1375 (build-system perl-build-system)
1376 (propagated-inputs
1377 `(("perl-common-sense" ,perl-common-sense)))
1378 (home-page "http://search.cpan.org/dist/Cpanel-JSON-XS")
1379 (synopsis "JSON::XS for Cpanel")
1380 (description "This module converts Perl data structures to JSON and vice
1381versa.")
1382 (license (package-license perl))))
1383
19c0e5a7
EB
1384(define-public perl-crypt-randpasswd
1385 (package
1386 (name "perl-crypt-randpasswd")
1387 (version "0.06")
1388 (source
1389 (origin
1390 (method url-fetch)
1391 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1392 "Crypt-RandPasswd-" version ".tar.gz"))
1393 (sha256
1394 (base32
1395 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1396 (build-system perl-build-system)
1397 (home-page "http://search.cpan.org/dist/Crypt-RandPasswd")
1398 (synopsis "Random password generator")
1399 (description "Crypt::RandPasswd provides three functions that can be used
1400to generate random passwords, constructed from words, letters, or characters.
1401This code is a Perl implementation of the Automated Password Generator
1402standard, like the program described in \"A Random Word Generator For
e881752c 1403Pronounceable Passwords\". This code is a re-engineering of the program
19c0e5a7
EB
1404contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1405Password Generator\".")
1406 (license (package-license perl))))
1407
2b9d2df7
AP
1408(define-public perl-crypt-rc4
1409 (package
1410 (name "perl-crypt-rc4")
1411 (version "2.02")
1412 (source
1413 (origin
1414 (method url-fetch)
1415 (uri (string-append
1416 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
1417 version
1418 ".tar.gz"))
1419 (sha256
1420 (base32
1421 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
1422 (build-system perl-build-system)
1423 (home-page "http://search.cpan.org/dist/Crypt-RC4")
1424 (synopsis "Perl implementation of the RC4 encryption algorithm")
1425 (description "A pure Perl implementation of the RC4 algorithm.")
1426 (license (package-license perl))))
1427
3ce3ecd3
MB
1428(define-public perl-cwd-guard
1429 (package
1430 (name "perl-cwd-guard")
1431 (version "0.05")
1432 (source (origin
1433 (method url-fetch)
1434 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
1435 "Cwd-Guard-" version ".tar.gz"))
1436 (sha256
1437 (base32
1438 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
1439 (build-system perl-build-system)
1440 (native-inputs
1441 `(("perl-module-build" ,perl-module-build)
1442 ("perl-test-requires" ,perl-test-requires)))
1443 (home-page "http://search.cpan.org/dist/Cwd-Guard")
1444 (synopsis "Temporarily change working directory")
1445 (description
1446 "@code{Cwd::Guard} changes the current directory using a limited scope.
1447It returns to the previous working directory when the object is destroyed.")
1448 (license (package-license perl))))
1449
f85ccf88
RW
1450(define-public perl-czplib
1451 (package
1452 (name "perl-czplib")
1453 (version "1.0.5")
1454 (source
1455 (origin
1456 (method url-fetch)
1457 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1458 version ".tgz"))
1459 (sha256
1460 (base32
1461 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1462 (modules '((guix build utils)))
1463 (snippet
1464 '(begin
1465 ;; Remove .git directory
1466 (delete-file-recursively ".git")
1467 #t))))
1468 (build-system perl-build-system)
1469 (arguments
1470 `(#:phases
1471 (modify-phases %standard-phases
1472 (delete 'configure)
1473 (delete 'build)
1474 (replace
1475 'install
1476 (lambda* (#:key outputs #:allow-other-keys)
1477 (copy-recursively "."
1478 (string-append (assoc-ref outputs "out")
1479 "/plib/perl5/site_perl/"
1480 ,(package-version perl)
1481 "/czplib/"))
1482 #t)))))
3b3b60d0 1483 (home-page "https://sourceforge.net/projects/czplib/")
f85ccf88
RW
1484 (synopsis "Library for genomic analysis")
1485 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1486functions and data structures for processing and analysing genomic and
1487bioinformatics data.")
1488 (license gpl3+)))
1489
9413e95f
RW
1490(define-public perl-data-compare
1491 (package
1492 (name "perl-data-compare")
1493 (version "1.25")
1494 (source
1495 (origin
1496 (method url-fetch)
1497 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
1498 "Data-Compare-" version ".tar.gz"))
1499 (sha256
1500 (base32
1501 "0wzasidg9yjcfsi2gdiaw6726ikqda7n24n0v2ngpaazakdkcjqx"))))
1502 (build-system perl-build-system)
1503 (propagated-inputs
1504 `(("perl-file-find-rule" ,perl-file-find-rule)))
1505 (home-page "http://search.cpan.org/dist/Data-Compare")
1506 (synopsis "Compare Perl data structures")
1507 (description "This module compares arbitrary data structures to see if
1508they are copies of each other.")
1509 (license (package-license perl))))
1510
cc3dafbb
RW
1511(define-public perl-data-uniqid
1512 (package
1513 (name "perl-data-uniqid")
1514 (version "0.12")
1515 (source
1516 (origin
1517 (method url-fetch)
1518 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
1519 version ".tar.gz"))
1520 (sha256
1521 (base32
1522 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
1523 (build-system perl-build-system)
1524 (home-page "http://search.cpan.org/dist/Data-Uniqid")
1525 (synopsis "Perl extension for generating unique identifiers")
1526 (description "@code{Data::Uniqid} provides three simple routines for
1527generating unique ids. These ids are coded with a Base62 systen to make them
1528short and handy (e.g. to use it as part of a URL).")
1529 (license (package-license perl))))
1530
84c2c6d6
EB
1531(define-public perl-data-dump
1532 (package
1533 (name "perl-data-dump")
1534 (version "1.22")
1535 (source
1536 (origin
1537 (method url-fetch)
1538 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1539 "Data-Dump-" version ".tar.gz"))
1540 (sha256
1541 (base32
1542 "1ciqlwsy1q35s94dry9bjy1pwanbq6b7q4rhxm9z8prgkzbslg2k"))))
1543 (build-system perl-build-system)
1544 (home-page "http://search.cpan.org/dist/Data-Dump")
1545 (synopsis "Pretty printing of data structures")
1546 (description "This module provide functions that takes a list of values as
1547their argument and produces a string as its result. The string contains Perl
1548code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1549 (license (package-license perl))))
1550
bfa3ad49
EB
1551(define-public perl-data-dumper-concise
1552 (package
1553 (name "perl-data-dumper-concise")
f6062e54 1554 (version "2.023")
bfa3ad49
EB
1555 (source
1556 (origin
1557 (method url-fetch)
f6062e54 1558 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
bfa3ad49
EB
1559 "Data-Dumper-Concise-" version ".tar.gz"))
1560 (sha256
1561 (base32
f6062e54 1562 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
bfa3ad49
EB
1563 (build-system perl-build-system)
1564 (home-page "http://search.cpan.org/dist/Data-Dumper-Concise")
1565 (synopsis "Concise data dumper")
1566 (description "Data::Dumper::Concise provides a dumper with Less
1567indentation and newlines plus sub deparsing.")
1568 (license (package-license perl))))
1569
14205764
RW
1570(define-public perl-data-optlist
1571 (package
1572 (name "perl-data-optlist")
1573 (version "0.109")
1574 (source
1575 (origin
1576 (method url-fetch)
1577 (uri (string-append
1578 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1579 version ".tar.gz"))
1580 (sha256
1581 (base32
1582 "1j44rm2spprlq3bc80cxni3dzs3gfjiqv1qc9q7820n1qj0wgmqw"))))
1583 (build-system perl-build-system)
1584 (propagated-inputs
fc8c2f7b
EB
1585 `(("perl-sub-install" ,perl-sub-install)
1586 ("perl-params-util" ,perl-params-util)))
14205764
RW
1587 (home-page "http://search.cpan.org/dist/Data-OptList")
1588 (synopsis "Parse and validate simple name/value option pairs")
1589 (description
1590 "Data::OptList provides a simple syntax for name/value option pairs.")
1591 (license (package-license perl))))
1592
f8bde42f
EB
1593(define-public perl-data-page
1594 (package
1595 (name "perl-data-page")
1596 (version "2.02")
1597 (source
1598 (origin
1599 (method url-fetch)
1600 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
1601 "Data-Page-" version ".tar.gz"))
1602 (sha256
1603 (base32
1604 "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1605 (build-system perl-build-system)
1606 (native-inputs
a2190ccc
EB
1607 `(("perl-module-build" ,perl-module-build)
1608 ("perl-test-exception" ,perl-test-exception)))
f8bde42f
EB
1609 (propagated-inputs
1610 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1611 (home-page "http://search.cpan.org/dist/Data-Page")
1612 (synopsis "Help when paging through sets of results")
1613 (description "When searching through large amounts of data, it is often
1614the case that a result set is returned that is larger than we want to display
1615on one page. This results in wanting to page through various pages of data.
1616The maths behind this is unfortunately fiddly, hence this module.")
1617 (license (package-license perl))))
1618
3565756f
CB
1619(define-public perl-data-perl
1620 (package
1621 (name "perl-data-perl")
1622 (version "0.002009")
1623 (source
1624 (origin
1625 (method url-fetch)
1626 (uri (string-append
1627 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
1628 version
1629 ".tar.gz"))
1630 (sha256
1631 (base32
1632 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1633 (build-system perl-build-system)
1634 (native-inputs
1635 `(("perl-test-deep" ,perl-test-deep)
1636 ("perl-test-fatal" ,perl-test-fatal)
1637 ("perl-test-output" ,perl-test-output)))
1638 (inputs
1639 `(("perl-class-method-modifiers"
1640 ,perl-class-method-modifiers)
1641 ("perl-module-runtime" ,perl-module-runtime)
1642 ("perl-role-tiny" ,perl-role-tiny)
1643 ("perl-strictures" ,perl-strictures)))
1644 (propagated-inputs
1645 `(("perl-list-moreutils" ,perl-list-moreutils)))
1646 (home-page
1647 "http://search.cpan.org/dist/Data-Perl")
1648 (synopsis "Base classes wrapping fundamental Perl data types")
1649 (description
1650 "@code{Data::Perl} is a container class for the following classes:
1651@itemize
1652@item @code{Data::Perl::Collection::Hash}
1653@item @code{Data::Perl::Collection::Array}
1654@item @code{Data::Perl::String}
1655@item @code{Data::Perl::Number}
1656@item @code{Data::Perl::Counter}
1657@item @code{Data::Perl::Bool}
1658@item @code{Data::Perl::Code}
1659@end itemize")
1660 (license perl-license)))
1661
c0b19091
RW
1662(define-public perl-data-stag
1663 (package
1664 (name "perl-data-stag")
1665 (version "0.14")
1666 (source
1667 (origin
1668 (method url-fetch)
1669 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
1670 "Data-Stag-" version ".tar.gz"))
1671 (sha256
1672 (base32
1673 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
1674 (build-system perl-build-system)
1675 (propagated-inputs
1676 `(("perl-io-string" ,perl-io-string)))
1677 (home-page "http://search.cpan.org/dist/Data-Stag")
1678 (synopsis "Structured tags datastructures")
1679 (description
1680 "This module is for manipulating data as hierarchical tag/value
ac5d70cd 1681pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
c0b19091
RW
1682be represented as nested arrays, which have the advantage of being native to
1683Perl.")
1684 (license (package-license perl))))
1685
1cebf873
EB
1686(define-public perl-data-stream-bulk
1687 (package
1688 (name "perl-data-stream-bulk")
1689 (version "0.11")
1690 (source
1691 (origin
1692 (method url-fetch)
1693 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1694 "Data-Stream-Bulk-" version ".tar.gz"))
1695 (sha256
1696 (base32
1697 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
1698 (build-system perl-build-system)
1699 (native-inputs
1700 `(("perl-test-requires" ,perl-test-requires)))
1701 (propagated-inputs
1702 `(("perl-moose" ,perl-moose)
1703 ("perl-namespace-clean" ,perl-namespace-clean)
1704 ("perl-path-class" ,perl-path-class)
1705 ("perl-sub-exporter" ,perl-sub-exporter)))
1706 (home-page "http://search.cpan.org/dist/Data-Stream-Bulk")
1707 (synopsis "N at a time iteration API")
1708 (description "This module tries to find middle ground between one at a
1709time and all at once processing of data sets. The purpose of this module is
1710to avoid the overhead of implementing an iterative api when this isn't
1711necessary, without breaking forward compatibility in case that becomes
1712necessary later on.")
1713 (license (package-license perl))))
1714
61fc6831
EB
1715(define-public perl-data-tumbler
1716 (package
1717 (name "perl-data-tumbler")
1718 (version "0.008")
1719 (source
1720 (origin
1721 (method url-fetch)
1722 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1723 "Data-Tumbler-" version ".tar.gz"))
1724 (sha256
1725 (base32
1726 "13kww2xj30rkk8w9h50h4blypdb689zgils0zyah587kip0z6509"))))
1727 (build-system perl-build-system)
1728 (native-inputs
1729 `(("perl-test-most" ,perl-test-most)))
1730 (propagated-inputs
1731 `(("perl-file-homedir" ,perl-file-homedir)))
1732 (home-page "http://search.cpan.org/dist/Data-Tumbler")
1733 (synopsis "Dynamic generation of nested combinations of variants")
1734 (description "Data::Tumbler - Dynamic generation of nested combinations of
e881752c 1735variants.")
61fc6831
EB
1736 (license (package-license perl))))
1737
c666dc39
EB
1738(define-public perl-data-visitor
1739 (package
1740 (name "perl-data-visitor")
1741 (version "0.30")
1742 (source
1743 (origin
1744 (method url-fetch)
1745 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1746 "Data-Visitor-" version ".tar.gz"))
1747 (sha256
1748 (base32
1749 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
1750 (build-system perl-build-system)
1751 (native-inputs
1752 `(("perl-test-requires" ,perl-test-requires)))
1753 (propagated-inputs
1754 `(("perl-class-load" ,perl-class-load)
1755 ("perl-moose" ,perl-moose)
1756 ("perl-namespace-clean" ,perl-namespace-clean)
1757 ("perl-task-weaken" ,perl-task-weaken)
1758 ("perl-tie-toobject" ,perl-tie-toobject)))
1759 (home-page "http://search.cpan.org/dist/Data-Visitor")
1760 (synopsis "Visitor style traversal of Perl data structures")
1761 (description "This module is a simple visitor implementation for Perl
1762values. It has a main dispatcher method, visit, which takes a single perl
1763value and then calls the methods appropriate for that value. It can
1764recursively map (cloning as necessary) or just traverse most structures, with
1765support for per-object behavior, circular structures, visiting tied
1766structures, and all ref types (hashes, arrays, scalars, code, globs).")
1767 (license (package-license perl))))
1768
59f42321
EB
1769(define-public perl-date-calc
1770 (package
1771 (name "perl-date-calc")
1772 (version "6.4")
1773 (source
1774 (origin
1775 (method url-fetch)
1776 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
1777 "Date-Calc-" version ".tar.gz"))
1778 (sha256
1779 (base32
1780 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
1781 (build-system perl-build-system)
1782 (propagated-inputs
1783 `(("perl-bit-vector" ,perl-bit-vector)
1784 ("perl-carp-clan" ,perl-carp-clan)))
1785 (home-page "http://search.cpan.org/dist/Date-Calc")
1786 (synopsis "Gregorian calendar date calculations")
1787 (description "This package consists of a Perl module for date calculations
1788based on the Gregorian calendar, thereby complying with all relevant norms and
1789standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
1790applicable).")
1791 (license (package-license perl))))
1792
1793(define-public perl-date-calc-xs
1794 (package
1795 (name "perl-date-calc-xs")
1796 (version "6.4")
1797 (source
1798 (origin
1799 (method url-fetch)
1800 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
1801 "Date-Calc-XS-" version ".tar.gz"))
1802 (sha256
1803 (base32
1804 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
1805 (build-system perl-build-system)
1806 (propagated-inputs
1807 `(("perl-bit-vector" ,perl-bit-vector)
1808 ("perl-carp-clan" ,perl-carp-clan)
1809 ("perl-date-calc" ,perl-date-calc)))
1810 (home-page "http://search.cpan.org/dist/Date-Calc-XS")
1811 (synopsis "XS wrapper for Date::Calc")
1812 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
1813Date::Calc.")
1814 (license (list (package-license perl) lgpl2.0+))))
1815
bb1ba6b8
EB
1816(define-public perl-date-manip
1817 (package
1818 (name "perl-date-manip")
1819 (version "6.50")
1820 (source
1821 (origin
1822 (method url-fetch)
1823 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SB/SBECK/"
1824 "Date-Manip-" version ".tar.gz"))
1825 (sha256
1826 (base32
1827 "0zd0wbf91i49753rnf7m1lw197hdl5r97mxy0n43zdmcmhvkb3qq"))))
1828 (build-system perl-build-system)
bb8afbf5 1829 (native-inputs `(("perl-module-build" ,perl-module-build)))
bb1ba6b8
EB
1830 (arguments
1831 ;; Tests would require tzdata for timezone information, but tzdata is in
1832 ;; (gnu packages base) which would create a circular dependency. TODO:
1833 ;; Maybe put this package elsewhere so we can turn on tests.
1834 '(#:tests? #f))
1835 (home-page "http://search.cpan.org/dist/Date-Manip")
1836 (synopsis "Date manipulation routines")
1837 (description "Date::Manip is a series of modules for common date/time
1838operations, such as comparing two times, determining a date a given amount of
1839time from another, or parsing international times.")
1840 (license (package-license perl))))
1841
36dd5943
RW
1842(define-public perl-date-simple
1843 (package
1844 (name "perl-date-simple")
1845 (version "3.03")
1846 (source
1847 (origin
1848 (method url-fetch)
1849 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
1850 "Date-Simple-" version ".tar.gz"))
1851 (sha256
1852 (base32
1853 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
1854 (build-system perl-build-system)
1855 (home-page "http://search.cpan.org/dist/Date-Simple")
1856 (synopsis "Simple date handling")
1857 (description "Dates are complex enough without times and timezones. This
1858module may be used to create simple date objects. It handles validation,
1859interval arithmetic, and day-of-week calculation. It does not deal with
1860hours, minutes, seconds, and time zones.")
1861 ;; Can be used with either license.
1862 (license (list (package-license perl) gpl2+))))
1863
c90361b3
EB
1864(define-public perl-datetime
1865 (package
1866 (name "perl-datetime")
34048030 1867 (version "1.43")
c90361b3
EB
1868 (source
1869 (origin
1870 (method url-fetch)
1871 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1872 "DateTime-" version ".tar.gz"))
1873 (sha256
1874 (base32
34048030 1875 "0xgrcqs7zza7646g81j54z3fcxb8rw11ynlfm02afr436lgfnfql"))))
c90361b3
EB
1876 (build-system perl-build-system)
1877 (native-inputs
34048030
LF
1878 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
1879 ("perl-module-build" ,perl-module-build)
a2190ccc 1880 ("perl-test-fatal" ,perl-test-fatal)
c90361b3
EB
1881 ("perl-test-warnings" ,perl-test-warnings)))
1882 (propagated-inputs
1883 `(("perl-datetime-locale" ,perl-datetime-locale)
1884 ("perl-datetime-timezone" ,perl-datetime-timezone)
34048030 1885 ("perl-file-sharedir" ,perl-file-sharedir)
c90361b3
EB
1886 ("perl-params-validate" ,perl-params-validate)
1887 ("perl-try-tiny" ,perl-try-tiny)))
1888 (home-page "http://search.cpan.org/dist/DateTime")
1889 (synopsis "Date and time object for Perl")
1890 (description "DateTime is a class for the representation of date/time
1891combinations. It represents the Gregorian calendar, extended backwards in
1892time before its creation (in 1582).")
1893 (license artistic2.0)))
1894
7a146c25
RW
1895(define-public perl-datetime-calendar-julian
1896 (package
1897 (name "perl-datetime-calendar-julian")
1898 (version "0.04")
1899 (source
1900 (origin
1901 (method url-fetch)
1902 (uri (string-append "mirror://cpan/authors/id/P/PI/PIJLL/"
1903 "DateTime-Calendar-Julian-" version ".tar.gz"))
1904 (sha256
1905 (base32
1906 "03h0llkwsiw2d2ci1ah5x9sp8xrvnbgd471i5hnpgl5w32nnhndv"))))
1907 (build-system perl-build-system)
1908 ;; Only needed for tests
1909 (native-inputs
1910 `(("perl-datetime" ,perl-datetime)))
1911 (home-page "http://search.cpan.org/dist/DateTime-Calendar-Julian")
1912 (synopsis "Dates in the Julian calendar")
1913 (description "This package is a companion module to @code{DateTime.pm}.
1914It implements the Julian calendar. It supports everything that
1915@code{DateTime.pm} supports and more: about one day per century more, to be
1916precise.")
1917 (license (package-license perl))))
1918
f89fe3bf
EB
1919(define-public perl-datetime-set
1920 (package
1921 (name "perl-datetime-set")
d388e4e2 1922 (version "0.3900")
f89fe3bf
EB
1923 (source
1924 (origin
1925 (method url-fetch)
1926 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
1927 "DateTime-Set-" version ".tar.gz"))
1928 (sha256
1929 (base32
d388e4e2 1930 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
f89fe3bf 1931 (build-system perl-build-system)
a2190ccc
EB
1932 (native-inputs
1933 `(("perl-module-build" ,perl-module-build)))
f89fe3bf
EB
1934 (propagated-inputs
1935 `(("perl-datetime" ,perl-datetime)
1936 ("perl-params-validate" ,perl-params-validate)
1937 ("perl-set-infinite" ,perl-set-infinite)))
1938 (home-page "http://search.cpan.org/dist/DateTime-Set")
1939 (synopsis "DateTime set objects")
1940 (description "The DateTime::Set module provides a date/time sets
1941implementation. It allows, for example, the generation of groups of dates,
1942like \"every wednesday\", and then find all the dates matching that pattern,
1943within a time range.")
1944 (license (package-license perl))))
1945
21c9adcc
EB
1946(define-public perl-datetime-event-ical
1947 (package
1948 (name "perl-datetime-event-ical")
ff3034de 1949 (version "0.13")
21c9adcc
EB
1950 (source
1951 (origin
1952 (method url-fetch)
1953 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
1954 "DateTime-Event-ICal-" version ".tar.gz"))
1955 (sha256
1956 (base32
ff3034de 1957 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
21c9adcc
EB
1958 (build-system perl-build-system)
1959 (propagated-inputs
1960 `(("perl-datetime" ,perl-datetime)
1961 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
1962 (home-page "http://search.cpan.org/dist/DateTime-Event-ICal")
1963 (synopsis "DateTime rfc2445 recurrences")
1964 (description "This module provides convenience methods that let you easily
1965create DateTime::Set objects for RFC 2445 style recurrences.")
1966 (license (package-license perl))))
1967
47e049c4
EB
1968(define-public perl-datetime-event-recurrence
1969 (package
1970 (name "perl-datetime-event-recurrence")
dc8e2111 1971 (version "0.19")
47e049c4
EB
1972 (source
1973 (origin
1974 (method url-fetch)
1975 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
1976 "DateTime-Event-Recurrence-" version ".tar.gz"))
1977 (sha256
1978 (base32
dc8e2111 1979 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
47e049c4
EB
1980 (build-system perl-build-system)
1981 (propagated-inputs
1982 `(("perl-datetime" ,perl-datetime)
1983 ("perl-datetime-set" ,perl-datetime-set)))
1984 (home-page "http://search.cpan.org/dist/DateTime-Event-Recurrence")
1985 (synopsis "DateTime::Set extension for basic recurrences")
1986 (description "This module provides convenience methods that let you easily
1987create DateTime::Set objects for various recurrences, such as \"once a month\"
1988or \"every day\". You can also create more complicated recurrences, such as
1989\"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
1990 (license (package-license perl))))
1991
3dcfec09
EB
1992(define-public perl-datetime-format-builder
1993 (package
1994 (name "perl-datetime-format-builder")
1995 (version "0.81")
1996 (source
1997 (origin
1998 (method url-fetch)
1999 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2000 "DateTime-Format-Builder-" version ".tar.gz"))
2001 (sha256
2002 (base32
2003 "1vrkzw7kmxnyy403ykxgbg2kvgs99nggi4n9gi09ixivnn68mmbw"))))
2004 (build-system perl-build-system)
2005 (propagated-inputs
2006 `(("perl-class-factory-util" ,perl-class-factory-util)
2007 ("perl-datetime" ,perl-datetime)
2008 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
2009 ("perl-params-validate" ,perl-params-validate)))
2010 (home-page "http://search.cpan.org/dist/DateTime-Format-Builder")
e881752c 2011 (synopsis "Create DateTime parser classes and objects")
3dcfec09
EB
2012 (description "DateTime::Format::Builder creates DateTime parsers. Many
2013string formats of dates and times are simple and just require a basic regular
2014expression to extract the relevant information. Builder provides a simple way
2015to do this without writing reams of structural code.")
2016 (license artistic2.0)))
2017
b271f727
EB
2018(define-public perl-datetime-format-flexible
2019 (package
2020 (name "perl-datetime-format-flexible")
9e5df71e 2021 (version "0.28")
b271f727
EB
2022 (source
2023 (origin
2024 (method url-fetch)
2025 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
2026 "DateTime-Format-Flexible-" version ".tar.gz"))
2027 (sha256
2028 (base32
9e5df71e 2029 "1g63zs0q2x40h29r7in50c55g6kxiw3m2faw2p6c4rg74sj2k2b5"))))
b271f727
EB
2030 (build-system perl-build-system)
2031 (propagated-inputs
2032 `(("perl-datetime" ,perl-datetime)
2033 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
2034 ("perl-datetime-timezone" ,perl-datetime-timezone)
2035 ("perl-list-moreutils" ,perl-list-moreutils)
a2190ccc 2036 ("perl-module-pluggable" ,perl-module-pluggable)
b271f727
EB
2037 ("perl-test-mocktime" ,perl-test-mocktime)))
2038 (home-page "http://search.cpan.org/dist/DateTime-Format-Flexible")
2039 (synopsis "Parse data/time strings")
2040 (description "DateTime::Format::Flexible attempts to take any string you
2041give it and parse it into a DateTime object.")
2042 (license (package-license perl))))
2043
e58a2fa1
EB
2044(define-public perl-datetime-format-ical
2045 (package
2046 (name "perl-datetime-format-ical")
2047 (version "0.09")
2048 (source
2049 (origin
2050 (method url-fetch)
2051 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2052 "DateTime-Format-ICal-" version ".tar.gz"))
2053 (sha256
2054 (base32
2055 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
2056 (build-system perl-build-system)
a2190ccc
EB
2057 (native-inputs
2058 `(("perl-module-build" ,perl-module-build)))
e58a2fa1
EB
2059 (propagated-inputs
2060 `(("perl-datetime" ,perl-datetime)
2061 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
2062 ("perl-datetime-set" ,perl-datetime-set)
2063 ("perl-datetime-timezone" ,perl-datetime-timezone)
2064 ("perl-params-validate" ,perl-params-validate)))
2065 (home-page "http://search.cpan.org/dist/DateTime-Format-ICal")
2066 (synopsis "Parse and format iCal datetime and duration strings")
2067 (description "This module understands the ICal date/time and duration
2068formats, as defined in RFC 2445. It can be used to parse these formats in
2069order to create the appropriate objects.")
2070 (license (package-license perl))))
2071
69d2261f
EB
2072(define-public perl-datetime-format-natural
2073 (package
2074 (name "perl-datetime-format-natural")
09d94b2b 2075 (version "1.05")
69d2261f
EB
2076 (source
2077 (origin
2078 (method url-fetch)
2079 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
2080 "DateTime-Format-Natural-" version ".tar.gz"))
2081 (sha256
2082 (base32
09d94b2b 2083 "10ldrhz5rnpsd8qmqn1a4s0w5hhfbjrr13a93yx7kpp89g85pxqv"))))
69d2261f
EB
2084 (build-system perl-build-system)
2085 (native-inputs
a2190ccc
EB
2086 `(("perl-module-build" ,perl-module-build)
2087 ("perl-module-util" ,perl-module-util)
69d2261f
EB
2088 ("perl-test-mocktime" ,perl-test-mocktime)))
2089 (propagated-inputs
2090 `(("perl-boolean" ,perl-boolean)
2091 ("perl-clone" ,perl-clone)
2092 ("perl-date-calc" ,perl-date-calc)
2093 ("perl-date-calc-xs" ,perl-date-calc-xs)
2094 ("perl-datetime" ,perl-datetime)
2095 ("perl-datetime-timezone" ,perl-datetime-timezone)
2096 ("perl-list-moreutils" ,perl-list-moreutils)
2097 ("perl-params-validate" ,perl-params-validate)))
2098 (home-page "http://search.cpan.org/dist/DateTime-Format-Natural")
2099 (synopsis "Machine-readable date/time with natural parsing")
2100 (description "DateTime::Format::Natural takes a string with a human
2101readable date/time and creates a machine readable one by applying natural
2102parsing logic.")
2103 (license (package-license perl))))
2104
6f170fe5
EB
2105(define-public perl-datetime-format-strptime
2106 (package
2107 (name "perl-datetime-format-strptime")
e780fde5 2108 (version "1.73")
6f170fe5
EB
2109 (source
2110 (origin
2111 (method url-fetch)
2112 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2113 "DateTime-Format-Strptime-" version ".tar.gz"))
2114 (sha256
2115 (base32
e780fde5 2116 "1gmjcmvh81cla6yn2pvlkr7i25bspg90pzzsizrfb0c5xc37h1vd"))))
6f170fe5
EB
2117 (build-system perl-build-system)
2118 (propagated-inputs
2119 `(("perl-datetime" ,perl-datetime)
2120 ("perl-datetime-locale" ,perl-datetime-locale)
2121 ("perl-datetime-timezone" ,perl-datetime-timezone)
e780fde5
LF
2122 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
2123 ("perl-params-validate" ,perl-params-validate)
2124 ("perl-sub-name" ,perl-sub-name)
2125 ("perl-test-warnings" ,perl-test-warnings)))
6f170fe5
EB
2126 (home-page "http://search.cpan.org/dist/DateTime-Format-Strptime")
2127 (synopsis "Parse and format strp and strf time patterns")
2128 (description "This module implements most of `strptime(3)`, the POSIX
2129function that is the reverse of `strftime(3)`, for `DateTime`. While
2130`strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
2131takes a string and a pattern and returns the `DateTime` object associated.")
2132 (license artistic2.0)))
2133
e210472d
EB
2134(define-public perl-datetime-locale
2135 (package
2136 (name "perl-datetime-locale")
8ec0877a 2137 (version "1.16")
e210472d
EB
2138 (source
2139 (origin
2140 (method url-fetch)
2141 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2142 "DateTime-Locale-" version ".tar.gz"))
2143 (sha256
2144 (base32
8ec0877a 2145 "1zkc0wggbsczbj4qadahh197imr9fa6knxr10zl241lw2i14rbyz"))))
e210472d 2146 (build-system perl-build-system)
a2190ccc 2147 (native-inputs
8ec0877a
LF
2148 `(("perl-file-sharedir" ,perl-file-sharedir)
2149 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
2150 ("perl-test-warnings" ,perl-test-warnings)
2151 ("perl-test-requires" ,perl-test-requires)
2152 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2153 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
2154 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
2155 ("perl-module-build" ,perl-module-build)))
e210472d
EB
2156 (propagated-inputs
2157 `(("perl-list-moreutils" ,perl-list-moreutils)
8ec0877a 2158 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
e210472d
EB
2159 (home-page "http://search.cpan.org/dist/DateTime-Locale")
2160 (synopsis "Localization support for DateTime.pm")
2161 (description "The DateTime::Locale modules provide localization data for
2162the DateTime.pm class.")
2163 (license (package-license perl))))
2164
f12b77a8
EB
2165(define-public perl-datetime-timezone
2166 (package
2167 (name "perl-datetime-timezone")
1fdf14e1 2168 (version "2.13")
f12b77a8
EB
2169 (source
2170 (origin
2171 (method url-fetch)
2172 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2173 "DateTime-TimeZone-" version ".tar.gz"))
2174 (sha256
2175 (base32
1fdf14e1 2176 "1371sk4p9clygfwxzvivfqz6q9dy8gn3n4dr1424d0xqsv63jg9k"))))
f12b77a8
EB
2177 (build-system perl-build-system)
2178 (native-inputs
2179 `(("perl-test-fatal" ,perl-test-fatal)
2180 ("perl-test-requires" ,perl-test-requires)))
2181 (propagated-inputs
2182 `(("perl-class-singleton" ,perl-class-singleton)
2183 ("perl-list-allutils" ,perl-list-allutils)
2184 ("perl-module-runtime" ,perl-module-runtime)
1fdf14e1
LF
2185 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2186 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
f12b77a8
EB
2187 ("perl-try-tiny" ,perl-try-tiny)))
2188 (home-page "http://search.cpan.org/dist/DateTime-TimeZone")
2189 (synopsis "Time zone object for Perl")
2190 (description "This class is the base class for all time zone objects. A
2191time zone is represented internally as a set of observances, each of which
2192describes the offset from GMT for a given time period. Note that without the
2193DateTime module, this module does not do much. It's primary interface is
2194through a DateTime object, and most users will not need to directly use
2195DateTime::TimeZone methods.")
2196 (license (package-license perl))))
2197
ef961322
EB
2198(define-public perl-datetimex-easy
2199 (package
2200 (name "perl-datetimex-easy")
2201 (version "0.089")
2202 (source
2203 (origin
2204 (method url-fetch)
2205 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
2206 "DateTimeX-Easy-" version ".tar.gz"))
2207 (sha256
2208 (base32
2209 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
2210 (build-system perl-build-system)
2211 (native-inputs
2212 `(("perl-test-most" ,perl-test-most)))
2213 (propagated-inputs
2214 `(("perl-datetime" ,perl-datetime)
2215 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
2216 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
2217 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
2218 ("perl-timedate" ,perl-timedate)))
2219 (home-page "http://search.cpan.org/dist/DateTimeX-Easy")
2220 (synopsis "Parse date/time strings")
2221 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
2222to create DateTime objects, with some custom tweaks to smooth out the rough
2223edges (mainly concerning timezone detection and selection).")
2224 (license (package-license perl))))
2225
951e924c 2226(define-public perl-datetime-format-mail
2227 (package
2228 (name "perl-datetime-format-mail")
2229 (version "0.403")
2230 (source (origin
2231 (method url-fetch)
2232 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
2233 "DateTime-Format-Mail-" version ".tar.gz"))
2234 (sha256
2235 (base32
2236 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
2237 (build-system perl-build-system)
2238 (inputs
2239 `(("perl-datetime" ,perl-datetime)
2240 ("perl-params-validate" ,perl-params-validate)))
2241 (home-page "http://search.cpan.org/dist/DateTime-Format-Mail")
2242 (synopsis "Convert between DateTime and RFC2822/822 formats")
2243 (description "RFCs 2822 and 822 specify date formats to be used by email.
2244This module parses and emits such dates.")
2245 (license (package-license perl))))
2246
8a0773a2 2247(define-public perl-datetime-format-w3cdtf
2248 (package
2249 (name "perl-datetime-format-w3cdtf")
588bd05f 2250 (version "0.07")
8a0773a2 2251 (source (origin
2252 (method url-fetch)
2253 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
2254 "DateTime-Format-W3CDTF-" version ".tar.gz"))
2255 (sha256
2256 (base32
588bd05f 2257 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
8a0773a2 2258 (build-system perl-build-system)
2259 (inputs
2260 `(("perl-datetime" ,perl-datetime)))
2261 (native-inputs
2262 `(("perl-test-pod" ,perl-test-pod)
2263 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2264 (home-page "http://search.cpan.org/dist/DateTime-Format-W3CDTF")
2265 (synopsis "Parse and format W3CDTF datetime strings")
2266 (description
2267 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
2268defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
2269format of RSS 1.0. It can be used to parse these formats in order to create
2270the appropriate objects.")
2271 (license (package-license perl))))
2272
0b15ffbc
EB
2273(define-public perl-devel-caller
2274 (package
2275 (name "perl-devel-caller")
2276 (version "2.06")
2277 (source
2278 (origin
2279 (method url-fetch)
2280 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2281 "Devel-Caller-" version ".tar.gz"))
2282 (sha256
2283 (base32
2284 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
2285 (build-system perl-build-system)
2286 (propagated-inputs
2287 `(("perl-padwalker" ,perl-padwalker)))
2288 (home-page "http://search.cpan.org/dist/Devel-Caller")
2289 (synopsis "Meatier version of caller")
2290 (description "Devel::Caller provides meatier version of caller.")
2291 (license (package-license perl))))
7bda142b
EB
2292
2293(define-public perl-devel-checkbin
2294 (package
2295 (name "perl-devel-checkbin")
2296 (version "0.02")
2297 (source
2298 (origin
2299 (method url-fetch)
2300 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
2301 "Devel-CheckBin-" version ".tar.gz"))
2302 (sha256
2303 (base32
2304 "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m"))))
2305 (build-system perl-build-system)
bb8afbf5 2306 (native-inputs `(("perl-module-build" ,perl-module-build)))
7bda142b
EB
2307 (home-page "http://search.cpan.org/dist/Devel-CheckBin")
2308 (synopsis "Check that a command is available")
2309 (description "Devel::CheckBin is a perl module that checks whether a
2310particular command is available.")
2311 (license (package-license perl))))
0b15ffbc 2312
c1adb4eb
MB
2313(define-public perl-devel-checkcompiler
2314 (package
2315 (name "perl-devel-checkcompiler")
2316 (version "0.07")
2317 (source (origin
2318 (method url-fetch)
2319 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
2320 "Devel-CheckCompiler-" version ".tar.gz"))
2321 (sha256
2322 (base32
2323 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
2324 (build-system perl-build-system)
2325 (native-inputs
2326 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
2327 (home-page "http://search.cpan.org/dist/Devel-CheckCompiler")
2328 (synopsis "Check compiler availability")
2329 (description "@code{Devel::CheckCompiler} is a tiny module to check
2330whether a compiler is available. It can test for a C99 compiler, or
2331you can tell it to compile a C source file with optional linker flags.")
2332 (license (package-license perl))))
2333
b4387d86
CB
2334(define-public perl-devel-cycle
2335 (package
2336 (name "perl-devel-cycle")
2337 (version "1.12")
2338 (source
2339 (origin
2340 (method url-fetch)
2341 (uri (string-append
2342 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
2343 version
2344 ".tar.gz"))
2345 (sha256
2346 (base32
2347 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
2348 (build-system perl-build-system)
2349 (home-page
2350 "http://search.cpan.org/dist/Devel-Cycle")
2351 (synopsis "Find memory cycles in objects")
2352 (description
2353 "@code{Devel::Cycle} This is a tool for finding circular references in
2354objects and other types of references. Because of Perl's reference-count
2355based memory management, circular references will cause memory leaks.")
2356 (license perl-license)))
2357
70a9a491
EB
2358(define-public perl-devel-globaldestruction
2359 (package
2360 (name "perl-devel-globaldestruction")
2361 (version "0.13")
2362 (source
2363 (origin
2364 (method url-fetch)
2365 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2366 "Devel-GlobalDestruction-" version ".tar.gz"))
2367 (sha256
2368 (base32
2369 "0qn4iszgylnxjdkb6430f6a3ci7bcx9ih1az6bd5cbij1pf2965j"))))
2370 (build-system perl-build-system)
2371 (propagated-inputs
2372 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
2373 (home-page "http://search.cpan.org/dist/Devel-GlobalDestruction")
2374 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
2375 (description "Devel::GlobalDestruction provides a function returning the
1cd4027c 2376equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
70a9a491
EB
2377 (license (package-license perl))))
2378
4400eb95
EB
2379(define-public perl-devel-lexalias
2380 (package
2381 (name "perl-devel-lexalias")
2382 (version "0.05")
2383 (source
2384 (origin
2385 (method url-fetch)
2386 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2387 "Devel-LexAlias-" version ".tar.gz"))
2388 (sha256
2389 (base32
2390 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
2391 (build-system perl-build-system)
2392 (propagated-inputs
2393 `(("perl-devel-caller" ,perl-devel-caller)))
2394 (home-page "http://search.cpan.org/dist/Devel-LexAlias")
2395 (synopsis "Alias lexical variables")
2396 (description "Devel::LexAlias provides the ability to alias a lexical
2397variable in a subroutines scope to one of your choosing.")
2398 (license (package-license perl))))
2399
e2e3d62a
EB
2400(define-public perl-devel-overloadinfo
2401 (package
2402 (name "perl-devel-overloadinfo")
2d31b7f1 2403 (version "0.004")
e2e3d62a
EB
2404 (source
2405 (origin
2406 (method url-fetch)
2407 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
2408 "Devel-OverloadInfo-" version ".tar.gz"))
2409 (sha256
2410 (base32
2d31b7f1 2411 "0zckjhzdqa6smpp98y15mqafsyzwjxwrvk10snzhn2sb0r889s43"))))
e2e3d62a 2412 (build-system perl-build-system)
2d31b7f1
AS
2413 (native-inputs
2414 `(("perl-test-fatal" ,perl-test-fatal)))
e2e3d62a
EB
2415 (propagated-inputs
2416 `(("perl-package-stash" ,perl-package-stash)
2417 ("perl-sub-identify" ,perl-sub-identify)
2418 ("perl-mro-compat" ,perl-mro-compat)))
2419 (home-page "http://search.cpan.org/dist/Devel-OverloadInfo")
2420 (synopsis "Introspect overloaded operators")
2421 (description "Devel::OverloadInfo returns information about overloaded
2422operators for a given class (or object), including where in the inheritance
2423hierarchy the overloads are declared and where the code implementing it is.")
2424 (license (package-license perl))))
2425
81da66e2
EB
2426(define-public perl-devel-partialdump
2427 (package
2428 (name "perl-devel-partialdump")
0c61441a 2429 (version "0.18")
81da66e2
EB
2430 (source
2431 (origin
2432 (method url-fetch)
2433 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2434 "Devel-PartialDump-" version ".tar.gz"))
2435 (sha256
2436 (base32
0c61441a 2437 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
81da66e2
EB
2438 (build-system perl-build-system)
2439 (native-inputs
2440 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2441 ("perl-test-warn" ,perl-test-warn)
2442 ("perl-test-simple" ,perl-test-simple)))
2443 (propagated-inputs
2444 `(("perl-class-tiny" ,perl-class-tiny)
2445 ("perl-sub-exporter" ,perl-sub-exporter)
2446 ("perl-namespace-clean" ,perl-namespace-clean)))
2447 (home-page "http://search.cpan.org/dist/Devel-PartialDump")
2448 (synopsis "Partial dumping of data structures")
2449 (description "This module is a data dumper optimized for logging of
2450arbitrary parameters.")
2451 (license (package-license perl))))
2452
42350bbe
EB
2453(define-public perl-devel-stacktrace
2454 (package
2455 (name "perl-devel-stacktrace")
2456 (version "2.00")
2457 (source
2458 (origin
2459 (method url-fetch)
2460 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2461 "Devel-StackTrace-" version ".tar.gz"))
2462 (sha256
2463 (base32
2464 "1r65iq5i11xh0r0kp3pdycydnd3kxpdmxnp0hq9hx9lr60kygsqx"))))
2465 (build-system perl-build-system)
2466 (home-page "http://search.cpan.org/dist/Devel-StackTrace")
2467 (synopsis "Object representing a stack trace")
2468 (description "The Devel::StackTrace module contains two classes,
2469Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
2470information that can be retrieved via Perl's caller() function, as well as
2471providing a simple interface to this data.")
2472 (license artistic2.0)))
2473
5bfab17a
EB
2474(define-public perl-devel-stacktrace-ashtml
2475 (package
2476 (name "perl-devel-stacktrace-ashtml")
16e3c922 2477 (version "0.15")
5bfab17a
EB
2478 (source
2479 (origin
2480 (method url-fetch)
2481 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2482 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
2483 (sha256
2484 (base32
16e3c922 2485 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
5bfab17a
EB
2486 (build-system perl-build-system)
2487 (propagated-inputs
2488 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
2489 (home-page "http://search.cpan.org/dist/Devel-StackTrace-AsHTML")
2490 (synopsis "Displays stack trace in HTML")
2491 (description "Devel::StackTrace::AsHTML adds as_html method to
2492Devel::StackTrace which displays the stack trace in beautiful HTML, with code
2493snippet context and function parameters. If you call it on an instance of
2494Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
2495each stack frame.")
2496 (license (package-license perl))))
2497
73000926
EB
2498(define-public perl-devel-symdump
2499 (package
2500 (name "perl-devel-symdump")
0b147484 2501 (version "2.18")
73000926
EB
2502 (source
2503 (origin
2504 (method url-fetch)
2505 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
2506 "Devel-Symdump-" version ".tar.gz"))
2507 (sha256
2508 (base32
0b147484 2509 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
73000926
EB
2510 (build-system perl-build-system)
2511 (home-page "http://search.cpan.org/dist/Devel-Symdump")
2512 (synopsis "Dump symbol names or the symbol table")
2513 (description "Devel::Symdump provides access to the perl symbol table.")
2514 (license (package-license perl))))
2515
31170d13
EB
2516(define-public perl-digest-hmac
2517 (package
2518 (name "perl-digest-hmac")
2519 (version "1.03")
2520 (source
2521 (origin
2522 (method url-fetch)
2523 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2524 "Digest-HMAC-" version ".tar.gz"))
2525 (sha256
2526 (base32
2527 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
2528 (build-system perl-build-system)
2529 (home-page "http://search.cpan.org/dist/Digest-HMAC")
2530 (synopsis "Keyed-Hashing for Message Authentication")
2531 (description "The Digest::HMAC module follows the common Digest::
2532interface for the RFC 2104 HMAC mechanism.")
2533 (license (package-license perl))))
2534
8a28e717 2535(define-public perl-digest-md5
2536 (package
2537 (name "perl-digest-md5")
2538 (version "2.55")
2539 (source
2540 (origin
2541 (method url-fetch)
2542 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
2543 version ".tar.gz"))
2544 (sha256
2545 (base32
2546 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
2547 (build-system perl-build-system)
2548 (arguments
2549 `(#:phases
2550 (modify-phases %standard-phases
2551 (add-after 'build 'set-permissions
2552 (lambda _
2553 ;; Make MD5.so read-write so it can be stripped.
262c2d33 2554 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755))))))
8a28e717 2555 (home-page "http://search.cpan.org/dist/Digest-MD5")
2556 (synopsis "Perl interface to the MD-5 algorithm")
2557 (description
2558 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
2559algorithm from within Perl programs. The algorithm takes as
2560input a message of arbitrary length and produces as output a
2561128-bit \"fingerprint\" or \"message digest\" of the input.")
2562 (license (package-license perl))))
2563
73fc71ba
EB
2564(define-public perl-digest-sha1
2565 (package
2566 (name "perl-digest-sha1")
2567 (version "2.13")
2568 (source (origin
2569 (method url-fetch)
2570 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2571 "Digest-SHA1-" version ".tar.gz"))
2572 (sha256
2573 (base32
2574 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
2575 (build-system perl-build-system)
2576 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
2577 (description
2578 "This package provides 'Digest::SHA1', an implementation of the NIST
2579SHA-1 message digest algorithm for use by Perl programs.")
2580 (home-page (string-append "http://search.cpan.org/~gaas/Digest-SHA1-"
2581 version "/SHA1.pm"))
2582 (license (package-license perl))))
2583
b7d9aa59
EB
2584(define-public perl-dist-checkconflicts
2585 (package
2586 (name "perl-dist-checkconflicts")
2587 (version "0.11")
2588 (source (origin
2589 (method url-fetch)
2590 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2591 "Dist-CheckConflicts-" version ".tar.gz"))
2592 (sha256
2593 (base32
2594 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
2595 (build-system perl-build-system)
2596 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
2597 (propagated-inputs
2598 `(("perl-module-runtime" ,perl-module-runtime)))
2599 (home-page "http://search.cpan.org/dist/Dist-CheckConflicts")
2600 (synopsis "Declare version conflicts for your dist")
2601 (description "This module allows you to specify conflicting versions of
2602modules separately and deal with them after the module is done installing.")
2603 (license (package-license perl))))
2604
49a3fcc1
RW
2605(define-public perl-encode-detect
2606 (package
2607 (name "perl-encode-detect")
2608 (version "1.01")
2609 (source
2610 (origin
2611 (method url-fetch)
2612 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
2613 "Encode-Detect-" version ".tar.gz"))
2614 (sha256
2615 (base32
2616 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
2617 (build-system perl-build-system)
2618 (native-inputs
2619 `(("perl-module-build" ,perl-module-build)))
2620 (home-page "http://search.cpan.org/dist/Encode-Detect")
2621 (synopsis "Detect the encoding of data")
2622 (description "This package provides a class @code{Encode::Detect} to detect
2623the encoding of data.")
2624 (license mpl1.1)))
2625
891d9679
RW
2626(define-public perl-encode-eucjpascii
2627 (package
2628 (name "perl-encode-eucjpascii")
2629 (version "0.03")
2630 (source
2631 (origin
2632 (method url-fetch)
2633 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
2634 "Encode-EUCJPASCII-" version ".tar.gz"))
2635 (sha256
2636 (base32
2637 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
2638 (build-system perl-build-system)
2639 (home-page "http://search.cpan.org/dist/Encode-EUCJPASCII")
2640 (synopsis "ASCII mapping for eucJP encoding")
2641 (description "This package provides an ASCII mapping for the eucJP
2642encoding.")
2643 (license (package-license perl))))
2644
2bc1b85c
RW
2645(define-public perl-encode-jis2k
2646 (package
2647 (name "perl-encode-jis2k")
2648 (version "0.03")
2649 (source
2650 (origin
2651 (method url-fetch)
2652 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
2653 "Encode-JIS2K-" version ".tar.gz"))
2654 (sha256
2655 (base32
2656 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
2657 (build-system perl-build-system)
2658 (home-page "http://search.cpan.org/dist/Encode-JIS2K")
2659 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
2660 (description "This package provides encodings for JIS X 0212, which is
2661also known as JIS 2000.")
2662 (license (package-license perl))))
2663
01854420
RW
2664(define-public perl-encode-hanextra
2665 (package
2666 (name "perl-encode-hanextra")
2667 (version "0.23")
2668 (source
2669 (origin
2670 (method url-fetch)
2671 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
2672 "Encode-HanExtra-" version ".tar.gz"))
2673 (sha256
2674 (base32
2675 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
2676 (build-system perl-build-system)
f27954a0
LF
2677 (arguments
2678 '(#:phases
2679 (modify-phases %standard-phases
2680 (add-after 'unpack 'set-env
2681 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1"))))))
01854420
RW
2682 (home-page "http://search.cpan.org/dist/Encode-HanExtra")
2683 (synopsis "Additional Chinese encodings")
2684 (description "This Perl module provides Chinese encodings that are not
2685part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
2686\"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
2687\"UNISYS\".")
2688 (license expat)))
2689
f5594729
BW
2690(define-public perl-env-path
2691 (package
2692 (name "perl-env-path")
2693 (version "0.19")
2694 (source
2695 (origin
2696 (method url-fetch)
2697 (uri (string-append
2698 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
2699 version
2700 ".tar.gz"))
2701 (sha256
2702 (base32
2703 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
2704 (build-system perl-build-system)
2705 (home-page "http://search.cpan.org/dist/Env-Path")
2706 (synopsis "Advanced operations on path variables")
2707 (description "@code{Env::Path} presents an object-oriented interface to
2708path variables, defined as that subclass of environment variables which name
8f65585b 2709an ordered list of file system elements separated by a platform-standard
f5594729
BW
2710separator.")
2711 (license (package-license perl))))
2712
2c157e8b
EB
2713(define-public perl-error
2714 (package
2715 (name "perl-error")
2716 (version "0.17023")
2717 (source (origin
2718 (method url-fetch)
2719 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
2720 "Error-" version ".tar.gz"))
2721 (sha256
2722 (base32
2723 "0dsxic78mxy30qvbbdzfyp501hbkwhnbmafqfxipr0yqfy8f2j5g"))))
2724 (build-system perl-build-system)
a2190ccc 2725 (native-inputs `(("perl-module-build" ,perl-module-build)))
2c157e8b
EB
2726 (home-page "http://search.cpan.org/dist/Error")
2727 (synopsis "OO-ish Error/Exception handling for Perl")
e881752c
AK
2728 (description "The Error package provides two interfaces. Firstly Error
2729provides a procedural interface to exception handling. Secondly Error is a
2c157e8b
EB
2730base class for errors/exceptions that can either be thrown, for subsequent
2731catch, or can simply be recorded.")
2732 (license (package-license perl))))
2733
8bc9515d
EB
2734(define-public perl-eval-closure
2735 (package
2736 (name "perl-eval-closure")
19a65e7c 2737 (version "0.14")
8bc9515d
EB
2738 (source
2739 (origin
2740 (method url-fetch)
2741 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2742 "Eval-Closure-" version ".tar.gz"))
2743 (sha256
2744 (base32
19a65e7c 2745 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
8bc9515d
EB
2746 (build-system perl-build-system)
2747 (native-inputs
2748 `(("perl-test-fatal" ,perl-test-fatal)
2749 ("perl-test-requires" ,perl-test-requires)))
2750 (propagated-inputs
2751 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
2752 (home-page "http://search.cpan.org/dist/Eval-Closure")
2753 (synopsis "Safely and cleanly create closures via string eval")
2754 (description "String eval is often used for dynamic code generation. For
2755instance, Moose uses it heavily, to generate inlined versions of accessors and
2756constructors, which speeds code up at runtime by a significant amount. String
2757eval is not without its issues however - it's difficult to control the scope
2758it's used in (which determines which variables are in scope inside the eval),
2759and it's easy to miss compilation errors, since eval catches them and sticks
1cd4027c 2760them in $@@ instead. This module attempts to solve these problems. It
8bc9515d
EB
2761provides an eval_closure function, which evals a string in a clean
2762environment, other than a fixed list of specified variables. Compilation
2763errors are rethrown automatically.")
2764 (license (package-license perl))))
2765
3a8ee9d1
EB
2766(define-public perl-exception-class
2767 (package
2768 (name "perl-exception-class")
2769 (version "1.39")
2770 (source
2771 (origin
2772 (method url-fetch)
2773 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2774 "Exception-Class-" version ".tar.gz"))
2775 (sha256
2776 (base32
2777 "10r06v6568s33p6h9f9ml0iabc07id86mjkf74gy7ld6d5m7b741"))))
2778 (build-system perl-build-system)
2779 (propagated-inputs
2780 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
2781 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
2782 (home-page "http://search.cpan.org/dist/Exception-Class")
2783 (synopsis "Allows you to declare real exception classes in Perl")
2784 (description "Exception::Class allows you to declare exception hierarchies
2785in your modules in a \"Java-esque\" manner.")
2786 (license (package-license perl))))
2787
63edfca4
EB
2788(define-public perl-exporter-lite
2789 (package
2790 (name "perl-exporter-lite")
0e8186eb 2791 (version "0.08")
63edfca4
EB
2792 (source (origin
2793 (method url-fetch)
2794 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
2795 "Exporter-Lite-" version ".tar.gz"))
2796 (sha256
2797 (base32
0e8186eb 2798 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
63edfca4
EB
2799 (build-system perl-build-system)
2800 (synopsis "Lightweight exporting of functions and variables")
2801 (description
2802 "Exporter::Lite is an alternative to Exporter, intended to provide a
2803lightweight subset of the most commonly-used functionality. It supports
1cd4027c 2804import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
0e8186eb 2805 (home-page "http://search.cpan.org/dist/Exporter-Lite")
63edfca4 2806 (license (package-license perl))))
8ba06a38 2807
a595c108
EB
2808(define-public perl-exporter-tiny
2809 (package
2810 (name "perl-exporter-tiny")
2811 (version "0.042")
2812 (source
2813 (origin
2814 (method url-fetch)
2815 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
2816 "Exporter-Tiny-" version ".tar.gz"))
2817 (sha256
2818 (base32
2819 "0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
2820 (build-system perl-build-system)
2821 (home-page "http://search.cpan.org/dist/Exporter-Tiny")
2822 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
2823 (description "Exporter::Tiny supports many of Sub::Exporter's
2824external-facing features including renaming imported functions with the `-as`,
2825`-prefix` and `-suffix` options; explicit destinations with the `into` option;
2826and alternative installers with the `installler` option. But it's written in
2827only about 40% as many lines of code and with zero non-core dependencies.")
2828 (license (package-license perl))))
2829
9c8f0765
EB
2830(define-public perl-extutils-installpaths
2831 (package
2832 (name "perl-extutils-installpaths")
2833 (version "0.010")
2834 (source
2835 (origin
2836 (method url-fetch)
2837 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2838 "ExtUtils-InstallPaths-" version ".tar.gz"))
2839 (sha256
2840 (base32
2841 "0mi1px42in7i442jqncg3gmxd5zn7sw5b2s85h690rz433qvyk6i"))))
2842 (build-system perl-build-system)
2843 (propagated-inputs
2844 `(("perl-extutils-config" ,perl-extutils-config)))
2845 (home-page "http://search.cpan.org/dist/ExtUtils-InstallPaths")
2846 (synopsis "Build.PL install path logic made easy")
2847 (description "This module tries to make install path resolution as easy as
2848possible.")
2849 (license (package-license perl))))
2850
6eb28ece
EB
2851(define-public perl-extutils-config
2852 (package
2853 (name "perl-extutils-config")
2854 (version "0.008")
2855 (source
2856 (origin
2857 (method url-fetch)
2858 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2859 "ExtUtils-Config-" version ".tar.gz"))
2860 (sha256
2861 (base32
2862 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
2863 (build-system perl-build-system)
2864 (home-page "http://search.cpan.org/dist/ExtUtils-Config")
2865 (synopsis "Wrapper for perl's configuration")
2866 (description "ExtUtils::Config is an abstraction around the %Config hash.
2867By itself it is not a particularly interesting module by any measure, however
2868it ties together a family of modern toolchain modules.")
2869 (license (package-license perl))))
2870
84e8b19f
MB
2871(define-public perl-extutils-depends
2872 (package
2873 (name "perl-extutils-depends")
2874 (version "0.405")
2875 (source (origin
2876 (method url-fetch)
2877 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
2878 "ExtUtils-Depends-" version ".tar.gz"))
2879 (sha256
2880 (base32
2881 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
2882 (build-system perl-build-system)
2883 (native-inputs
2884 `(("perl-test-number-delta" ,perl-test-number-delta)))
2885 (home-page "http://search.cpan.org/dist/ExtUtils-Depends")
2886 (synopsis "Easily build XS extensions that depend on XS extensions")
2887 (description
2888 "This module tries to make it easy to build Perl extensions that use
2889functions and typemaps provided by other perl extensions. This means that a
2890perl extension is treated like a shared library that provides also a C and an
2891XS interface besides the perl one.")
2892 (license (package-license perl))))
2893
0bcb85be
EB
2894(define-public perl-extutils-helpers
2895 (package
2896 (name "perl-extutils-helpers")
2897 (version "0.022")
2898 (source
2899 (origin
2900 (method url-fetch)
2901 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2902 "ExtUtils-Helpers-" version ".tar.gz"))
2903 (sha256
2904 (base32
2905 "15dalfwmpfmifw312i5pwiai8134pxf7b2804shlqhdk1xqczy6k"))))
2906 (build-system perl-build-system)
2907 (home-page "http://search.cpan.org/dist/ExtUtils-Helpers")
2908 (synopsis "Various portability utilities for module builders")
2909 (description "This module provides various portable helper functions for
2910module building modules.")
2911 (license (package-license perl))))
2912
81157cf5
RW
2913(define-public perl-extutils-libbuilder
2914 (package
2915 (name "perl-extutils-libbuilder")
2916 (version "0.08")
2917 (source
2918 (origin
2919 (method url-fetch)
2920 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
2921 "ExtUtils-LibBuilder-" version ".tar.gz"))
2922 (sha256
2923 (base32
2924 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
2925 (build-system perl-build-system)
2926 (native-inputs
2927 `(("perl-module-build" ,perl-module-build)))
2928 (home-page "http://search.cpan.org/dist/ExtUtils-LibBuilder")
2929 (synopsis "Tool to build C libraries")
2930 (description "Some Perl modules need to ship C libraries together with
2931their Perl code. Although there are mechanisms to compile and link (or glue)
2932C code in your Perl programs, there isn't a clear method to compile standard,
2933self-contained C libraries. This module main goal is to help in that task.")
2934 (license (package-license perl))))
2935
38e29d03
MB
2936(define-public perl-extutils-pkgconfig
2937 (package
2938 (name "perl-extutils-pkgconfig")
2939 (version "1.15")
2940 (source (origin
2941 (method url-fetch)
2942 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
2943 "ExtUtils-PkgConfig-" version ".tar.gz"))
2944 (sha256
2945 (base32
2946 "1cxh6w8vmyqmhl6afys2q6z6jkp1m6zvacpk70196zmk48p1kcv9"))))
2947 (build-system perl-build-system)
2948 (propagated-inputs
2949 `(("pkg-config" ,pkg-config)))
2950 (home-page "http://search.cpan.org/dist/ExtUtils-PkgConfig")
2951 (synopsis "Simplistic interface to pkg-config")
2952 (description
2953 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
2954@command{pkg-config} utility, intended for use in the @file{Makefile.PL}
2955of perl extensions which bind libraries that @command{pkg-config} knows.
2956It is really just boilerplate code that you would have written yourself.")
2957 (license lgpl2.1+)))
2958
a833ab56
EB
2959(define-public perl-file-changenotify
2960 (package
2961 (name "perl-file-changenotify")
2962 (version "0.24")
2963 (source
2964 (origin
2965 (method url-fetch)
2966 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2967 "File-ChangeNotify-" version ".tar.gz"))
2968 (sha256
2969 (base32
2970 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
2971 (build-system perl-build-system)
2972 (native-inputs
a2190ccc
EB
2973 `(("perl-module-build" ,perl-module-build)
2974 ("perl-test-exception" ,perl-test-exception)))
a833ab56
EB
2975 (propagated-inputs
2976 `(("perl-class-load" ,perl-class-load)
2977 ("perl-list-moreutils" ,perl-list-moreutils)
a2190ccc 2978 ("perl-module-pluggable" ,perl-module-pluggable)
a833ab56
EB
2979 ("perl-moose" ,perl-moose)
2980 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
2981 ("perl-moosex-semiaffordanceaccessor"
2982 ,perl-moosex-semiaffordanceaccessor)
2983 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2984 (home-page "http://search.cpan.org/dist/File-ChangeNotify")
2985 (synopsis "Watch for changes to files")
2986 (description "This module provides a class to monitor a directory for
2987changes made to any file.")
2988 (license artistic2.0)))
2989
a3fe2806
EB
2990(define-public perl-file-copy-recursive
2991 (package
2992 (name "perl-file-copy-recursive")
2993 (version "0.38")
2994 (source
2995 (origin
2996 (method url-fetch)
2997 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
2998 "File-Copy-Recursive-" version ".tar.gz"))
2999 (sha256
3000 (base32
3001 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
3002 (build-system perl-build-system)
3003 (home-page "http://search.cpan.org/dist/File-Copy-Recursive")
3004 (synopsis "Recursively copy files and directories")
3005 (description "This module has 3 functions: one to copy files only, one to
3006copy directories only, and one to do either depending on the argument's
3007type.")
3008 (license (package-license perl))))
3009
e91d4acc
EB
3010(define-public perl-file-find-rule
3011 (package
3012 (name "perl-file-find-rule")
3013 (version "0.33")
3014 (source
3015 (origin
3016 (method url-fetch)
3017 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3018 "File-Find-Rule-" version ".tar.gz"))
3019 (sha256
3020 (base32
3021 "0w73b4jr2fcrd74a1w3b2jryq3mqzc8z5mk7ia9p85xn3qmpa5r4"))))
3022 (build-system perl-build-system)
3023 (propagated-inputs
3024 `(("perl-text-glob" ,perl-text-glob)
3025 ("perl-number-compare" ,perl-number-compare)))
3026 (home-page "http://search.cpan.org/dist/File-Find-Rule")
3027 (synopsis "Alternative interface to File::Find")
3028 (description "File::Find::Rule is a friendlier interface to File::Find.
3029It allows you to build rules which specify the desired files and
3030directories.")
3031 (license (package-license perl))))
3032
b0c2ae50
EB
3033(define-public perl-file-find-rule-perl
3034 (package
3035 (name "perl-file-find-rule-perl")
67989999 3036 (version "1.15")
b0c2ae50
EB
3037 (source
3038 (origin
3039 (method url-fetch)
67989999 3040 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
b0c2ae50
EB
3041 "File-Find-Rule-Perl-" version ".tar.gz"))
3042 (sha256
3043 (base32
67989999 3044 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
b0c2ae50
EB
3045 (build-system perl-build-system)
3046 (propagated-inputs
3047 `(("perl-file-find-rule" ,perl-file-find-rule)
3048 ("perl-params-util" ,perl-params-util)
3049 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
3050 (home-page "http://search.cpan.org/dist/File-Find-Rule-Perl")
3051 (synopsis "Common rules for searching for Perl things")
3052 (description "File::Find::Rule::Perl provides methods for finding various
3053types Perl-related files, or replicating search queries run on a distribution
3054in various parts of the CPAN ecosystem.")
3055 (license (package-license perl))))
4ee88d69 3056
b33fdcc4
BW
3057(define-public perl-file-grep
3058 (package
3059 (name "perl-file-grep")
3060 (version "0.02")
3061 (source
3062 (origin
3063 (method url-fetch)
3064 (uri (string-append
3065 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
3066 version
3067 ".tar.gz"))
3068 (sha256
3069 (base32
3070 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
3071 (build-system perl-build-system)
3072 (home-page "http://search.cpan.org/dist/File-Grep")
3073 (synopsis "Matches patterns in a series of files")
3074 (description "@code{File::Grep} provides similar functionality as perl's
3075builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
3076over a passed filelist instead of arrays. While trivial, this module can
3077provide a quick dropin when such functionality is needed.")
3078 (license (package-license perl))))
3079
4ee88d69
EB
3080(define-public perl-file-homedir
3081 (package
3082 (name "perl-file-homedir")
72095389 3083 (version "1.002")
4ee88d69
EB
3084 (source
3085 (origin
3086 (method url-fetch)
72095389 3087 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4ee88d69
EB
3088 "File-HomeDir-" version ".tar.gz"))
3089 (sha256
3090 (base32
72095389 3091 "0x62hn8rc7ninf9nlp69h61yh21g4cbq2g81sh64cf2ify2hqk7b"))))
4ee88d69
EB
3092 (build-system perl-build-system)
3093 (propagated-inputs
72095389 3094 `(("perl-file-which" ,perl-file-which)))
4ee88d69
EB
3095 (arguments `(#:tests? #f)) ;Not appropriate for chroot
3096 (home-page "http://search.cpan.org/dist/File-HomeDir")
3097 (synopsis "Find your home and other directories on any platform")
3098 (description "File::HomeDir is a module for locating the directories that
e881752c 3099are \"owned\" by a user (typically your user) and to solve the various issues
4ee88d69
EB
3100that arise trying to find them consistently across a wide variety of
3101platforms.")
3102 (license (package-license perl))))
b0c2ae50 3103
b1ed9cf1
BW
3104(define-public perl-file-path
3105 (package
3106 (name "perl-file-path")
9c8fb06e 3107 (version "2.13")
b1ed9cf1
BW
3108 (source
3109 (origin
3110 (method url-fetch)
3111 (uri (string-append
9c8fb06e 3112 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
b1ed9cf1
BW
3113 version
3114 ".tar.gz"))
3115 (sha256
3116 (base32
9c8fb06e 3117 "039gc0i5cbdmidl8j8x195yykwcdmzwawmpapnysvljl8l33jqwj"))))
b1ed9cf1
BW
3118 (build-system perl-build-system)
3119 (home-page "http://search.cpan.org/dist/File-Path")
3120 (synopsis "Create or remove directory trees")
3121 (description "This module provide a convenient way to create directories
3122of arbitrary depth and to delete an entire directory subtree from the
8f65585b 3123file system.")
b1ed9cf1
BW
3124 (license (package-license perl))))
3125
21b7cf42
AS
3126(define-public perl-file-pushd
3127 (package
3128 (name "perl-file-pushd")
3129 (version "1.014")
3130 (source
3131 (origin
3132 (method url-fetch)
3133 (uri (string-append
3134 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
3135 version
3136 ".tar.gz"))
3137 (sha256
3138 (base32
3139 "02rlqvyy7gly3dsqwaa81aisyy9c791b8xvwzczcbgmcwgzkgaxm"))))
3140 (build-system perl-build-system)
3141 (home-page
3142 "http://search.cpan.org/dist/File-pushd")
3143 (synopsis
3144 "Change directory temporarily for a limited scope")
3145 (description "@code{File::pushd} does a temporary @code{chdir} that is
3146easily and automatically reverted, similar to @code{pushd} in some Unix
3147command shells. It works by creating an object that caches the original
3148working directory. When the object is destroyed, the destructor calls
3149@code{chdir} to revert to the original working directory. By storing the
3150object in a lexical variable with a limited scope, this happens automatically
3151at the end of the scope.")
3152 (license asl2.0)))
3153
73fc71ba
EB
3154(define-public perl-file-list
3155 (package
3156 (name "perl-file-list")
3157 (version "0.3.1")
3158 (source (origin
3159 (method url-fetch)
3160 (uri (string-append
3161 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
3162 version ".tar.gz"))
3163 (sha256
3164 (base32
3165 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
3166 (build-system perl-build-system)
3167 (arguments
3168 `(#:phases
dc1d3cde
KK
3169 (modify-phases %standard-phases
3170 (add-after 'unpack 'cd
3171 (lambda _ (chdir "List") #t)))))
73fc71ba
EB
3172 (license (package-license perl))
3173 (synopsis "Perl extension for crawling directory trees and compiling
3174lists of files")
3175 (description
3176 "The File::List module crawls the directory tree starting at the
3177provided base directory and can return files (and/or directories if desired)
3178matching a regular expression.")
3179 (home-page "http://search.cpan.org/~dopacki/File-List/")))
3180
4a402425
EB
3181(define-public perl-file-remove
3182 (package
3183 (name "perl-file-remove")
44455ab9 3184 (version "1.57")
4a402425
EB
3185 (source
3186 (origin
3187 (method url-fetch)
44455ab9 3188 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
4a402425
EB
3189 "File-Remove-" version ".tar.gz"))
3190 (sha256
3191 (base32
44455ab9 3192 "1b814lw181kkqh6c1n4p2zlzzsq6ic5pfpr831nphf2w2rhcvgmk"))))
4a402425
EB
3193 (build-system perl-build-system)
3194 (home-page "http://search.cpan.org/dist/File-Remove")
3195 (synopsis "Remove files and directories in Perl")
3196 (description "File::Remove::remove removes files and directories. It acts
3197like /bin/rm, for the most part. Although \"unlink\" can be given a list of
3198files, it will not remove directories; this module remedies that. It also
e881752c 3199accepts wildcards, * and ?, as arguments for file names.")
4a402425
EB
3200 (license (package-license perl))))
3201
1e507297
EB
3202(define-public perl-file-sharedir
3203 (package
3204 (name "perl-file-sharedir")
1c0c6085 3205 (version "1.104")
1e507297
EB
3206 (source
3207 (origin
3208 (method url-fetch)
3209 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3210 "File-ShareDir-" version ".tar.gz"))
3211 (sha256
3212 (base32
1c0c6085 3213 "1bqwhk3qfg60bkpi5b83bh93sng8jx20i3ka5sixc0prrppjidh7"))))
1e507297
EB
3214 (build-system perl-build-system)
3215 (native-inputs
3216 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3217 (propagated-inputs
3218 `(("perl-class-inspector" ,perl-class-inspector)))
3219 (home-page "http://search.cpan.org/dist/File-ShareDir")
3220 (synopsis "Locate per-dist and per-module shared files")
3221 (description "The intent of File::ShareDir is to provide a companion to
3222Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3223module to have access to a large amount of read-only data that is stored on
3224the file-system at run-time. Once the files have been installed to the
3225correct directory, you can use File::ShareDir to find your files again after
3226the installation.")
3227 (license (package-license perl))))
3228
13d73c42
LF
3229(define-public perl-file-sharedir-dist
3230 (package
3231 (name "perl-file-sharedir-dist")
3232 (version "0.04")
3233 (source
3234 (origin
3235 (method url-fetch)
3236 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3237 "File-ShareDir-Dist-" version ".tar.gz"))
3238 (sha256
3239 (base32
3240 "028vnjw3fdmwk540w3b07cmr93ap0s13ni2b4c7iv56mgyy6gfc1"))))
3241 (build-system perl-build-system)
3242 (home-page "http://search.cpan.org/dist/File-ShareDir-Dist")
3243 (synopsis "Locate per-dist shared files")
3244 (description "File::ShareDir::Dist finds share directories for
3245distributions. It is a companion module to File::ShareDir.")
3246 (license (package-license perl))))
3247
e55d07b1
EB
3248(define-public perl-file-sharedir-install
3249 (package
3250 (name "perl-file-sharedir-install")
7ab18335 3251 (version "0.11")
e55d07b1
EB
3252 (source
3253 (origin
3254 (method url-fetch)
7ab18335 3255 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
e55d07b1
EB
3256 "File-ShareDir-Install-" version ".tar.gz"))
3257 (sha256
3258 (base32
7ab18335 3259 "1j0cw1aq9fdv9kl1a6fnfa4zihsvmcqzy9sb0xk0i9pyx5r8ggrj"))))
e55d07b1 3260 (build-system perl-build-system)
7ab18335
LF
3261 (native-inputs
3262 `(("perl-module-build" ,perl-module-build)))
e55d07b1
EB
3263 (home-page "http://search.cpan.org/dist/File-ShareDir-Install")
3264 (synopsis "Install shared files")
3265 (description "File::ShareDir::Install allows you to install read-only data
3266files from a distribution. It is a companion module to File::ShareDir, which
3267allows you to locate these files after installation.")
3268 (license (package-license perl))))
3269
38973df7
EB
3270(define-public perl-file-slurp
3271 (package
3272 (name "perl-file-slurp")
3273 (version "9999.19")
3274 (source
3275 (origin
3276 (method url-fetch)
3277 (uri (string-append "mirror://cpan/authors/id/U/UR/URI/"
3278 "File-Slurp-" version ".tar.gz"))
3279 (sha256
3280 (base32
3281 "0hrn4nipwx40d6ji8ssgr5nw986z9iqq8cn0kdpbszh9jplynaff"))))
3282 (build-system perl-build-system)
3283 (home-page "http://search.cpan.org/dist/File-Slurp")
3284 (synopsis "Reading/Writing/Modifying of complete files")
3285 (description "File::Slurp provides subroutines to read or write entire
3286files with a simple call. It also has a subroutine for reading the list of
e881752c 3287file names in a directory.")
38973df7
EB
3288 (license (package-license perl))))
3289
8a525c3f
BW
3290(define-public perl-file-slurper
3291 (package
3292 (name "perl-file-slurper")
3293 (version "0.008")
3294 (source
3295 (origin
3296 (method url-fetch)
3297 (uri (string-append
3298 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3299 version
3300 ".tar.gz"))
3301 (sha256
3302 (base32
3303 "0cyjspspms6zyjcqz9v18dbs574g085h2jzjh41xvsrc1qa8bxhh"))))
3304 (build-system perl-build-system)
3305 (propagated-inputs
3306 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3307 (home-page "http://search.cpan.org/dist/File-Slurper")
3308 (synopsis "Simple, sane and efficient module to slurp a file")
3309 (description "This module provides functions for fast and correct file
3310slurping and spewing. All functions are optionally exported.")
3311 (license (package-license perl))))
3312
8aad6466
RW
3313(define-public perl-file-slurp-tiny
3314 (package
3315 (name "perl-file-slurp-tiny")
3316 (version "0.004")
3317 (source (origin
3318 (method url-fetch)
3319 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3320 "File-Slurp-Tiny-" version ".tar.gz"))
3321 (sha256
3322 (base32
3323 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3324 (build-system perl-build-system)
3325 (home-page "http://search.cpan.org/dist/File-Slurp-Tiny")
3326 (synopsis "Simple file reader and writer")
3327 (description
3328 "This module provides functions for fast reading and writing of files.")
3329 (license (package-license perl))))
3330
29b6ca73
EB
3331(define-public perl-file-temp
3332 (package
3333 (name "perl-file-temp")
3334 (version "0.2304")
3335 (source
3336 (origin
3337 (method url-fetch)
3338 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3339 "File-Temp-" version ".tar.gz"))
3340 (sha256
3341 (base32
3342 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
3343 (build-system perl-build-system)
3344 (propagated-inputs
3345 `(("perl-parent" ,perl-parent)))
3346 (home-page "http://search.cpan.org/dist/File-Temp")
3347 (synopsis "Return name and handle of a temporary file safely")
3348 (description "File::Temp can be used to create and open temporary files in
3349a safe way.")
3350 (license (package-license perl))))
3351
73fc71ba
EB
3352(define-public perl-file-which
3353 (package
3354 (name "perl-file-which")
3355 (version "1.09")
3356 (source (origin
3357 (method url-fetch)
3358 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3359 "File-Which-" version ".tar.gz"))
3360 (sha256
3361 (base32
3362 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
3363 (build-system perl-build-system)
3364 (native-inputs `(("test-script" ,perl-test-script)))
3365 (synopsis "Portable implementation of the `which' utility")
3366 (description
3367 "File::Which was created to be able to get the paths to executable
3368programs on systems under which the `which' program wasn't implemented in the
3369shell.")
3370 (home-page (string-append "http://search.cpan.org/~adamk/"
3371 "File-Which-" version))
3372 (license (package-license perl))))
3373
7640c62d
AS
3374(define-public perl-file-zglob
3375 (package
3376 (name "perl-file-zglob")
3377 (version "0.11")
3378 (source (origin
3379 (method url-fetch)
3380 (uri (string-append
3381 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
3382 version ".tar.gz"))
3383 (sha256
3384 (base32
3385 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
3386 (build-system perl-build-system)
9dab5017
MB
3387 (native-inputs
3388 `(("perl-module-install" ,perl-module-install)))
7640c62d
AS
3389 (home-page "http://search.cpan.org/dist/File-Zglob")
3390 (synopsis "Extended Unix style glob functionality")
3391 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
3392functionality; it returns a list of file names that match the given pattern.
3393For instance, it supports the @code{**/*.pm} form.")
3394 (license (package-license perl))))
3395
e681e347
AS
3396(define-public perl-getopt-long
3397 (package
3398 (name "perl-getopt-long")
3399 (version "v2.49.1")
3400 (source
3401 (origin
3402 (method url-fetch)
3403 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
3404 "Getopt-Long-" (substring version 1) ".tar.gz"))
3405 (sha256
3406 (base32
3407 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
3408 (build-system perl-build-system)
3409 (home-page "http://search.cpan.org/dist/Getopt-Long")
3410 (synopsis "Module to handle parsing command line options")
3411 (description "The @code{Getopt::Long} module implements an extended getopt
3412function called @code{GetOptions()}. It parses the command line from
3413@code{ARGV}, recognizing and removing specified options and their possible
3414values.
3415
3416This function adheres to the POSIX syntax for command line options, with GNU
3417extensions. In general, this means that options have long names instead of
3418single letters, and are introduced with a double dash \"--\". Support for
3419bundling of command line options, as was the case with the more traditional
3420single-letter approach, is provided but not enabled by default.")
3421 ;; Can be used with either license.
3422 (license (list (package-license perl) gpl2+))))
3423
dd34630f
EB
3424(define-public perl-getopt-long-descriptive
3425 (package
3426 (name "perl-getopt-long-descriptive")
3427 (version "0.098")
3428 (source
3429 (origin
3430 (method url-fetch)
3431 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3432 "Getopt-Long-Descriptive-" version ".tar.gz"))
3433 (sha256
3434 (base32
3435 "08lphvqshcajvvd6z4rvcda6rx5kz8pysrsip4nfv2mbks95p9ma"))))
3436 (build-system perl-build-system)
3437 (native-inputs
3438 `(("perl-test-fatal" ,perl-test-fatal)
3439 ("perl-test-warnings" ,perl-test-warnings)))
3440 (propagated-inputs
3441 `(("perl-params-validate" ,perl-params-validate)
3442 ("perl-sub-exporter" ,perl-sub-exporter)))
3443 (home-page "http://search.cpan.org/dist/Getopt-Long-Descriptive")
3444 (synopsis "Getopt::Long, but simpler and more powerful")
3445 (description "Getopt::Long::Descriptive is yet another Getopt library.
3446It's built atop Getopt::Long, and gets a lot of its features, but tries to
3447avoid making you think about its huge array of options. It also provides
3448usage (help) messages, data validation, and a few other useful features.")
3449 (license (package-license perl))))
3450
73fc71ba
EB
3451(define-public perl-getopt-tabular
3452 (package
3453 (name "perl-getopt-tabular")
3454 (version "0.3")
3455 (source (origin
3456 (method url-fetch)
3457 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
3458 "Getopt-Tabular-" version ".tar.gz"))
3459 (sha256
3460 (base32
3461 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
3462 (build-system perl-build-system)
3463 (synopsis "Table-driven argument parsing for Perl")
3464 (description
3465 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
3466vaguely inspired by John Ousterhout's Tk_ParseArgv.")
3467 (home-page (string-append "http://search.cpan.org/~gward/"
3468 "Getopt-Tabular-" version))
3469 (license (package-license perl))))
3470
085f59a5
BW
3471(define-public perl-graph
3472 (package
3473 (name "perl-graph")
3474 (version "0.9704")
3475 (source
3476 (origin
3477 (method url-fetch)
3478 (uri (string-append
3479 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
3480 version
3481 ".tar.gz"))
3482 (sha256
3483 (base32
3484 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
3485 (build-system perl-build-system)
3486 (home-page "http://search.cpan.org/dist/Graph")
3487 (synopsis "Graph data structures and algorithms")
3488 (description "This is @code{Graph}, a Perl module for dealing with graphs,
3489the abstract data structures.")
3490 (license (package-license perl))))
3491
2dca669e
AS
3492(define-public perl-guard
3493 (package
3494 (name "perl-guard")
3495 (version "1.023")
3496 (source (origin
3497 (method url-fetch)
3498 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
3499 version ".tar.gz"))
3500 (sha256
3501 (base32
3502 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
3503 (build-system perl-build-system)
3504 (home-page "http://search.cpan.org/dist/Guard")
3505 (synopsis "Safe cleanup blocks implemented as guards")
3506 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
3507something (usually an object) that \"guards\" a resource, ensuring that it is
3508cleaned up when expected.
3509
3510Specifically, this module supports two different types of guards: guard
3511objects, which execute a given code block when destroyed, and scoped guards,
3512which are tied to the scope exit.")
3513 (license (package-license perl))))
3514
2fa21791
RW
3515(define-public perl-hash-fieldhash
3516 (package
3517 (name "perl-hash-fieldhash")
3518 (version "0.15")
3519 (source
3520 (origin
3521 (method url-fetch)
3522 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
3523 "Hash-FieldHash-" version ".tar.gz"))
3524 (sha256
3525 (base32
3526 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
3527 (build-system perl-build-system)
f87c1107
MB
3528 (arguments
3529 `(#:phases
3530 (modify-phases %standard-phases
3531 (add-before 'configure 'set-perl-search-path
3532 (lambda _
3533 ;; Work around "dotless @INC" build failure.
3534 (setenv "PERL5LIB"
3535 (string-append (getcwd) ":"
3536 (getenv "PERL5LIB")))
3537 #t)))))
2fa21791
RW
3538 (native-inputs
3539 `(("perl-module-build" ,perl-module-build)
3540 ("perl-test-leaktrace" ,perl-test-leaktrace)))
3541 (home-page "http://search.cpan.org/dist/Hash-FieldHash")
3542 (synopsis "Lightweight field hash for inside-out objects")
3543 (description "@code{Hash::FieldHash} provides the field hash mechanism
3544which supports the inside-out technique. It is an alternative to
3545@code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
3546relic support.")
3547 (license (package-license perl))))
3548
2793480e
EB
3549(define-public perl-hash-merge
3550 (package
3551 (name "perl-hash-merge")
3552 (version "0.200")
3553 (source
3554 (origin
3555 (method url-fetch)
3556 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3557 "Hash-Merge-" version ".tar.gz"))
3558 (sha256
3559 (base32
3560 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
3561 (build-system perl-build-system)
3562 (home-page "http://search.cpan.org/dist/Hash-Merge")
3563 (synopsis "Merge arbitrarily deep hashes into a single hash")
3564 (description "Hash::Merge merges two arbitrarily deep hashes into a single
3565hash. That is, at any level, it will add non-conflicting key-value pairs from
3566one hash to the other, and follows a set of specific rules when there are key
3567value conflicts. The hash is followed recursively, so that deeply nested
3568hashes that are at the same level will be merged when the parent hashes are
3569merged.")
3570 (license (package-license perl))))
3571
14b44398
EB
3572(define-public perl-hash-multivalue
3573 (package
3574 (name "perl-hash-multivalue")
3575 (version "0.15")
3576 (source
3577 (origin
3578 (method url-fetch)
3579 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
3580 "Hash-MultiValue-" version ".tar.gz"))
3581 (sha256
3582 (base32
3583 "1jc37kwpa1fl88va8bd1p95h0vjv1gsvmn7pc2pxj62ga6x0wpc0"))))
3584 (build-system perl-build-system)
3585 (home-page "http://search.cpan.org/dist/Hash-MultiValue")
3586 (synopsis "Store multiple values per key")
3587 (description "Hash::MultiValue is an object (and a plain hash reference)
3588that may contain multiple values per key, inspired by MultiDict of WebOb.")
3589 (license (package-license perl))))
3590
df4fc521
LF
3591(define-public perl-importer
3592 (package
3593 (name "perl-importer")
3594 (version "0.024")
3595 (source
3596 (origin
3597 (method url-fetch)
3598 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
3599 version ".tar.gz"))
3600 (sha256
3601 (base32
3602 "0mx50xds7iphxykbr9b0w2qki92l3gpagsdchm4ncsrnxc67c68x"))))
3603 (build-system perl-build-system)
3604 (home-page "http://search.cpan.org/dist/Importer/")
3605 (synopsis "Alternative but compatible interface to modules that export symbols")
3606 (description "This module acts as a layer between Exporter and modules which
3607consume exports. It is feature-compatible with Exporter, plus some much needed
3608extras. You can use this to import symbols from any exporter that follows
3609Exporters specification. The exporter modules themselves do not need to use or
02654c47 3610inherit from the Exporter module, they just need to set @@EXPORT and/or other
df4fc521
LF
3611variables.")
3612 (license (package-license perl))))
3613
7c68c033
EB
3614(define-public perl-import-into
3615 (package
3616 (name "perl-import-into")
3617 (version "1.002004")
3618 (source
3619 (origin
3620 (method url-fetch)
3621 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3622 "Import-Into-" version ".tar.gz"))
3623 (sha256
3624 (base32
3625 "110hifk3cj14lxgjq2vaa2qfja21gll4lpn8vbimy0gzqadjbjyy"))))
3626 (build-system perl-build-system)
3627 (propagated-inputs
3628 `(("perl-module-runtime" ,perl-module-runtime)))
3629 (home-page "http://search.cpan.org/dist/Import-Into")
3630 (synopsis "Import packages into other packages")
3631 (description "Writing exporters is a pain. Some use Exporter, some use
3632Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
3633some things are pragmas. Exporting on someone else's behalf is harder. The
3634exporters don't provide a consistent API for this, and pragmas need to have
3635their import method called directly, since they effect the current unit of
3636compilation. Import::Into provides global methods to make this painless.")
3637 (license (package-license perl))))
3638
e8bba431
EB
3639(define-public perl-inc-latest
3640 (package
3641 (name "perl-inc-latest")
3642 (version "0.500")
3643 (source
3644 (origin
3645 (method url-fetch)
3646 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3647 "inc-latest-" version ".tar.gz"))
3648 (sha256
3649 (base32
3650 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
3651 (build-system perl-build-system)
3652 (home-page "http://search.cpan.org/dist/inc-latest")
3653 (synopsis "Use modules in inc/ if newer than installed")
3654 (description "The inc::latest module helps bootstrap configure-time
3655dependencies for CPAN distributions. These dependencies get bundled into the
3656inc directory within a distribution and are used by Makefile.PL or Build.PL.")
3657 (license asl2.0)))
3658
05657542
AS
3659(define-public perl-io-captureoutput
3660 (package
3661 (name "perl-io-captureoutput")
3662 (version "1.1104")
3663 (source
3664 (origin
3665 (method url-fetch)
3666 (uri (string-append
3667 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
3668 version
3669 ".tar.gz"))
3670 (sha256
3671 (base32
3672 "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
3673 (build-system perl-build-system)
3674 (home-page "http://search.cpan.org/dist/IO-CaptureOutput")
3675 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
3676 (description "@code{IO::CaptureOutput} provides routines for capturing
3677@code{STDOUT} and @code{STDERR} from perl subroutines, forked system
3678calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
3679
3680This module is no longer recommended by its maintainer. Users are advised to
3681try @code{Capture::Tiny} instead.")
3682 (license (package-license perl))))
3683
56da2a1a
EB
3684(define-public perl-io-interactive
3685 (package
3686 (name "perl-io-interactive")
3687 (version "0.0.6")
3688 (source
3689 (origin
3690 (method url-fetch)
3691 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
3692 "IO-Interactive-" version ".tar.gz"))
3693 (sha256
3694 (base32
3695 "1303q6rbcf2cag5z08pq3d1y91wls5q51jrpw4kh0l2bv75idh4w"))))
3696 (build-system perl-build-system)
3697 (home-page "http://search.cpan.org/dist/IO-Interactive")
3698 (synopsis "Utilities for interactive I/O")
3699 (description "This module provides three utility subroutines that make it
3700easier to develop interactive applications: is_interactive(), interactive(),
e881752c 3701and busy().")
56da2a1a
EB
3702 (license (package-license perl))))
3703
458ee7dc
RW
3704(define-public perl-io-string
3705 (package
3706 (name "perl-io-string")
3707 (version "1.08")
3708 (source
3709 (origin
3710 (method url-fetch)
3711 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3712 "IO-String-" version ".tar.gz"))
3713 (sha256
3714 (base32
3715 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
3716 (build-system perl-build-system)
3717 (home-page "http://search.cpan.org/~gaas/IO-String-1.08/")
3718 (synopsis "Emulate file interface for in-core strings")
3719 (description "IO::String is an IO::File (and IO::Handle) compatible class
3720that reads or writes data from in-core strings.")
3721 (license (package-license perl))))
3722
19449405
EB
3723(define-public perl-io-stringy
3724 (package
3725 (name "perl-io-stringy")
3726 (version "2.110")
3727 (source
3728 (origin
3729 (method url-fetch)
3730 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
3731 "IO-stringy-" version ".tar.gz"))
3732 (sha256
3733 (base32
3734 "1vh4n0k22hx20rwvf6h7lp25wb7spg0089shrf92d2lkncwg8g3y"))))
3735 (build-system perl-build-system)
3736 (home-page "http://search.cpan.org/dist/IO-stringy")
3737 (synopsis "IO:: interface for reading/writing an array of lines")
3738 (description "This toolkit primarily provides modules for performing both
3739traditional and object-oriented i/o) on things *other* than normal
3740filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
3741 (license (package-license perl))))
3742
73fc71ba
EB
3743(define-public perl-io-tty
3744 (package
3745 (name "perl-io-tty")
3746 (version "1.11")
3747 (source (origin
3748 (method url-fetch)
3749 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
3750 version ".tar.gz"))
3751 (sha256
3752 (base32
3753 "0lgd9xcbi4gf4gw1ka6fj94my3w1f3k1zamb4pfln0qxz45zlxx4"))))
3754 (build-system perl-build-system)
3755 (home-page "http://search.cpan.org/~toddr/IO-Tty/")
3756 (synopsis "Perl interface to pseudo ttys")
3757 (description
3758 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
3759pseudo ttys.")
3760 (license (package-license perl))))
3761
e9ef394a
RW
3762(define-public perl-ipc-cmd
3763 (package
3764 (name "perl-ipc-cmd")
3765 (version "0.96")
3766 (source
3767 (origin
3768 (method url-fetch)
3769 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
3770 version ".tar.gz"))
3771 (sha256
3772 (base32
3773 "0a2v44x70gj9fd5wa8i08f9z6n14qppj1j49m1hc333wh72mzk6i"))))
3774 (build-system perl-build-system)
3775 (home-page "http://search.cpan.org/dist/IPC-Cmd")
3776 (synopsis "Run interactive command-line programs")
3777 (description "@code{IPC::Cmd} allows for the searching and execution of
3778any binary on your system. It adheres to verbosity settings and is able to
3779run interactively. It also has an option to capture output/error buffers.")
3780 (license (package-license perl))))
3781
e3d84c4e
EB
3782(define-public perl-ipc-run
3783 (package
3784 (name "perl-ipc-run")
3785 (version "0.94")
3786 (source
3787 (origin
3788 (method url-fetch)
3789 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
3790 "IPC-Run-" version ".tar.gz"))
3791 (sha256
3792 (base32
3793 "0nv0lpw31zaz6vi42q7ihjj3j382j4njicp5k0gsczib3b4kdcrf"))))
3794 (build-system perl-build-system)
3795 (propagated-inputs
3796 `(("perl-io-tty" ,perl-io-tty)))
3797 (arguments
3798 `(#:phases (modify-phases %standard-phases
3799 (add-before
40b084a3 3800 'check 'disable-w32-test
e3d84c4e
EB
3801 (lambda _
3802 ;; This test fails, and we're not really interested in
3803 ;; it, so disable it.
3804 (delete-file "t/win32_compile.t"))))))
3805 (home-page "http://search.cpan.org/dist/IPC-Run")
e881752c 3806 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
e3d84c4e 3807 (description "IPC::Run allows you run and interact with child processes
e881752c
AK
3808using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
3809are supported and may be mixed. Likewise, functional and OO API styles are
e3d84c4e
EB
3810both supported and may be mixed.")
3811 (license (package-license perl))))
3812
73fc71ba
EB
3813(define-public perl-ipc-run3
3814 (package
3815 (name "perl-ipc-run3")
3816 (version "0.048")
3817 (source (origin
3818 (method url-fetch)
3819 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3820 "IPC-Run3-" version ".tar.gz"))
3821 (sha256
3822 (base32
3823 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
3824 (build-system perl-build-system)
e881752c 3825 (synopsis "Run a subprocess with input/output redirection")
73fc71ba
EB
3826 (description
3827 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
3828stdout, and/or stderr to files and perl data structures. It aims to satisfy
382999% of the need for using system, qx, and open3 with a simple, extremely
3830Perlish API and none of the bloat and rarely used features of IPC::Run.")
3831 (home-page (string-append "http://search.cpan.org/~rjbs/"
3832 "IPC-Run3-" version))
3833 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
3834 ;; licenses, any version."
3835 (license (list bsd-3 gpl3+))))
3836
990e811c
EB
3837(define-public perl-ipc-sharelite
3838 (package
3839 (name "perl-ipc-sharelite")
3840 (version "0.17")
3841 (source
3842 (origin
3843 (method url-fetch)
3844 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
3845 "IPC-ShareLite-" version ".tar.gz"))
3846 (sha256
3847 (base32
3848 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
3849 (build-system perl-build-system)
3850 (home-page "http://search.cpan.org/dist/IPC-ShareLite")
3851 (synopsis "Lightweight interface to shared memory")
3852 (description "IPC::ShareLite provides a simple interface to shared memory,
3853allowing data to be efficiently communicated between processes.")
3854 (license (package-license perl))))
3855
abf18075
AS
3856(define-public perl-ipc-system-simple
3857 (package
3858 (name "perl-ipc-system-simple")
3859 (version "1.25")
3860 (source (origin
3861 (method url-fetch)
3862 (uri (string-append
3863 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
3864 version ".tar.gz"))
3865 (sha256
3866 (base32
3867 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
3868 (build-system perl-build-system)
3869 (home-page "http://search.cpan.org/dist/IPC-System-Simple")
3870 (synopsis "Run commands simply, with detailed diagnostics")
3871 (description "Calling Perl's in-built @code{system} function is easy,
3872determining if it was successful is hard. Let's face it, @code{$?} isn't the
3873nicest variable in the world to play with, and even if you do check it,
3874producing a well-formatted error string takes a lot of work.
3875
3876@code{IPC::System::Simple} takes the hard work out of calling external
3877commands.")
3878 (license (package-license perl))))
3879
686805ca
EB
3880(define-public perl-json
3881 (package
3882 (name "perl-json")
3883 (version "2.90")
3884 (source
3885 (origin
3886 (method url-fetch)
3887 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
3888 "JSON-" version ".tar.gz"))
3889 (sha256
3890 (base32
3891 "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
3892 (build-system perl-build-system)
3893 (propagated-inputs
3894 `(("perl-json-xs" ,perl-json-xs))) ;recommended
3895 (home-page "http://search.cpan.org/dist/JSON")
3896 (synopsis "JSON encoder/decoder for Perl")
3897 (description "This module converts Perl data structures to JSON and vice
3898versa using either JSON::XS or JSON::PP.")
3899 (license (package-license perl))))
3900
97b05abe
EB
3901(define-public perl-json-any
3902 (package
3903 (name "perl-json-any")
3904 (version "1.38")
3905 (source
3906 (origin
3907 (method url-fetch)
6f428fda 3908 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
97b05abe
EB
3909 "JSON-Any-" version ".tar.gz"))
3910 (sha256
3911 (base32
3912 "0mk6shg82i7y852bvj5d0qqma1d9k0jh10k4mg62hbgr800gb2m4"))))
3913 (build-system perl-build-system)
3914 (native-inputs
3915 `(("perl-test-fatal" ,perl-test-fatal)
b3546174
MW
3916 ("perl-test-requires" ,perl-test-requires)
3917 ("perl-test-warnings" ,perl-test-warnings)
3918 ("perl-test-without-module" ,perl-test-without-module)))
97b05abe
EB
3919 (propagated-inputs
3920 `(("perl-namespace-clean" ,perl-namespace-clean)))
3921 (home-page "http://search.cpan.org/dist/JSON-Any")
3922 (synopsis "Wrapper for Perl JSON classes")
3923 (description
3924 "This module tries to provide a coherent API to bring together the
3925various JSON modules currently on CPAN. This module will allow you to code to
3926any JSON API and have it work regardless of which JSON module is actually
3927installed.")
3928 (license (package-license perl))))
3929
869ff43a
EB
3930(define-public perl-json-maybexs
3931 (package
3932 (name "perl-json-maybexs")
3933 (version "1.003003")
3934 (source
3935 (origin
3936 (method url-fetch)
3937 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3938 "JSON-MaybeXS-" version ".tar.gz"))
3939 (sha256
3940 (base32
3941 "0q21wzz87drrvblxcm2py8fcvkzwx1hxzfybynz8ln7wv66vbx3f"))))
3942 (build-system perl-build-system)
3943 (native-inputs
3944 `(("perl-test-without-module" ,perl-test-without-module)))
3945 (inputs
3946 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
3947 (home-page "http://search.cpan.org/dist/JSON-MaybeXS")
3948 (synopsis "Cpanel::JSON::XS with fallback")
3949 (description "This module first checks to see if either Cpanel::JSON::XS
3950or JSON::XS is already loaded, in which case it uses that module. Otherwise
3951it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
3952either uses the first module it finds or throws an error.")
3953 (license (package-license perl))))
3954
1699b2d9
EB
3955(define-public perl-json-xs
3956 (package
3957 (name "perl-json-xs")
3958 (version "3.01")
3959 (source
3960 (origin
3961 (method url-fetch)
3962 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
3963 "JSON-XS-" version ".tar.gz"))
3964 (sha256
3965 (base32
3966 "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
3967 (build-system perl-build-system)
3968 (propagated-inputs
3969 `(("perl-common-sense" ,perl-common-sense)
3970 ("perl-types-serialiser" ,perl-types-serialiser)))
3971 (home-page "http://search.cpan.org/dist/JSON-XS")
3972 (synopsis "JSON serialising/deserialising for Perl")
3973 (description "This module converts Perl data structures to JSON and vice
3974versa.")
3975 (license (package-license perl))))
3976
cf5e49cd
AS
3977(define-public perl-log-any
3978 (package
3979 (name "perl-log-any")
3980 (version "1.040")
3981 (source
3982 (origin
3983 (method url-fetch)
3984 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
3985 version ".tar.gz"))
3986 (sha256
3987 (base32
3988 "0r1q7cclgwl24gzdnjzvd8y0r7j17dngjk492x35w198zhdj2ncp"))))
3989 (build-system perl-build-system)
3990 (home-page "http://search.cpan.org/dist/Log-Any")
3991 (synopsis "Bringing loggers and listeners together")
3992 (description "@code{Log::Any} provides a standard log production API for
3993modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
3994for log consumption, whether screen, file or another logging mechanism like
3995@code{Log::Dispatch} or @code{Log::Log4perl}.
3996
3997A CPAN module uses @code{Log::Any} to get a log producer object. An
3998application, in turn, may choose one or more logging mechanisms via
3999@code{Log::Any::Adapter}, or none at all.
4000
4001@code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
4002itself, which makes it appropriate for even small CPAN modules to use. It
4003defaults to 'null' logging activity, so a module can safely log without
4004worrying about whether the application has chosen (or will ever choose) a
4005logging mechanism.")
4006 (license (package-license perl))))
4007
e2b12a55
AS
4008(define-public perl-log-any-adapter-log4perl
4009 (package
4010 (name "perl-log-any-adapter-log4perl")
4011 (version "0.08")
4012 (source
4013 (origin
4014 (method url-fetch)
4015 (uri (string-append
4016 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-Adapter-Log4perl-"
4017 version
4018 ".tar.gz"))
4019 (sha256
4020 (base32
4021 "0xf4fnrsznvg0hf36q481124ja1hp3lybki1xjgnk82z9990jmxn"))))
4022 (build-system perl-build-system)
4023 (propagated-inputs
4024 `(("perl-log-any" ,perl-log-any)
4025 ("perl-log-log4perl" ,perl-log-log4perl)))
4026 (home-page
4027 "http://search.cpan.org/dist/Log-Any-Adapter-Log4perl")
4028 (synopsis "Log::Any adapter for Log::Log4perl")
4029 (description "@code{Log::Any::Adapter::Log4perl} provides a
4030@code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
4031 (license (package-license perl))))
4032
9ec9e494
AS
4033(define-public perl-log-log4perl
4034 (package
4035 (name "perl-log-log4perl")
4036 (version "1.47")
4037 (source
4038 (origin
4039 (method url-fetch)
4040 (uri (string-append
4041 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
4042 version
4043 ".tar.gz"))
4044 (sha256
4045 (base32
4046 "0vxraq9navx5mgf8y8g6l5rbl3dv2ml8bishka5m69hj07nxs0ch"))))
4047 (build-system perl-build-system)
4048 (home-page
4049 "http://search.cpan.org/dist/Log-Log4perl")
4050 (synopsis "Log4j implementation for Perl")
4051 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
4052the logging behaviour of your system from the outside. It implements the
4053widely popular (Java-based) Log4j logging package in pure Perl.")
4054 (license (package-license perl))))
4055
fc2448bf
RW
4056(define-public perl-log-report-optional
4057 (package
4058 (name "perl-log-report-optional")
4059 (version "1.01")
4060 (source (origin
4061 (method url-fetch)
4062 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4063 "Log-Report-Optional-" version ".tar.gz"))
4064 (sha256
4065 (base32
4066 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
4067 (build-system perl-build-system)
4068 (propagated-inputs
4069 `(("perl-string-print" ,perl-string-print)))
4070 (home-page "http://search.cpan.org/dist/Log-Report-Optional")
4071 (synopsis "Log::Report in the lightest form")
4072 (description
4073 "This module allows libraries to have a dependency to a small module
4074instead of the full Log-Report distribution. The full power of
4075@code{Log::Report} is only released when the main program uses that module.
4076In that case, the module using the 'Optional' will also use the full
4077@code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
4078version.")
4079 (license (package-license perl))))
4080
dd686c08
RW
4081(define-public perl-log-report
4082 (package
4083 (name "perl-log-report")
4084 (version "1.10")
4085 (source (origin
4086 (method url-fetch)
4087 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4088 "Log-Report-" version ".tar.gz"))
4089 (sha256
4090 (base32
4091 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
4092 (build-system perl-build-system)
4093 (propagated-inputs
4094 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4095 ("perl-log-report-optional" ,perl-log-report-optional)
4096 ("perl-string-print" ,perl-string-print)))
4097 (home-page "http://search.cpan.org/dist/Log-Report")
4098 (synopsis "Get messages to users and logs")
4099 (description
4100 "@code{Log::Report} combines three tasks which are closely related in
4101one: logging, exceptions, and translations.")
4102 (license (package-license perl))))
4103
37115dc6
RW
4104(define-public perl-lingua-translit
4105 (package
4106 (name "perl-lingua-translit")
4107 (version "0.26")
4108 (source
4109 (origin
4110 (method url-fetch)
4111 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
4112 "Lingua-Translit-" version ".tar.gz"))
4113 (sha256
4114 (base32
4115 "161589h08kzliga17i2g0hb0yn4cjmb8rdiyadq5bw97974bac14"))))
4116 (build-system perl-build-system)
4117 (home-page "http://search.cpan.org/dist/Lingua-Translit")
4118 (synopsis "Transliterate text between writing systems")
4119 (description "@code{Lingua::Translit} can be used to convert text from one
4120writing system to another, based on national or international transliteration
4121tables. Where possible a reverse transliteration is supported.")
4122 (license (package-license perl))))
4123
66b9c74e
EB
4124(define-public perl-list-allutils
4125 (package
4126 (name "perl-list-allutils")
4127 (version "0.09")
4128 (source
4129 (origin
4130 (method url-fetch)
4131 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4132 "List-AllUtils-" version ".tar.gz"))
4133 (sha256
4134 (base32
4135 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
4136 (build-system perl-build-system)
4137 (native-inputs
4138 `(("perl-test-warnings" ,perl-test-warnings)))
4139 (propagated-inputs
4140 `(("perl-list-moreutils" ,perl-list-moreutils)
4141 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
4142 (home-page "http://search.cpan.org/dist/List-AllUtils")
4143 (synopsis "Combination of List::Util and List::MoreUtils")
4144 (description "This module exports all of the functions that either
4145List::Util or List::MoreUtils defines, with preference to List::Util.")
4146 (license (package-license perl))))
4147
8bcafb74
AS
4148(define-public perl-list-compare
4149 (package
4150 (name "perl-list-compare")
4151 (version "0.53")
4152 (source
4153 (origin
4154 (method url-fetch)
4155 (uri (string-append
4156 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
4157 version
4158 ".tar.gz"))
4159 (sha256
4160 (base32
4161 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
4162 (build-system perl-build-system)
4163 (native-inputs
4164 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
4165 (home-page "http://search.cpan.org/dist/List-Compare")
4166 (synopsis "Compare elements of two or more lists")
4167 (description "@code{List::Compare} provides a module to perform
4168comparative operations on two or more lists. Provided operations include
4169intersections, unions, unique elements, complements and many more.")
4170 (license (package-license perl))))
4171
04e9de02
EB
4172(define-public perl-list-moreutils
4173 (package
4174 (name "perl-list-moreutils")
4175 (version "0.402")
4176 (source
4177 (origin
4178 (method url-fetch)
4179 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4180 "List-MoreUtils-" version ".tar.gz"))
4181 (sha256
4182 (base32
4183 "1i0k7kqg1m9nf2xvq9l4lyf38fxvi9952vmmvhcdaf3qa95pxb24"))))
4184 (build-system perl-build-system)
4185 (native-inputs
4186 `(("perl-config-autoconf" ,perl-config-autoconf)
4187 ("perl-inc-latest" ,perl-inc-latest)
4188 ("perl-test-writevariants" ,perl-test-writevariants)))
4189 (propagated-inputs
4190 `(("perl-exporter-tiny" ,perl-exporter-tiny)))
4191 (home-page "http://search.cpan.org/dist/List-MoreUtils")
4192 (synopsis "Provide the stuff missing in List::Util")
4193 (description "List::MoreUtils provides some trivial but commonly needed
4194functionality on lists which is not going to go into List::Util.")
4195 (license (package-license perl))))
4196
5082eac9
AS
4197(define-public perl-list-someutils
4198 (package
4199 (name "perl-list-someutils")
4200 (version "0.52")
4201 (source
4202 (origin
4203 (method url-fetch)
4204 (uri (string-append
4205 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
4206 version
4207 ".tar.gz"))
4208 (sha256
4209 (base32
4210 "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
4211 (build-system perl-build-system)
4212 (native-inputs
4213 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
4214 (inputs
4215 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4216 ("perl-module-implementation"
4217 ,perl-module-implementation)))
4218 (home-page "http://search.cpan.org/dist/List-SomeUtils")
4219 (synopsis "Provide the stuff missing in List::Util")
4220 (description "@code{List::SomeUtils} provides some trivial but commonly
4221needed functionality on lists which is not going to go into @code{List::Util}.
4222
4223All of the below functions are implementable in only a couple of lines of Perl
4224code. Using the functions from this module however should give slightly
4225better performance as everything is implemented in C. The pure-Perl
4226implementation of these functions only serves as a fallback in case the C
4227portions of this module couldn't be compiled on this machine.")
4228 (license (package-license perl))))
4229
d6daca0e
CB
4230(define-public perl-mailtools
4231 (package
4232 (name "perl-mailtools")
4233 (version "2.19")
4234 (source
4235 (origin
4236 (method url-fetch)
4237 (uri (string-append
4238 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
4239 version
4240 ".tar.gz"))
4241 (sha256
4242 (base32
4243 "06jykkv8mp484vzkmwd6dkicx029rl3ir5ljzrbap3paxw1dfzn1"))))
4244 (build-system perl-build-system)
4245 (propagated-inputs
4246 `(("perl-timedate" ,perl-timedate)))
4247 (home-page
4248 "http://search.cpan.org/dist/MailTools")
4249 (synopsis "Bundle of ancient email modules")
4250 (description "MailTools contains the following modules:
4251@table @asis
4252@item Mail::Address
4253Parse email address from a header line.
4254@item Mail::Cap
4255Interpret mailcap files: mappings of file-types to applications as used by
4256many command-line email programs.
4257@item Mail::Field
4258Simplifies access to (some) email header fields. Used by Mail::Header.
4259@item Mail::Filter
4260Process Mail::Internet messages.
4261@item Mail::Header
4262Collection of Mail::Field objects, representing the header of a Mail::Internet
4263object.
4264@item Mail::Internet
4265Represents a single email message, with header and body.
4266@item Mail::Mailer
4267Send Mail::Internet emails via direct smtp or local MTA's.
4268@item Mail::Send
4269Build a Mail::Internet object, and then send it out using Mail::Mailer.
4270@item Mail::Util
4271\"Smart functions\" you should not depend on.
4272@end table")
4273 (license perl-license)))
4274
f8f744a8
EB
4275(define-public perl-memoize-expirelru
4276 (package
4277 (name "perl-memoize-expirelru")
4278 (version "0.55")
4279 (source
4280 (origin
4281 (method url-fetch)
4282 (uri (string-append "mirror://cpan/authors/id/B/BP/BPOWERS/"
4283 "Memoize-ExpireLRU-" version ".tar.gz"))
4284 (sha256
4285 (base32
4286 "0klk0vj78lr259mnv1rbxib8gzf2cfp4zhkhbcxyhadkkl73myvj"))))
4287 (build-system perl-build-system)
4288 (home-page "http://search.cpan.org/dist/Memoize-ExpireLRU")
4289 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
4290 (description "This module implements an expiry policy for Memoize that
4291follows LRU semantics, that is, the last n results, where n is specified as
4292the argument to the CACHESIZE parameter, will be cached.")
4293 (license (package-license perl))))
e3cfe3d6 4294
55932aee
RW
4295(define-public perl-mime-charset
4296 (package
4297 (name "perl-mime-charset")
6b2f5caf 4298 (version "1.012.2")
55932aee
RW
4299 (source (origin
4300 (method url-fetch)
4301 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
4302 "MIME-Charset-" version ".tar.gz"))
4303 (sha256
4304 (base32
6b2f5caf 4305 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
55932aee
RW
4306 (build-system perl-build-system)
4307 (home-page "http://search.cpan.org/dist/MIME-Charset")
4308 (synopsis "Charset information for MIME messages")
4309 (description
4310 "@code{MIME::Charset} provides information about character sets used for
4311MIME messages on Internet.")
4312 (license (package-license perl))))
e3cfe3d6 4313
a6fe9304
CB
4314(define-public perl-mime-tools
4315 (package
4316 (name "perl-mime-tools")
4317 (version "5.509")
4318 (source
4319 (origin
4320 (method url-fetch)
4321 (uri (string-append
4322 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
4323 version
4324 ".tar.gz"))
4325 (sha256
4326 (base32
4327 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
4328 (build-system perl-build-system)
4329 (native-inputs
4330 `(("perl-test-deep" ,perl-test-deep)))
4331 (inputs
4332 `(("perl-convert-binhex" ,perl-convert-binhex)))
4333 (propagated-inputs
4334 `(("perl-mailtools" ,perl-mailtools)))
4335 (home-page
4336 "http://search.cpan.org/dist/MIME-tools")
4337 (synopsis "Tools to manipulate MIME messages")
4338 (description
4339 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
4340decoding, and generating single- or multipart (even nested multipart) MIME
4341messages.")
4342 (license perl-license)))
4343
e3cfe3d6
EB
4344(define-public perl-mime-types
4345 (package
4346 (name "perl-mime-types")
4347 (version "2.09")
4348 (source
4349 (origin
4350 (method url-fetch)
4351 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4352 "MIME-Types-" version ".tar.gz"))
4353 (sha256
4354 (base32
4355 "0s7s2z9xc1nc2l59rk80iaa04r36k0y95231212kz5p3ln7szk1c"))))
4356 (build-system perl-build-system)
4357 (home-page "http://search.cpan.org/dist/MIME-Types")
4358 (synopsis "Definition of MIME types")
4359 (description "This module provides a list of known mime-types, combined
4360from various sources. For instance, it contains all IANA types and the
4361knowledge of Apache.")
4362 (license (package-license perl))))
f8f744a8 4363
4ca06e4c
AS
4364(define-public perl-mixin-linewise
4365 (package
4366 (name "perl-mixin-linewise")
4367 (version "0.108")
4368 (source (origin
4369 (method url-fetch)
4370 (uri (string-append
4371 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
4372 version ".tar.gz"))
4373 (sha256
4374 (base32
4375 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
4376 (build-system perl-build-system)
4377 (inputs
4378 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
4379 ("perl-sub-exporter" ,perl-sub-exporter)))
4380 (home-page "http://search.cpan.org/dist/Mixin-Linewise")
4381 (synopsis "Write your linewise code for handles; this does the rest")
4382 (description "It's boring to deal with opening files for IO, converting
4383strings to handle-like objects, and all that. With
4384@code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
4385just write a method to handle handles, and methods for handling strings and
4386file names are added for you.")
4387 (license (package-license perl))))
8883b301
AS
4388
4389(define-public perl-modern-perl
4390 (package
4391 (name "perl-modern-perl")
7881f6fa 4392 (version "1.20170117")
8883b301
AS
4393 (source
4394 (origin
4395 (method url-fetch)
4396 (uri (string-append
4397 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
7881f6fa 4398 version ".tar.gz"))
8883b301
AS
4399 (sha256
4400 (base32
7881f6fa 4401 "0a1n9c04zhs1a1km1zi0d1hj78d10qv3bhxr4bdi4chnc4saiwjx"))))
8883b301
AS
4402 (build-system perl-build-system)
4403 (native-inputs
4404 `(("perl-module-build" ,perl-module-build)))
4405 (home-page
4406 "http://search.cpan.org/dist/Modern-Perl")
4407 (synopsis
4408 "Enable all of the features of Modern Perl with one import")
4409 (description "@code{Modern::Perl} provides a simple way to enable
4410multiple, by now, standard libraries in a Perl program.")
4411 (license (package-license perl))))
4ca06e4c 4412
6c319d12
EB
4413(define-public perl-module-build-tiny
4414 (package
4415 (name "perl-module-build-tiny")
4416 (version "0.039")
4417 (source
4418 (origin
4419 (method url-fetch)
4420 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4421 "Module-Build-Tiny-" version ".tar.gz"))
4422 (sha256
4423 (base32
4424 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
4425 (build-system perl-build-system)
4426 (native-inputs
4427 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
4428 ("perl-extutils-config" ,perl-extutils-config)
4429 ("perl-extutils-helpers" ,perl-extutils-helpers)
4430 ("perl-test-harness" ,perl-test-harness)))
4431 (propagated-inputs
4432 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
4433 ("perl-extutils-config" ,perl-extutils-config)
4434 ("perl-extutils-helpers" ,perl-extutils-helpers)
4435 ("perl-test-harness" ,perl-test-harness)))
4436 (home-page "http://search.cpan.org/dist/Module-Build-Tiny")
4437 (synopsis "Tiny replacement for Module::Build")
4438 (description "Many Perl distributions use a Build.PL file instead of a
4439Makefile.PL file to drive distribution configuration, build, test and
4440installation. Traditionally, Build.PL uses Module::Build as the underlying
4441build system. This module provides a simple, lightweight, drop-in
4442replacement. Whereas Module::Build has over 6,700 lines of code; this module
4443has less than 120, yet supports the features needed by most distributions.")
4444 (license (package-license perl))))
4445
00aa3ae7
MB
4446(define-public perl-module-build-xsutil
4447 (package
4448 (name "perl-module-build-xsutil")
4449 (version "0.16")
4450 (source (origin
4451 (method url-fetch)
4452 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
4453 "Module-Build-XSUtil-" version ".tar.gz"))
4454 (sha256
4455 (base32
4456 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
4457 (build-system perl-build-system)
4458 (native-inputs
4459 `(("perl-capture-tiny" ,perl-capture-tiny)
4460 ("perl-cwd-guard" ,perl-cwd-guard)
4461 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
4462 ("perl-module-build" ,perl-module-build)))
4463 (propagated-inputs
4464 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
4465 (home-page "http://search.cpan.org/dist/Module-Build-XSUtil")
4466 (synopsis "Module::Build class for building XS modules")
4467 (description
4468 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
4469for support building XS modules.
4470
4471This is a list of a new parameters in the @code{Module::Build::new} method:
4472
4473@enumerate
4474@item @code{needs_compiler_c99}: This option checks C99 compiler availability.
4475@item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
4476Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
4477@item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
4478@item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
4479header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
4480@file{ppport.h}, and defines some portability stuff which are not supported by
4481@file{ppport.h}.
4482
4483It is ported from @code{Module::Install::XSUtil}.
4484@item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
4485@item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
4486debug options.
4487@end enumerate")
4488 (license (package-license perl))))
4489
6ebe790b
EB
4490(define-public perl-module-find
4491 (package
4492 (name "perl-module-find")
4493 (version "0.12")
4494 (source
4495 (origin
4496 (method url-fetch)
4497 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
4498 "Module-Find-" version ".tar.gz"))
4499 (sha256
4500 (base32
4501 "1lc33jdv4pgmm7nkr9bff0lhwjhhw91kaf6iiy2n7i7mw8dfv47l"))))
4502 (build-system perl-build-system)
4503 (home-page "http://search.cpan.org/dist/Module-Find")
4504 (synopsis "Find and use installed modules in a (sub)category")
4505 (description "Module::Find lets you find and use modules in categories.
4506This can be useful for auto-detecting driver or plugin modules. You can
4507differentiate between looking in the category itself or in all
4508subcategories.")
4509 (license (package-license perl))))
4510
3fa4c22a
EB
4511(define-public perl-module-implementation
4512 (package
4513 (name "perl-module-implementation")
4514 (version "0.09")
4515 (source
4516 (origin
4517 (method url-fetch)
4518 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4519 "Module-Implementation-" version ".tar.gz"))
4520 (sha256
4521 (base32
4522 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
4523 (build-system perl-build-system)
4524 (native-inputs
4525 `(("perl-test-fatal" ,perl-test-fatal)
4526 ("perl-test-requires" ,perl-test-requires)))
4527 (propagated-inputs
4528 `(("perl-module-runtime" ,perl-module-runtime)
4529 ("perl-try-tiny" ,perl-try-tiny)))
4530 (home-page "http://search.cpan.org/dist/Module-Implementation")
4531 (synopsis "Loads alternate underlying implementations for a module")
4532 (description "This module abstracts out the process of choosing one of
4533several underlying implementations for a module. This can be used to provide
4534XS and pure Perl implementations of a module, or it could be used to load an
4535implementation for a given OS or any other case of needing to provide multiple
4536implementations.")
4537 (license artistic2.0)))
4538
fda45480
EB
4539(define-public perl-module-install
4540 (package
4541 (name "perl-module-install")
4542 (version "1.14")
4543 (source
4544 (origin
4545 (method url-fetch)
4546 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/"
4547 "Module-Install-" version ".tar.gz"))
4548 (sha256
4549 (base32
4550 "0j8dz87k60i1khd9xadd8kl6bgm9s5s5zl86rzsz5bq36siz00iz"))))
4551 (build-system perl-build-system)
4552 (native-inputs
4553 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
4554 (propagated-inputs
4555 `(("perl-archive-zip" ,perl-archive-zip)
4556 ("perl-file-homedir" ,perl-file-homedir)
4557 ("perl-file-remove" ,perl-file-remove)
4558 ("perl-json" ,perl-json)
4559 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
4560 ;; would cause a circular dependency with (gnu packages web), so we
4561 ;; leave it out. It may be resolved at runtime, however.
4562 ;("perl-libwww-perl" ,perl-libwww-perl)
4563 ("perl-module-scandeps" ,perl-module-scandeps)
4564 ("perl-par-dist" ,perl-par-dist)
4565 ("perl-yaml-tiny" ,perl-yaml-tiny)))
4566 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
4567 ;; character handling.
4568 (arguments `(#:tests? #f))
4569 (home-page "http://search.cpan.org/dist/Module-Install")
4570 (synopsis "Standalone, extensible Perl module installer")
4571 (description "Module::Install is a package for writing installers for
4572CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
4573strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
4574installation version 5.005 or newer.")
4575 (license (package-license perl))))
4576
97b07aaa
EB
4577(define-public perl-module-pluggable
4578 (package
4579 (name "perl-module-pluggable")
4580 (version "5.2")
4581 (source
4582 (origin
4583 (method url-fetch)
4584 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
4585 "Module-Pluggable-" version ".tar.gz"))
4586 (sha256
4587 (base32
4588 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
fc1adab1 4589 (patches (search-patches "perl-module-pluggable-search.patch"))))
97b07aaa
EB
4590 (build-system perl-build-system)
4591 (home-page "http://search.cpan.org/dist/Module-Pluggable")
4592 (synopsis "Give your Perl module the ability to have plugins")
4593 (description "This module provides a simple but extensible way of having
4594'plugins' for your Perl module.")
4595 (license (package-license perl))))
4596
185082c8
EB
4597(define-public perl-module-runtime
4598 (package
4599 (name "perl-module-runtime")
4600 (version "0.014")
4601 (source
4602 (origin
4603 (method url-fetch)
4604 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
4605 "Module-Runtime-" version ".tar.gz"))
4606 (sha256
4607 (base32
4608 "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
4609 (build-system perl-build-system)
a2190ccc 4610 (native-inputs `(("perl-module-build" ,perl-module-build)))
185082c8
EB
4611 (home-page "http://search.cpan.org/dist/Module-Runtime")
4612 (synopsis "Perl runtime module handling")
4613 (description "The functions exported by this module deal with runtime
4614handling of Perl modules, which are normally handled at compile time.")
4615 (license (package-license perl))))
4616
ff892554
EB
4617(define-public perl-module-runtime-conflicts
4618 (package
4619 (name "perl-module-runtime-conflicts")
c4fcf354 4620 (version "0.003")
ff892554
EB
4621 (source
4622 (origin
4623 (method url-fetch)
4624 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4625 "Module-Runtime-Conflicts-" version ".tar.gz"))
4626 (sha256
4627 (base32
c4fcf354 4628 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
ff892554 4629 (build-system perl-build-system)
a2190ccc
EB
4630 (native-inputs
4631 `(("perl-module-build" ,perl-module-build)))
ff892554
EB
4632 (propagated-inputs
4633 `(("perl-module-runtime" ,perl-module-runtime)
4634 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
4635 (home-page "http://search.cpan.org/dist/Module-Runtime-Conflicts")
4636 (synopsis "Provide information on conflicts for Module::Runtime")
4637 (description "This module provides conflicts checking for Module::Runtime,
4638which had a recent release that broke some versions of Moose. It is called
4639from Moose::Conflicts and moose-outdated.")
4640 (license (package-license perl))))
4641
2cae038d
EB
4642(define-public perl-module-scandeps
4643 (package
4644 (name "perl-module-scandeps")
bf200cb6 4645 (version "1.24")
2cae038d
EB
4646 (source
4647 (origin
4648 (method url-fetch)
4649 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
4650 "Module-ScanDeps-" version ".tar.gz"))
4651 (sha256
4652 (base32
bf200cb6 4653 "0s6cj90ckhy351gql52ksh4ms1x8piv26iadl09fcpzkx7j0srw9"))))
2cae038d
EB
4654 (build-system perl-build-system)
4655 (native-inputs
4656 `(("perl-test-requires" ,perl-test-requires)))
4657 (home-page "http://search.cpan.org/dist/Module-ScanDeps")
4658 (synopsis "Recursively scan Perl code for dependencies")
4659 (description "Module::ScanDeps is a module to recursively scan Perl
4660programs for dependencies.")
4661 (license (package-license perl))))
4662
55069500
EB
4663(define-public perl-module-util
4664 (package
4665 (name "perl-module-util")
4666 (version "1.09")
4667 (source
4668 (origin
4669 (method url-fetch)
4670 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
4671 "Module-Util-" version ".tar.gz"))
4672 (sha256
4673 (base32
4674 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
4675 (build-system perl-build-system)
4676 (native-inputs
4677 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
4678 (home-page "http://search.cpan.org/dist/Module-Util")
4679 (synopsis "Module name tools and transformations")
4680 (description "This module provides a few useful functions for manipulating
4681module names. Its main aim is to centralise some of the functions commonly
4682used by modules that manipulate other modules in some way, like converting
4683module names to relative paths.")
4684 (license (package-license perl))))
4685
5a96dc03
EB
4686(define-public perl-moo
4687 (package
4688 (name "perl-moo")
4689 (version "1.007000")
4690 (source
4691 (origin
4692 (method url-fetch)
4693 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4694 "Moo-" version ".tar.gz"))
4695 (sha256
4696 (base32
4697 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
4698 (build-system perl-build-system)
4699 (native-inputs
4700 `(("perl-test-fatal" ,perl-test-fatal)))
4701 (propagated-inputs
4702 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
4703 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
4704 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4705 ("perl-import-into" ,perl-import-into)
4706 ("perl-module-runtime" ,perl-module-runtime)
4707 ("perl-role-tiny" ,perl-role-tiny)
4708 ("perl-strictures" ,perl-strictures)))
4709 (home-page "http://search.cpan.org/dist/Moo")
4710 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
4711 (description "Moo is an extremely light-weight Object Orientation system.
4712It allows one to concisely define objects and roles with a convenient syntax
4713that avoids the details of Perl's object system. Moo contains a subset of
4714Moose and is optimised for rapid startup.")
4715 (license (package-license perl))))
4716
840e5774
EB
4717(define-public perl-moose
4718 (package
4719 (name "perl-moose")
0d01f517 4720 (version "2.2004")
840e5774
EB
4721 (source (origin
4722 (method url-fetch)
4723 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4724 "Moose-" version ".tar.gz"))
4725 (sha256
4726 (base32
0d01f517 4727 "1c6jx2lnrh2mi9wlj2c0sirj6345xmbpr34ax8d85mcginzq3j74"))))
840e5774
EB
4728 (build-system perl-build-system)
4729 (native-inputs
4730 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4731 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4732 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
4733 ("perl-test-fatal" ,perl-test-fatal)
4734 ("perl-test-requires" ,perl-test-requires)
4735 ("perl-test-warnings" ,perl-test-warnings)))
4736 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
4737 ;; # === Other Modules ===
4738 ;; #
4739 ;; # Module Want Have
4740 ;; # ---------------------------- ---- -------
4741 ;; # Algorithm::C3 any missing
4742 ;; # DBM::Deep any missing
4743 ;; # DateTime any missing
4744 ;; # DateTime::Calendar::Mayan any missing
4745 ;; # DateTime::Format::MySQL any missing
4746 ;; # Declare::Constraints::Simple any missing
4747 ;; # Dist::CheckConflicts any 0.11
4748 ;; # HTTP::Headers any missing
4749 ;; # IO::File any 1.16
4750 ;; # IO::String any missing
4751 ;; # Locale::US any missing
4752 ;; # Module::Refresh any missing
4753 ;; # MooseX::NonMoose any missing
4754 ;; # Params::Coerce any missing
4755 ;; # Regexp::Common any missing
4756 ;; # SUPER any missing
4757 ;; # Test::Deep any missing
4758 ;; # Test::DependentModules any missing
4759 ;; # Test::LeakTrace any missing
4760 ;; # Test::Output any missing
4761 ;; # URI any missing
4762 (propagated-inputs
4763 `(("perl-class-load" ,perl-class-load)
4764 ("perl-class-load-xs" ,perl-class-load-xs)
4765 ("perl-data-optlist" ,perl-data-optlist)
4766 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4767 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
4768 ("perl-devel-partialdump" ,perl-devel-partialdump)
4769 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
4770 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4771 ("perl-eval-closure" ,perl-eval-closure)
4772 ("perl-list-moreutils" ,perl-list-moreutils)
4773 ("perl-module-runtime" ,perl-module-runtime)
4774 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
4775 ("perl-mro-compat" ,perl-mro-compat)
4776 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
4777 ("perl-package-stash" ,perl-package-stash)
4778 ("perl-package-stash-xs" ,perl-package-stash-xs)
4779 ("perl-params-util" ,perl-params-util)
4780 ("perl-parent" ,perl-parent)
4781 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
4782 ("perl-sub-exporter" ,perl-sub-exporter)
4783 ("perl-sub-name" ,perl-sub-name)
4784 ("perl-task-weaken" ,perl-task-weaken)
4785 ("perl-try-tiny" ,perl-try-tiny)))
4786 (home-page "http://search.cpan.org/dist/Moose")
4787 (synopsis "Postmodern object system for Perl 5")
4788 (description
4789 "Moose is a complete object system for Perl 5. It provides keywords for
4790attribute declaration, object construction, inheritance, and maybe more. With
4791Moose, you define your class declaratively, without needing to know about
4792blessed hashrefs, accessor methods, and so on. You can concentrate on the
4793logical structure of your classes, focusing on \"what\" rather than \"how\".
4794A class definition with Moose reads like a list of very concise English
4795sentences.")
4796 (license (package-license perl))))
4797
7fc7903b
EB
4798(define-public perl-moosex-emulate-class-accessor-fast
4799 (package
4800 (name "perl-moosex-emulate-class-accessor-fast")
4801 (version "0.00903")
4802 (source
4803 (origin
4804 (method url-fetch)
4805 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
4806 "MooseX-Emulate-Class-Accessor-Fast-"
4807 version ".tar.gz"))
4808 (sha256
4809 (base32
4810 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
4811 (build-system perl-build-system)
4812 (native-inputs
9dab5017
MB
4813 `(("perl-module-install" ,perl-module-install)
4814 ("perl-test-exception" ,perl-test-exception)))
7fc7903b
EB
4815 (propagated-inputs
4816 `(("perl-moose" ,perl-moose)))
4817 (home-page "http://search.cpan.org/dist/MooseX-Emulate-Class-Accessor-Fast")
4818 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
4819 (description "This module attempts to emulate the behavior of
4820Class::Accessor::Fast as accurately as possible using the Moose attribute
4821system. The public API of Class::Accessor::Fast is wholly supported, but the
4822private methods are not.")
4823 (license (package-license perl))))
4824
1a17aa2d
EB
4825(define-public perl-moosex-getopt
4826 (package
4827 (name "perl-moosex-getopt")
4828 (version "0.65")
4829 (source
4830 (origin
4831 (method url-fetch)
4832 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4833 "MooseX-Getopt-" version ".tar.gz"))
4834 (sha256
4835 (base32
4836 "1nkzvbsiwldmpn6207ns7rinh860djnw098h6cnvywf429rjnz60"))))
4837 (build-system perl-build-system)
4838 (native-inputs
a2190ccc
EB
4839 `(("perl-module-build" ,perl-module-build)
4840 ("perl-test-deep" ,perl-test-deep)
1a17aa2d
EB
4841 ("perl-test-fatal" ,perl-test-fatal)
4842 ("perl-test-requires" ,perl-test-requires)
4843 ("perl-test-trap" ,perl-test-trap)
4844 ("perl-test-warnings" ,perl-test-warnings)))
4845 (propagated-inputs
4846 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
4847 ("perl-moose" ,perl-moose)
4848 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
4849 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4850 (home-page "http://search.cpan.org/dist/MooseX-Getopt")
4851 (synopsis "Moose role for processing command line options")
4852 (description "This is a Moose role which provides an alternate constructor
4853for creating objects using parameters passed in from the command line.")
4854 (license (package-license perl))))
4855
c7a47f5e
EB
4856(define-public perl-moosex-markasmethods
4857 (package
4858 (name "perl-moosex-markasmethods")
4859 (version "0.15")
4860 (source
4861 (origin
4862 (method url-fetch)
4863 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
4864 "MooseX-MarkAsMethods-" version ".tar.gz"))
4865 (sha256
4866 (base32
4867 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
4868 (build-system perl-build-system)
4869 (inputs
4870 `(("perl-moose" ,perl-moose)
4871 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4872 (home-page "http://search.cpan.org/dist/MooseX-MarkAsMethods")
4873 (synopsis "Mark overload code symbols as methods")
4874 (description "MooseX::MarkAsMethods allows one to easily mark certain
4875functions as Moose methods. This will allow other packages such as
4876namespace::autoclean to operate without blowing away your overloads. After
4877using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
4878being methods, and class extension as well as composition from roles with
4879overloads will \"just work\".")
4880 (license lgpl2.1)))
4881
1e3a6eae
EB
4882(define-public perl-moosex-methodattributes
4883 (package
4884 (name "perl-moosex-methodattributes")
4885 (version "0.29")
4886 (source
4887 (origin
4888 (method url-fetch)
4889 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4890 "MooseX-MethodAttributes-" version ".tar.gz"))
4891 (sha256
4892 (base32
4893 "1pz3i67gadfmgzj87m1xp2ilcg3yhppdylcng2h6c11dy0a06hdk"))))
4894 (build-system perl-build-system)
4895 (native-inputs
4896 `(("perl-module-build-tiny" ,perl-module-build-tiny)
4897 ("perl-test-fatal" ,perl-test-fatal)
4898 ("perl-test-requires" ,perl-test-requires)))
4899 (propagated-inputs
4900 `(("perl-moose" ,perl-moose)
4901 ("perl-moosex-types" ,perl-moosex-types)
4902 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4903 (home-page "http://search.cpan.org/dist/MooseX-MethodAttributes")
4904 (synopsis "Code attribute introspection")
4905 (description "This module allows code attributes of methods to be
4906introspected using Moose meta method objects.")
4907 (license (package-license perl))))
4908
26d427a5
EB
4909(define-public perl-moosex-nonmoose
4910(package
4911 (name "perl-moosex-nonmoose")
4912 (version "0.26")
4913 (source
4914 (origin
4915 (method url-fetch)
4916 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4917 "MooseX-NonMoose-" version ".tar.gz"))
4918 (sha256
4919 (base32
4920 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
4921 (build-system perl-build-system)
4922 (native-inputs
4923 `(("perl-moose" ,perl-moose)
4924 ("perl-test-fatal" ,perl-test-fatal)))
4925 (propagated-inputs
4926 `(("perl-list-moreutils" ,perl-list-moreutils)
4927 ("perl-module-runtime" ,perl-module-runtime)
4928 ("perl-moose" ,perl-moose)
4929 ("perl-try-tiny" ,perl-try-tiny)))
4930 (home-page "http://search.cpan.org/dist/MooseX-NonMoose")
4931 (synopsis "Subclassing of non-Moose classes")
4932 (description "MooseX::NonMoose allows for easily subclassing non-Moose
4933classes with Moose, taking care of the details connected with doing this, such
4934as setting up proper inheritance from Moose::Object and installing (and
4935inlining, at make_immutable time) a constructor that makes sure things like
4936BUILD methods are called. It tries to be as non-intrusive as possible.")
4937 (license (package-license perl))))
4938
9f82ae89
EB
4939(define-public perl-moosex-params-validate
4940 (package
4941 (name "perl-moosex-params-validate")
4942 (version "0.19")
4943 (source
4944 (origin
4945 (method url-fetch)
4946 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4947 "MooseX-Params-Validate-" version ".tar.gz"))
4948 (sha256
4949 (base32
4950 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
4951 (build-system perl-build-system)
4952 (native-inputs
4953 `(("perl-moose" ,perl-moose)
4954 ("perl-test-fatal" ,perl-test-fatal)))
4955 (propagated-inputs
4956 `(("perl-devel-caller" ,perl-devel-caller)
4957 ("perl-moose" ,perl-moose)
4958 ("perl-params-validate" ,perl-params-validate)
4959 ("perl-sub-exporter" ,perl-sub-exporter)))
4960 (home-page "http://search.cpan.org/dist/MooseX-Params-Validate")
4961 (synopsis "Extension of Params::Validate using Moose's types")
4962 (description "This module fills a gap in Moose by adding method parameter
4963validation to Moose.")
4964 (license (package-license perl))))
4965
107671a2
EB
4966(define-public perl-moosex-relatedclassroles
4967 (package
4968 (name "perl-moosex-relatedclassroles")
4969 (version "0.004")
4970 (source
4971 (origin
4972 (method url-fetch)
4973 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
4974 "MooseX-RelatedClassRoles-" version ".tar.gz"))
4975 (sha256
4976 (base32
4977 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
4978 (build-system perl-build-system)
4979 (propagated-inputs
4980 `(("perl-moose" ,perl-moose)
4981 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
4982 (home-page "http://search.cpan.org/dist/MooseX-RelatedClassRoles")
4983 (synopsis "Apply roles to a related Perl class")
4984 (description "This module applies roles to make a subclass instead of
4985manually setting up a subclass.")
4986 (license (package-license perl))))
4987
3fc65fd2
EB
4988(define-public perl-moosex-role-parameterized
4989 (package
4990 (name "perl-moosex-role-parameterized")
4991 (version "1.08")
4992 (source
4993 (origin
4994 (method url-fetch)
4995 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4996 "MooseX-Role-Parameterized-" version ".tar.gz"))
4997 (sha256
4998 (base32
4999 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
5000 (build-system perl-build-system)
5001 (native-inputs
5002 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
a2190ccc 5003 ("perl-module-build" ,perl-module-build)
3fc65fd2
EB
5004 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
5005 ("perl-test-fatal" ,perl-test-fatal)
5006 ("perl-test-requires" ,perl-test-requires)))
5007 (propagated-inputs
5008 `(("perl-moose" ,perl-moose)
5009 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5010 (home-page "http://search.cpan.org/dist/MooseX-Role-Parameterized")
5011 (synopsis "Moose roles with composition parameters")
5012 (description "Because Moose roles serve many different masters, they
5013usually provide only the least common denominator of functionality. To
5014empower roles further, more configurability than -alias and -excludes is
5015required. Perhaps your role needs to know which method to call when it is
5016done processing, or what default value to use for its url attribute.
5017Parameterized roles offer a solution to these (and other) kinds of problems.")
5018 (license (package-license perl))))
5019
bfcb13bc
EB
5020(define-public perl-moosex-role-withoverloading
5021 (package
5022 (name "perl-moosex-role-withoverloading")
5023 (version "0.16")
5024 (source
5025 (origin
5026 (method url-fetch)
5027 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5028 "MooseX-Role-WithOverloading-" version ".tar.gz"))
5029 (sha256
5030 (base32
5031 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
5032 (build-system perl-build-system)
5033 (propagated-inputs
5034 `(("perl-aliased" ,perl-aliased)
5035 ("perl-moose" ,perl-moose)
5036 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5037 (home-page "http://search.cpan.org/dist/MooseX-Role-WithOverloading")
5038 (synopsis "Roles which support overloading")
5039 (description "MooseX::Role::WithOverloading allows you to write a
5040Moose::Role which defines overloaded operators and allows those overload
5041methods to be composed into the classes/roles/instances it's compiled to,
5042where plain Moose::Roles would lose the overloading.")
5043 (license (package-license perl))))
5044
b6fb9f2c
EB
5045(define-public perl-moosex-semiaffordanceaccessor
5046 (package
5047 (name "perl-moosex-semiaffordanceaccessor")
5048 (version "0.10")
5049 (source
5050 (origin
5051 (method url-fetch)
5052 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5053 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
5054 (sha256
5055 (base32
5056 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
5057 (build-system perl-build-system)
5058 (propagated-inputs
5059 `(("perl-moose" ,perl-moose)))
5060 (home-page "http://search.cpan.org/dist/MooseX-SemiAffordanceAccessor")
5061 (synopsis "Name your accessors foo() and set_foo()")
5062 (description "This module does not provide any methods. Simply loading it
5063changes the default naming policy for the loading class so that accessors are
5064separated into get and set methods. The get methods have the same name as the
5065accessor, while set methods are prefixed with \"_set_\".")
5066 (license artistic2.0)))
5067
4be514cb
EB
5068(define-public perl-moosex-strictconstructor
5069 (package
5070 (name "perl-moosex-strictconstructor")
5071 (version "0.19")
5072 (source
5073 (origin
5074 (method url-fetch)
5075 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5076 "MooseX-StrictConstructor-" version ".tar.gz"))
5077 (sha256
5078 (base32
5079 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
5080 (build-system perl-build-system)
5081 (native-inputs
5082 `(("perl-moose" ,perl-moose)
5083 ("perl-test-fatal" ,perl-test-fatal)))
5084 (propagated-inputs
5085 `(("perl-moose" ,perl-moose)
5086 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5087 (home-page "http://search.cpan.org/dist/MooseX-StrictConstructor")
5088 (synopsis "Strict object constructors for Moose")
5089 (description "Simply loading this module makes your constructors
e881752c
AK
5090\"strict\". If your constructor is called with an attribute init argument
5091that your class does not declare, then it calls Moose->throw_error().")
4be514cb
EB
5092 (license artistic2.0)))
5093
66f1d878
EB
5094(define-public perl-moosex-traits-pluggable
5095 (package
5096 (name "perl-moosex-traits-pluggable")
5097 (version "0.12")
5098 (source
5099 (origin
5100 (method url-fetch)
5101 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
5102 "MooseX-Traits-Pluggable-" version ".tar.gz"))
5103 (sha256
5104 (base32
5105 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
5106 (build-system perl-build-system)
5107 (native-inputs
5108 `(("perl-moose" ,perl-moose)
5109 ("perl-test-exception" ,perl-test-exception)))
5110 (propagated-inputs
5111 `(("perl-class-load" ,perl-class-load)
5112 ("perl-list-moreutils" ,perl-list-moreutils)
5113 ("perl-moose" ,perl-moose)
5114 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5115 (home-page
5116 "http://search.cpan.org/dist/MooseX-Traits-Pluggable")
5117 (synopsis "Trait loading and resolution for Moose")
5118 (description "Adds support on top of MooseX::Traits for class precedence
e881752c 5119search for traits and some extra attributes.")
66f1d878
EB
5120 (license (package-license perl))))
5121
ffb2d0b4
EB
5122(define-public perl-moosex-types
5123 (package
5124 (name "perl-moosex-types")
5125 (version "0.45")
5126 (source
5127 (origin
5128 (method url-fetch)
5129 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5130 "MooseX-Types-" version ".tar.gz"))
5131 (sha256
5132 (base32
5133 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
5134 (build-system perl-build-system)
5135 (native-inputs
a2190ccc
EB
5136 `(("perl-module-build" ,perl-module-build)
5137 ("perl-test-fatal" ,perl-test-fatal)
ffb2d0b4
EB
5138 ("perl-test-requires" ,perl-test-requires)))
5139 (propagated-inputs
5140 `(("perl-carp-clan" ,perl-carp-clan)
5141 ("perl-moose" ,perl-moose)
5142 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5143 (home-page "http://search.cpan.org/dist/MooseX-Types")
5144 (synopsis "Organise your Moose types in libraries")
5145 (description "This package lets you declare types using short names, but
5146behind the scenes it namespaces all your type declarations, effectively
5147prevent name clashes between packages.")
5148 (license (package-license perl))))
5149
3e7a86cd
EB
5150(define-public perl-moosex-types-datetime
5151 (package
5152 (name "perl-moosex-types-datetime")
1cd5f177 5153 (version "0.13")
3e7a86cd
EB
5154 (source
5155 (origin
5156 (method url-fetch)
5157 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5158 "MooseX-Types-DateTime-" version ".tar.gz"))
5159 (sha256
5160 (base32
1cd5f177 5161 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
3e7a86cd
EB
5162 (build-system perl-build-system)
5163 (native-inputs
5164 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5165 ("perl-moose" ,perl-moose)
5166 ("perl-test-fatal" ,perl-test-fatal)
5167 ("perl-test-simple" ,perl-test-simple)))
5168 (propagated-inputs
5169 `(("perl-datetime" ,perl-datetime)
5170 ("perl-datetime-locale" ,perl-datetime-locale)
5171 ("perl-datetime-timezone" ,perl-datetime-timezone)
5172 ("perl-moose" ,perl-moose)
5173 ("perl-moosex-types" ,perl-moosex-types)
5174 ("perl-namespace-clean" ,perl-namespace-clean)))
5175 (home-page "http://search.cpan.org/dist/MooseX-Types-DateTime")
5176 (synopsis "DateTime related constraints and coercions for Moose")
5177 (description "This module packages several Moose::Util::TypeConstraints
5178with coercions, designed to work with the DateTime suite of objects.")
5179 (license (package-license perl))))
5180
d2401db9
EB
5181(define-public perl-moosex-types-datetime-morecoercions
5182 (package
5183 (name "perl-moosex-types-datetime-morecoercions")
5184 (version "0.14")
5185 (source
5186 (origin
5187 (method url-fetch)
5188 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5189 "MooseX-Types-DateTime-MoreCoercions-"
5190 version ".tar.gz"))
5191 (sha256
5192 (base32
5193 "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
5194 (build-system perl-build-system)
5195 (native-inputs
5196 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5197 ("perl-test-fatal" ,perl-test-fatal)
5198 ("perl-test-simple" ,perl-test-simple)))
5199 (propagated-inputs
5200 `(("perl-datetime" ,perl-datetime)
5201 ("perl-datetimex-easy" ,perl-datetimex-easy)
5202 ("perl-moose" ,perl-moose)
5203 ("perl-moosex-types" ,perl-moosex-types)
5204 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
5205 ("perl-namespace-clean" ,perl-namespace-clean)
5206 ("perl-time-duration-parse" ,perl-time-duration-parse)))
5207 (home-page
5208 "http://search.cpan.org/dist/MooseX-Types-DateTime-MoreCoercions")
5209 (synopsis "Extensions to MooseX::Types::DateTime")
5210 (description "This module builds on MooseX::Types::DateTime to add
5211additional custom types and coercions. Since it builds on an existing type,
5212all coercions and constraints are inherited.")
5213 (license (package-license perl))))
5214
4306f28b
EB
5215(define-public perl-moosex-types-loadableclass
5216 (package
5217 (name "perl-moosex-types-loadableclass")
5218 (version "0.013")
5219 (source
5220 (origin
5221 (method url-fetch)
5222 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5223 "MooseX-Types-LoadableClass-" version ".tar.gz"))
5224 (sha256
5225 (base32
5226 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
5227 (build-system perl-build-system)
5228 (native-inputs
5229 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5230 ("perl-namespace-clean" ,perl-namespace-clean)
5231 ("perl-moose" ,perl-moose)
5232 ("perl-test-fatal" ,perl-test-fatal)
5233 ("perl-class-load" ,perl-class-load)))
5234 (propagated-inputs
5235 `(("perl-module-runtime" ,perl-module-runtime)
5236 ("perl-moosex-types" ,perl-moosex-types)
5237 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5238 (home-page "http://search.cpan.org/dist/MooseX-Types-LoadableClass")
5239 (synopsis "ClassName type constraints for Moose")
5240 (description "MooseX::Types::LoadableClass provides a ClassName type
5241constraint with coercion to load the class.")
5242 (license (package-license perl))))
5243
3a58f455
CB
5244(define-public perl-moox
5245 (package
5246 (name "perl-moox")
5247 (version "0.101")
5248 (source
5249 (origin
5250 (method url-fetch)
5251 (uri (string-append
5252 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
5253 version
5254 ".tar.gz"))
5255 (sha256
5256 (base32
5257 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
5258 (build-system perl-build-system)
5259 (inputs
5260 `(("perl-data-optlist" ,perl-data-optlist)
5261 ("perl-import-into" ,perl-import-into)
5262 ("perl-module-runtime" ,perl-module-runtime)
5263 ("perl-moo" ,perl-moo)))
5264 (home-page "http://search.cpan.org/dist/MooX")
5265 (synopsis
5266 "Using Moo and MooX:: packages the most lazy way")
5267 (description "Contains the MooX and MooX::Role packages.")
5268 (license perl-license)))
5269
40db2394
CB
5270(define-public perl-moox-handlesvia
5271 (package
5272 (name "perl-moox-handlesvia")
5273 (version "0.001008")
5274 (source
5275 (origin
5276 (method url-fetch)
5277 (uri (string-append
5278 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
5279 version
5280 ".tar.gz"))
5281 (sha256
5282 (base32
5283 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
5284 (build-system perl-build-system)
5285 (native-inputs
5286 `(("perl-moox-types-mooselike"
5287 ,perl-moox-types-mooselike)
5288 ("perl-test-exception" ,perl-test-exception)
5289 ("perl-test-fatal" ,perl-test-fatal)))
5290 (inputs
5291 `(("perl-class-method-modifiers"
5292 ,perl-class-method-modifiers)
5293 ("perl-module-runtime" ,perl-module-runtime)
5294 ("perl-moo" ,perl-moo)
5295 ("perl-role-tiny" ,perl-role-tiny)))
5296 (propagated-inputs
5297 `(("perl-data-perl" ,perl-data-perl)))
5298 (home-page
5299 "http://search.cpan.org/dist/MooX-HandlesVia")
5300 (synopsis "NativeTrait-like behavior for Moo")
5301 (description
5302 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
5303attribute functionality. It provides a means of proxying functionality from
5304an external class to the given atttribute.")
5305 (license perl-license)))
5306
b7206dd3
CB
5307(define-public perl-moox-late
5308 (package
5309 (name "perl-moox-late")
5310 (version "0.015")
5311 (source
5312 (origin
5313 (method url-fetch)
5314 (uri (string-append
5315 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
5316 version
5317 ".tar.gz"))
5318 (sha256
5319 (base32
5320 "1gzvd9zws3v09sh0xx6srmw4jwi22fnrya4zcsc8dykn62pjclqp"))))
5321 (build-system perl-build-system)
5322 (native-inputs
5323 `(("perl-test-fatal" ,perl-test-fatal)
5324 ("perl-test-requires" ,perl-test-requires)))
5325 (inputs
5326 `(("perl-moo" ,perl-moo)
5327 ("perl-moox" ,perl-moox)
5328 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
5329 (propagated-inputs
5330 `(("perl-type-tiny" ,perl-type-tiny)))
5331 (home-page
5332 "http://search.cpan.org/dist/MooX-late")
5333 (synopsis "Easily translate Moose code to Moo")
5334 (description
5335 "MooX::late does the following:
5336@enumerate
5337@item Supports isa => $stringytype
5338@item Supports does => $rolename
5339@item Supports lazy_build => 1
5340@item Exports blessed and confess functions to your namespace.
5341@item Handles certain attribute traits
5342Currently Hash, Array and Code are supported. This feature requires
5343MooX::HandlesVia.
5344@end enumerate")
5345 (license perl-license)))
5346
70de16ea
EB
5347(define-public perl-moox-types-mooselike
5348 (package
5349 (name "perl-moox-types-mooselike")
5350 (version "0.28")
5351 (source
5352 (origin
5353 (method url-fetch)
5354 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
5355 "MooX-Types-MooseLike-" version ".tar.gz"))
5356 (sha256
5357 (base32
5358 "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
5359 (build-system perl-build-system)
5360 (native-inputs
5361 `(("perl-moo" ,perl-moo)
5362 ("perl-test-fatal" ,perl-test-fatal)))
5363 (propagated-inputs
5364 `(("perl-module-runtime" ,perl-module-runtime)
5365 ("perl-strictures" ,perl-strictures)))
5366 (home-page "http://search.cpan.org/dist/MooX-Types-MooseLike")
5367 (synopsis "Moosish types and type builder")
5368 (description "MooX::Types::MooseLike provides a possibility to build your
5369own set of Moose-like types. These custom types can then be used to describe
5370fields in Moo-based classes.")
5371 (license (package-license perl))))
5372
456f14f0
MB
5373(define-public perl-mouse
5374 (package
5375 (name "perl-mouse")
5376 (version "2.4.9")
5377 (source (origin
5378 (method url-fetch)
5379 (uri (string-append
5380 "mirror://cpan/authors/id/S/SY/SYOHEX/Mouse-v"
5381 version
5382 ".tar.gz"))
5383 (sha256
5384 (base32
5385 "1y20sl97x1h4y1iid47hj0w1hb2887dchh4nfffgmqpyggkslh4n"))))
5386 (build-system perl-build-system)
5387 (native-inputs
5388 `(("perl-module-build" ,perl-module-build)
5389 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
5390 ("perl-test-exception" ,perl-test-exception)
5391 ("perl-test-fatal" ,perl-test-fatal)
5392 ("perl-test-leaktrace" ,perl-test-leaktrace)
5393 ("perl-test-output" ,perl-test-output)
5394 ("perl-test-requires" ,perl-test-requires)
5395 ("perl-try-tiny" ,perl-try-tiny)))
5396 (home-page "https://github.com/gfx/p5-Mouse")
5397 (synopsis "Fast Moose-compatible object system for perl5")
5398 (description
5399 "Mouse is a @code{Moose} compatible object system that implements a
5400subset of the functionality for reduced startup time.")
5401 (license (package-license perl))))
5402
418852f9
MB
5403(define-public perl-mousex-nativetraits
5404 (package
5405 (name "perl-mousex-nativetraits")
5406 (version "1.09")
5407 (source (origin
5408 (method url-fetch)
5409 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
5410 "MouseX-NativeTraits-" version ".tar.gz"))
5411 (sha256
5412 (base32
5413 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
5414 (build-system perl-build-system)
5415 (native-inputs
5416 `(("perl-any-moose" ,perl-any-moose)
5890b40b 5417 ("perl-module-install" ,perl-module-install)
418852f9
MB
5418 ("perl-test-fatal" ,perl-test-fatal)))
5419 (propagated-inputs
5420 `(("perl-mouse" ,perl-mouse)))
5421 (home-page "http://search.cpan.org/dist/MouseX-NativeTraits")
5422 (synopsis "Extend attribute interfaces for Mouse")
5423 (description
5424 "While @code{Mouse} attributes provide a way to name your accessors,
5425readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
5426provides commonly used attribute helper methods for more specific types
5427of data.")
5428 (license (package-license perl))))
5429
3521dc92
RW
5430(define-public perl-mozilla-ca
5431 (package
5432 (name "perl-mozilla-ca")
5433 (version "20160104")
5434 (source
5435 (origin
5436 (method url-fetch)
5437 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
5438 version ".tar.gz"))
5439 (sha256
5440 (base32
5441 "0aizn08lrdrgjz9vagkjmw2c7sxn46fzz521v9dbcqii4jd0d9r7"))))
5442 (build-system perl-build-system)
5443 (home-page "http://search.cpan.org/dist/Mozilla-CA")
5444 (synopsis "Mozilla's CA cert bundle in PEM format")
5445 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
5446Certificate Authority certificates in a form that can be consumed by modules
5447and libraries based on OpenSSL.")
5448 (license mpl2.0)))
5449
2aa51030
EB
5450(define-public perl-mro-compat
5451 (package
5452 (name "perl-mro-compat")
2fec4b98 5453 (version "0.13")
2aa51030
EB
5454 (source
5455 (origin
5456 (method url-fetch)
2fec4b98 5457 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2aa51030
EB
5458 "MRO-Compat-" version ".tar.gz"))
5459 (sha256
5460 (base32
2fec4b98 5461 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
2aa51030
EB
5462 (build-system perl-build-system)
5463 (home-page "http://search.cpan.org/dist/MRO-Compat")
5464 (synopsis "MRO interface compatibility for Perls < 5.9.5")
5465 (description "The \"mro\" namespace provides several utilities for dealing
5466with method resolution order and method caching in general in Perl 5.9.5 and
5467higher. This module provides those interfaces for earlier versions of
5468Perl (back to 5.6.0).")
5469 (license (package-license perl))))
5470
ceb3b138
EB
5471(define-public perl-namespace-autoclean
5472 (package
5473 (name "perl-namespace-autoclean")
e4146b04 5474 (version "0.28")
ceb3b138
EB
5475 (source
5476 (origin
5477 (method url-fetch)
5478 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5479 "namespace-autoclean-" version ".tar.gz"))
5480 (sha256
5481 (base32
e4146b04 5482 "0fbcq99yaix1aa99jl3v811dbw24il9jxnh5i2i23mddh4b0lhfd"))))
ceb3b138
EB
5483 (build-system perl-build-system)
5484 (native-inputs
a2190ccc
EB
5485 `(("perl-module-build" ,perl-module-build)
5486 ("perl-test-requires" ,perl-test-requires)))
ceb3b138
EB
5487 (propagated-inputs
5488 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
5489 ("perl-namespace-clean" ,perl-namespace-clean)
5490 ("perl-sub-identify" ,perl-sub-identify)))
5491 (home-page "http://search.cpan.org/dist/namespace-autoclean")
5492 (synopsis "Keep imports out of your namespace")
5493 (description "The namespace::autoclean pragma will remove all imported
5494symbols at the end of the current package's compile cycle. Functions called
5495in the package itself will still be bound by their name, but they won't show
5496up as methods on your class or instances. It is very similar to
5497namespace::clean, except it will clean all imported functions, no matter if
5498you imported them before or after you used the pragma. It will also not touch
5499anything that looks like a method.")
5500 (license (package-license perl))))
5501
9727c33f
EB
5502(define-public perl-namespace-clean
5503 (package
5504 (name "perl-namespace-clean")
5505 (version "0.25")
5506 (source
5507 (origin
5508 (method url-fetch)
5509 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
5510 "namespace-clean-" version ".tar.gz"))
5511 (sha256
5512 (base32
5513 "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
5514 (build-system perl-build-system)
5515 (propagated-inputs
5516 `(("perl-package-stash" ,perl-package-stash)
5517 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
5518 (home-page "http://search.cpan.org/dist/namespace-clean")
5519 (synopsis "Keep imports and functions out of your namespace")
5520 (description "The namespace::clean pragma will remove all previously
5521declared or imported symbols at the end of the current package's compile
5522cycle. Functions called in the package itself will still be bound by their
5523name, but they won't show up as methods on your class or instances.")
5524 (license (package-license perl))))
5525
24c1c513
CB
5526(define-public perl-net-idn-encode
5527 (package
5528 (name "perl-net-idn-encode")
5529 (version "2.400")
5530 (source
5531 (origin
5532 (method url-fetch)
5533 (uri (string-append
5534 "mirror://cpan/authors/id/C/CF/CFAERBER/Net-IDN-Encode-"
5535 version
5536 ".tar.gz"))
5537 (sha256
5538 (base32
5539 "0a9knav5f9kjldrkxx1k47ivd3p23zkmi8aqgyhnxidhgasz1dlq"))))
5540 (build-system perl-build-system)
5541 (native-inputs
5542 `(("perl-module-build" ,perl-module-build)
5543 ("perl-test-nowarnings" ,perl-test-nowarnings)))
5544 (home-page
5545 "http://search.cpan.org/dist/Net-IDN-Encode")
5546 (synopsis
5547 "Internationalizing Domain Names in Applications (IDNA)")
5548 (description
5549 "Internationalized Domain Names (IDNs) use characters drawn from a large
5550repertoire (Unicode), but IDNA allows the non-ASCII characters to be
5551represented using only the ASCII characters already allowed in so-called host
5552names today (letter-digit-hyphen, /[A-Z0-9-]/i).
5553
5554Use this module if you just want to convert domain names (or email addresses),
5555using whatever IDNA standard is the best choice at the moment.")
5556 (license perl-license)))
5557
16c6a01e
JN
5558(define-public perl-net-statsd
5559 (package
5560 (name "perl-net-statsd")
5561 (version "0.12")
5562 (source
5563 (origin
5564 (method url-fetch)
5565 (uri (string-append
5566 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
5567 version
5568 ".tar.gz"))
5569 (sha256
5570 (base32
5571 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
5572 (build-system perl-build-system)
5573 (home-page
5574 "http://search.cpan.org/dist/Net-Statsd")
5575 (synopsis "Perl client for Etsy's statsd daemon")
5576 (description "This module implement a UDP client for the statsd statistics
5577collector daemon in use at Etsy.com.")
5578 (license (package-license perl))))
5579
f57c7686
EB
5580(define-public perl-number-compare
5581 (package
5582 (name "perl-number-compare")
5583 (version "0.03")
5584 (source
5585 (origin
5586 (method url-fetch)
5587 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
5588 "Number-Compare-" version ".tar.gz"))
5589 (sha256
5590 (base32
5591 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
5592 (build-system perl-build-system)
5593 (home-page "http://search.cpan.org/dist/Number-Compare")
5594 (synopsis "Numeric comparisons")
5595 (description "Number::Compare compiles a simple comparison to an anonymous
5596subroutine, which you can call with a value to be tested against.")
5597 (license (package-license perl))))
5598
152ce152
EB
5599(define-public perl-object-signature
5600 (package
5601 (name "perl-object-signature")
5602 (version "1.07")
5603 (source
5604 (origin
5605 (method url-fetch)
5606 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
5607 "Object-Signature-" version ".tar.gz"))
5608 (sha256
5609 (base32
5610 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
5611 (build-system perl-build-system)
9dab5017
MB
5612 (native-inputs
5613 `(("perl-module-install" ,perl-module-install)))
152ce152
EB
5614 (home-page "http://search.cpan.org/dist/Object-Signature")
5615 (synopsis "Generate cryptographic signatures for objects")
5616 (description "Object::Signature is an abstract base class that you can
5617inherit from in order to allow your objects to generate unique cryptographic
5618signatures.")
5619 (license (package-license perl))))
6330ece9
AP
5620
5621(define-public perl-ole-storage-lite
5622 (package
5623 (name "perl-ole-storage-lite")
5624 (version "0.19")
5625 (source
5626 (origin
5627 (method url-fetch)
5628 (uri (string-append
5629 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
5630 version
5631 ".tar.gz"))
5632 (sha256
5633 (base32
5634 "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"))))
5635 (build-system perl-build-system)
5636 (home-page "http://search.cpan.org/dist/OLE-Storage_Lite")
5637 (synopsis "Read and write OLE storage files")
5638 (description "This module allows you to read and write
5639an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
5640technology to store hierarchical information such as links to other
5641documents within a single file.")
5642 (license (package-license perl))))
152ce152 5643
76a6f279
EB
5644(define-public perl-package-anon
5645 (package
5646 (name "perl-package-anon")
5647 (version "0.05")
5648 (source
5649 (origin
5650 (method url-fetch)
5651 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
5652 "Package-Anon-" version ".tar.gz"))
5653 (sha256
5654 (base32
5655 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
5656 (build-system perl-build-system)
5657 (propagated-inputs
5658 `(("perl-sub-exporter" ,perl-sub-exporter)
5659 ("perl-params-util" ,perl-params-util)))
5660 (home-page "http://search.cpan.org/dist/Package-Anon")
5661 (synopsis "Anonymous packages")
5662 (description "This module allows for anonymous packages that are
5663independent of the main namespace and only available through an object
5664instance, not by name.")
5665 (license (package-license perl))))
5666
21a99dda
EB
5667(define-public perl-package-deprecationmanager
5668 (package
5669 (name "perl-package-deprecationmanager")
3857a3fc 5670 (version "0.17")
21a99dda
EB
5671 (source
5672 (origin
5673 (method url-fetch)
5674 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5675 "Package-DeprecationManager-" version ".tar.gz"))
5676 (sha256
5677 (base32
3857a3fc 5678 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
21a99dda
EB
5679 (build-system perl-build-system)
5680 (native-inputs
5681 `(("perl-test-fatal" ,perl-test-fatal)
5682 ("perl-test-requires" ,perl-test-requires)
5683 ("perl-test-output" ,perl-test-output)))
5684 (propagated-inputs
5685 `(("perl-list-moreutils" ,perl-list-moreutils)
5686 ("perl-params-util" ,perl-params-util)
5687 ("perl-sub-install" ,perl-sub-install)))
5688 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
5689 (home-page "http://search.cpan.org/dist/Package-DeprecationManager")
5690 (synopsis "Manage deprecation warnings for your distribution")
5691 (description "This module allows you to manage a set of deprecations for
5692one or more modules.")
5693 (license artistic2.0)))
5694
d9e6af90
EB
5695(define-public perl-package-stash
5696 (package
5697 (name "perl-package-stash")
5698 (version "0.37")
5699 (source
5700 (origin
5701 (method url-fetch)
5702 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5703 "Package-Stash-" version ".tar.gz"))
5704 (sha256
5705 (base32
5706 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
5707 (build-system perl-build-system)
5708 (native-inputs
5709 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5710 ("perl-test-fatal" ,perl-test-fatal)
5711 ("perl-test-requires" ,perl-test-requires)
5712 ("perl-package-anon" ,perl-package-anon)))
5713 (propagated-inputs
5714 `(("perl-module-implementation" ,perl-module-implementation)
5715 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5716 ("perl-package-stash-xs" ,perl-package-stash-xs)))
5717 (home-page "http://search.cpan.org/dist/Package-Stash")
5718 (synopsis "Routines for manipulating stashes")
5719 (description "Manipulating stashes (Perl's symbol tables) is occasionally
5720necessary, but incredibly messy, and easy to get wrong. This module hides all
5721of that behind a simple API.")
5722 (license (package-license perl))))
5723
f9f64440
EB
5724(define-public perl-package-stash-xs
5725 (package
5726 (name "perl-package-stash-xs")
5727 (version "0.28")
5728 (source
5729 (origin
5730 (method url-fetch)
5731 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5732 "Package-Stash-XS-" version ".tar.gz"))
5733 (sha256
5734 (base32
5735 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
5736 (build-system perl-build-system)
5737 (native-inputs
5738 `(("perl-test-fatal" ,perl-test-fatal)
5739 ("perl-test-requires" ,perl-test-requires)
5740 ("perl-package-anon" ,perl-package-anon)))
5741 (home-page "http://search.cpan.org/dist/Package-Stash-XS")
5742 (synopsis "Faster implementation of the Package::Stash API")
5743 (description "This is a backend for Package::Stash, which provides the
5744functionality in a way that's less buggy and much faster. It will be used by
5745default if it's installed, and should be preferred in all environments with a
5746compiler.")
5747 (license (package-license perl))))
5748
54af5f55
EB
5749(define-public perl-padwalker
5750 (package
5751 (name "perl-padwalker")
5752 (version "2.0")
5753 (source
5754 (origin
5755 (method url-fetch)
5756 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
5757 "PadWalker-" version ".tar.gz"))
5758 (sha256
5759 (base32
5760 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
5761 (build-system perl-build-system)
5762 (home-page "http://search.cpan.org/dist/PadWalker")
5763 (synopsis "Play with other peoples' lexical variables")
5764 (description "PadWalker is a module which allows you to inspect (and even
5765change) lexical variables in any subroutine which called you. It will only
5766show those variables which are in scope at the point of the call. PadWalker
5767is particularly useful for debugging.")
5768 (license (package-license perl))))
5769
ce195ba1
RJPB
5770(define-public perl-parallel-forkmanager
5771 (package
5772 (name "perl-parallel-forkmanager")
5773 (version "1.19")
5774 (source
5775 (origin
5776 (method url-fetch)
5777 (uri (string-append
5778 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
5779 version
5780 ".tar.gz"))
5781 (sha256
5782 (base32
5783 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
5784 (build-system perl-build-system)
5785 (native-inputs
5786 `(("perl-test-warn" ,perl-test-warn)))
5787 (home-page "http://search.cpan.org/dist/Parallel-ForkManager")
5788 (synopsis "Simple parallel processing fork manager")
5789 (description "@code{Parallel::ForkManager} is intended for use in
5790operations that can be done in parallel where the number of
5791processes to be forked off should be limited.")
5792 (license (package-license perl))))
5793
8ba06a38
RW
5794(define-public perl-params-util
5795 (package
5796 (name "perl-params-util")
5797 (version "1.07")
5798 (source
5799 (origin
5800 (method url-fetch)
5801 (uri (string-append
5802 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
5803 version ".tar.gz"))
5804 (sha256
5805 (base32
5806 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
5807 (build-system perl-build-system)
5808 (home-page "http://search.cpan.org/dist/Params-Util")
5809 (synopsis "Simple, compact and correct param-checking functions")
5810 (description
5811 "Params::Util provides a basic set of importable functions that makes
5812checking parameters easier.")
5813 (license (package-license perl))))
7850f47a 5814
5c2234f0
EB
5815(define-public perl-params-validate
5816 (package
5817 (name "perl-params-validate")
84c73b7f 5818 (version "1.26")
5c2234f0
EB
5819 (source
5820 (origin
5821 (method url-fetch)
5822 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5823 "Params-Validate-" version ".tar.gz"))
5824 (sha256
5825 (base32
84c73b7f 5826 "1vbj78qd46ip09i06dsbb62jfwpzp4bg7yi617v98nvim77w66l2"))))
5c2234f0
EB
5827 (build-system perl-build-system)
5828 (native-inputs
a2190ccc
EB
5829 `(("perl-module-build" ,perl-module-build)
5830 ("perl-test-fatal" ,perl-test-fatal)
5c2234f0
EB
5831 ("perl-test-requires" ,perl-test-requires)))
5832 (propagated-inputs
5833 `(("perl-module-implementation" ,perl-module-implementation)))
5834 (home-page "http://search.cpan.org/dist/Params-Validate")
5835 (synopsis "Validate method/function parameters")
5836 (description "The Params::Validate module allows you to validate method or
5837function call parameters to an arbitrary level of specificity.")
5838 (license artistic2.0)))
5839
ccb38cdc
LF
5840(define-public perl-params-validationcompiler
5841 (package
5842 (name "perl-params-validationcompiler")
5843 (version "0.24")
5844 (source
5845 (origin
5846 (method url-fetch)
5847 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5848 "Params-ValidationCompiler-" version ".tar.gz"))
5849 (sha256
5850 (base32
5851 "11s29wd7gci4c7gcksxw7pzxfzganvr8x4f1dsww4676p93kg5m8"))))
5852 (build-system perl-build-system)
5853 (native-inputs
5854 `(("perl-test-without-module" ,perl-test-without-module)
5855 ("perl-test2-bundle-extended" ,perl-test2-bundle-extended)
5856 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)))
5857 (propagated-inputs
5858 `(("perl-eval-closure" ,perl-eval-closure)
5859 ("perl-exception-class" ,perl-exception-class)
5860 ("perl-specio" ,perl-specio)))
5861 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
5862 (synopsis "Build an optimized subroutine parameter validator")
5863 (description "This module creates a customized, highly efficient
5864parameter checking subroutine. It can handle named or positional
5865parameters, and can return the parameters as key/value pairs or a list
5866of values. In addition to type checks, it also supports parameter
5867defaults, optional parameters, and extra \"slurpy\" parameters.")
5868 (license artistic2.0)))
5869
09e02106
EB
5870(define-public perl-par-dist
5871 (package
5872 (name "perl-par-dist")
5873 (version "0.49")
5874 (source
5875 (origin
5876 (method url-fetch)
5877 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5878 "PAR-Dist-" version ".tar.gz"))
5879 (sha256
5880 (base32
5881 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
5882 (build-system perl-build-system)
5883 (home-page "http://search.cpan.org/dist/PAR-Dist")
5884 (synopsis "Create and manipulate PAR distributions")
5885 (description "PAR::Dist is a toolkit to create and manipulate PAR
5886distributions.")
5887 (license (package-license perl))))
5888
ec77a714
EB
5889(define-public perl-parent
5890 (package
5891 (name "perl-parent")
5892 (version "0.228")
5893 (source
5894 (origin
5895 (method url-fetch)
5896 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
5897 "parent-" version ".tar.gz"))
5898 (sha256
5899 (base32
5900 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
5901 (build-system perl-build-system)
5902 (home-page "http://search.cpan.org/dist/parent")
5903 (synopsis "Establish an ISA relationship with base classes at compile time")
5904 (description "Allows you to both load one or more modules, while setting
5905up inheritance from those modules at the same time.")
5906 (license (package-license perl))))
5907
65b04b4a
EB
5908(define-public perl-path-class
5909 (package
5910 (name "perl-path-class")
5911 (version "0.35")
5912 (source
5913 (origin
5914 (method url-fetch)
5915 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
5916 "Path-Class-" version ".tar.gz"))
5917 (sha256
5918 (base32
5919 "1viaj8jyshcj135la0kgfgzalaw06xnbsg9h54jx09v1342v69lj"))))
5920 (build-system perl-build-system)
a2190ccc 5921 (native-inputs `(("perl-module-build" ,perl-module-build)))
65b04b4a
EB
5922 (home-page "http://search.cpan.org/dist/Path-Class")
5923 (synopsis "Path specification manipulation")
5924 (description "Path::Class is a module for manipulation of file and
5925directory specifications in a cross-platform manner.")
5926 (license (package-license perl))))
29fda459 5927
428e4463 5928(define-public perl-path-tiny
5929 (package
5930 (name "perl-path-tiny")
5931 (version "0.096")
5932 (source (origin
5933 (method url-fetch)
5934 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
5935 "Path-Tiny-" version ".tar.gz"))
5936 (sha256
5937 (base32
5938 "08dmr6ijjg3dp7h9dxix0nmad0fw16c6qzs4qc0hdz500gd64sr2"))))
5939 (build-system perl-build-system)
5940 (arguments
5941 `(#:tests? #f)) ; Tests require additional test modules to be packaged
5942 ;; (native-inputs
5943 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
5944 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
5945 (inputs
5946 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
5947 (home-page "http://search.cpan.org/dist/Path-Tiny")
5948 (synopsis "File path utility")
5949 (description "This module provides a small, fast utility for working
5950with file paths.")
5951 (license asl2.0)))
5952
77ff12c9
AS
5953(define-public perl-perlio-utf8_strict
5954 (package
5955 (name "perl-perlio-utf8-strict")
5956 (version "0.006")
5957 (source (origin
5958 (method url-fetch)
5959 (uri (string-append
5960 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
5961 version ".tar.gz"))
5962 (sha256
5963 (base32
5964 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
5965 (build-system perl-build-system)
5966 (native-inputs
5967 `(("perl-test-exception" ,perl-test-exception)))
5968 (home-page
5969 "http://search.cpan.org/dist/PerlIO-utf8_strict")
5970 (synopsis "Fast and correct UTF-8 IO")
5971 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
5972PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
5973for correctness.")
5974 (license (package-license perl))))
5975
29fda459
EB
5976(define-public perl-pod-coverage
5977 (package
5978 (name "perl-pod-coverage")
5979 (version "0.23")
5980 (source
5981 (origin
5982 (method url-fetch)
5983 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
5984 "Pod-Coverage-" version ".tar.gz"))
5985 (sha256
5986 (base32
5987 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
5988 (build-system perl-build-system)
5989 (propagated-inputs
5990 `(("perl-devel-symdump" ,perl-devel-symdump)))
5991 (home-page "http://search.cpan.org/dist/Pod-Coverage")
5992 (synopsis "Check for comprehensive documentation of a module")
5993 (description "This module provides a mechanism for determining if the pod
5994for a given module is comprehensive.")
5995 (license (package-license perl))))
65b04b4a 5996
f187b2a2
ED
5997(define-public perl-pod-simple
5998 (package
5999 (name "perl-pod-simple")
6000 (version "3.31")
6001 (source (origin
6002 (method url-fetch)
6003 (uri (string-append "mirror://cpan/authors/id/M/MA/MARCGREEN/"
6004 "Pod-Simple-" version ".tar.gz"))
6005 (sha256
6006 (base32
6007 "04705pcs31s71vpmnpfdy8ds0q700q4cs2dlyssyrdjbvx3ymq3l"))))
6008 (build-system perl-build-system)
6009 (home-page "http://search.cpan.org/dist/Pod-Simple/")
6010 (synopsis "Parsing library for text in Pod format")
6011 (description "Pod::Simple is a Perl library for parsing text in
6012the Pod (plain old documentation) markup language that is typically
6013used for writing documentation for Perl and for Perl modules.")
6014 (license (package-license perl))))
6015
f5721e47
EB
6016(define-public perl-posix-strftime-compiler
6017 (package
6018 (name "perl-posix-strftime-compiler")
6019 (version "0.41")
6020 (source
6021 (origin
6022 (method url-fetch)
6023 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
6024 "POSIX-strftime-Compiler-" version ".tar.gz"))
6025 (sha256
6026 (base32
6027 "0f9p3hx0vqx8zg5v24pz0s4zc8ln100c7c91ks681wq02phqj2v7"))))
6028 (build-system perl-build-system)
a2190ccc 6029 (native-inputs `(("perl-module-build" ,perl-module-build)))
f5721e47
EB
6030 (arguments `(#:tests? #f)) ;TODO: Timezone test failures
6031 (home-page "http://search.cpan.org/dist/POSIX-strftime-Compiler")
6032 (synopsis "GNU C library compatible strftime for loggers and servers")
6033 (description "POSIX::strftime::Compiler provides GNU C library compatible
6034strftime(3). But this module is not affected by the system locale. This
6035feature is useful when you want to write loggers, servers, and portable
6036applications.")
6037 (license (package-license perl))))
6038
7850f47a
EB
6039(define-public perl-probe-perl
6040 (package
6041 (name "perl-probe-perl")
6042 (version "0.03")
6043 (source (origin
6044 (method url-fetch)
6045 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
6046 "Probe-Perl-" version ".tar.gz"))
6047 (sha256
6048 (base32
6049 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
6050 (build-system perl-build-system)
6051 (synopsis "Information about the currently running perl")
6052 (description
6053 "Probe::Perl provides methods for obtaining information about the
6054currently running perl interpreter. It originally began life as code in the
6055Module::Build project, but has been externalized here for general use.")
6056 (home-page (string-append "http://search.cpan.org/~kwilliams/"
6057 "Probe-Perl-" version))
6058 (license (package-license perl))))
c7518b04 6059
8ce23128
EB
6060(define-public perl-readonly
6061 (package
6062 (name "perl-readonly")
6063 (version "2.00")
6064 (source
6065 (origin
6066 (method url-fetch)
6067 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
6068 "Readonly-" version ".tar.gz"))
6069 (sha256
6070 (base32
6071 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
6072 (build-system perl-build-system)
a2190ccc 6073 (native-inputs `(("perl-module-build" ,perl-module-build)))
8ce23128
EB
6074 (home-page "http://search.cpan.org/dist/Readonly")
6075 (synopsis "Create read-only scalars, arrays, hashes")
6076 (description "This module provides a facility for creating non-modifiable
6077variables in Perl. This is useful for configuration files, headers, etc. It
6078can also be useful as a development and debugging tool for catching updates to
6079variables that should not be changed.")
6080 (license (package-license perl))))
6081
a0eb3104
RW
6082(define-public perl-ref-util-xs
6083 (package
6084 (name "perl-ref-util-xs")
6085 (version "0.116")
6086 (source
6087 (origin
6088 (method url-fetch)
6089 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
6090 "Ref-Util-XS-" version ".tar.gz"))
6091 (sha256
6092 (base32
6093 "0l5dzbd71iclv8fdjk7685rq6pbfiiydh0n70br6g9l9iy2smr6f"))))
6094 (build-system perl-build-system)
6095 (home-page "http://search.cpan.org/dist/Ref-Util-XS")
6096 (synopsis "XS implementation for Ref::Util")
6097 (description "@code{Ref::Util::XS} is the XS implementation of
6098@code{Ref::Util}, which provides several functions to help identify references
6099in a more convenient way than the usual approach of examining the return value
6100of @code{ref}.")
6101 (license x11)))
6102
73fc71ba 6103(define-public perl-regexp-common
c7518b04 6104 (package
73fc71ba 6105 (name "perl-regexp-common")
e2f24597 6106 (version "2017060201")
c7518b04
EB
6107 (source (origin
6108 (method url-fetch)
73fc71ba
EB
6109 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
6110 "Regexp-Common-" version ".tar.gz"))
c7518b04
EB
6111 (sha256
6112 (base32
e2f24597 6113 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
c7518b04 6114 (build-system perl-build-system)
73fc71ba 6115 (synopsis "Provide commonly requested regular expressions")
c7518b04 6116 (description
73fc71ba
EB
6117 "This module exports a single hash (`%RE') that stores or generates
6118commonly needed regular expressions. Patterns currently provided include:
6119balanced parentheses and brackets, delimited text (with escapes), integers and
6120floating-point numbers in any base (up to 36), comments in 44 languages,
6121offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
6122codes.")
6123 (home-page (string-append "http://search.cpan.org/~abigail/"
6124 "Regexp-Common-" version))
6125 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
6126 (license (list (package-license perl) x11 bsd-3))))
2e66590a 6127
44d37e43
RW
6128(define-public perl-regexp-util
6129 (package
6130 (name "perl-regexp-util")
6131 (version "0.003")
6132 (source
6133 (origin
6134 (method url-fetch)
6135 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
6136 "Regexp-Util-" version ".tar.gz"))
6137 (sha256
6138 (base32
6139 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
6140 (build-system perl-build-system)
6141 (home-page "http://search.cpan.org/dist/Regexp-Util")
6142 (synopsis "Selection of general-utility regexp subroutines")
6143 (description "This package provides a selection of regular expression
6144subroutines including @code{is_regexp}, @code{regexp_seen_evals},
6145@code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
6146and @code{deserialize_regexp}.")
6147 (license (package-license perl))))
6148
6e1bb8aa
EB
6149(define-public perl-role-tiny
6150 (package
6151 (name "perl-role-tiny")
6152 (version "1.003004")
6153 (source
6154 (origin
6155 (method url-fetch)
6156 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6157 "Role-Tiny-" version ".tar.gz"))
6158 (sha256
6159 (base32
6160 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
6161 (build-system perl-build-system)
6162 (native-inputs
6163 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
6164 ("perl-test-fatal" ,perl-test-fatal)))
6165 (propagated-inputs
6166 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
6167 (home-page "http://search.cpan.org/dist/Role-Tiny")
6168 (synopsis "Roles, as a slice of Moose")
6169 (description "Role::Tiny is a minimalist role composition tool.")
6170 (license (package-license perl))))
6171
317c4a1d
EB
6172(define-public perl-safe-isa
6173 (package
6174 (name "perl-safe-isa")
6175 (version "1.000005")
6176 (source
6177 (origin
6178 (method url-fetch)
6179 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6180 "Safe-Isa-" version ".tar.gz"))
6181 (sha256
6182 (base32
6183 "1vib54cp64dy3ic4n73skadp1pl4gn8s9qpxmzvi078dm3mpnbcw"))))
6184 (build-system perl-build-system)
6185 (home-page "http://search.cpan.org/dist/Safe-Isa")
6186 (synopsis "Call isa, can, does, and DOES safely")
6187 (description "This module allows you to call isa, can, does, and DOES
6188safely on things that may not be objects.")
6189 (license (package-license perl))))
6190
393ca946
EB
6191(define-public perl-scope-guard
6192 (package
6193 (name "perl-scope-guard")
6194 (version "0.20")
6195 (source
6196 (origin
6197 (method url-fetch)
6198 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
6199 "Scope-Guard-" version ".tar.gz"))
6200 (sha256
6201 (base32
6202 "1lsagnz6pli035zvx5c1x4qm9fabi773vns86yd8lzfpldhfv3sv"))))
6203 (build-system perl-build-system)
6204 (home-page "http://search.cpan.org/dist/Scope-Guard")
6205 (synopsis "Lexically-scoped resource management")
6206 (description "This module provides a convenient way to perform cleanup or
6207other forms of resource management at the end of a scope. It is particularly
6208useful when dealing with exceptions: the Scope::Guard constructor takes a
6209reference to a subroutine that is guaranteed to be called even if the thread
6210of execution is aborted prematurely. This effectively allows lexically-scoped
6211\"promises\" to be made that are automatically honoured by perl's garbage
6212collector.")
6213 (license (package-license perl))))
6214
23c28360
EB
6215(define-public perl-set-infinite
6216 (package
6217 (name "perl-set-infinite")
6218 (version "0.65")
6219 (source
6220 (origin
6221 (method url-fetch)
6222 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
6223 "Set-Infinite-" version ".tar.gz"))
6224 (sha256
6225 (base32
6226 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
6227 (build-system perl-build-system)
6228 (home-page "http://search.cpan.org/dist/Set-Infinite")
6229 (synopsis "Infinite sets")
6230 (description "Set::Infinite is a set theory module for infinite sets.")
6231 (license (package-license perl))))
6232
1937e38d
EB
6233(define-public perl-set-object
6234 (package
6235 (name "perl-set-object")
6236 (version "1.35")
6237 (source
6238 (origin
6239 (method url-fetch)
6240 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
6241 "Set-Object-" version ".tar.gz"))
6242 (sha256
6243 (base32
6244 "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
6245 (build-system perl-build-system)
6246 (propagated-inputs
6247 `(("perl-moose" ,perl-moose)
6248 ("perl-test-leaktrace" ,perl-test-leaktrace)))
6249 (home-page "http://search.cpan.org/dist/Set-Object")
6250 (synopsis "Unordered collections of Perl Objects")
6251 (description "Set::Object provides efficient sets, unordered collections
6252of Perl objects without duplicates for scalars and references.")
6253 (license artistic2.0)))
6254
f21671f4
EB
6255(define-public perl-set-scalar
6256 (package
6257 (name "perl-set-scalar")
6258 (version "1.29")
6259 (source
6260 (origin
6261 (method url-fetch)
6262 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
6263 "Set-Scalar-" version ".tar.gz"))
6264 (sha256
6265 (base32
6266 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
6267 (build-system perl-build-system)
6268 (home-page "http://search.cpan.org/dist/Set-Scalar")
6269 (synopsis "Set operations for Perl")
6270 (description "The first priority of Set::Scalar is to be a convenient
e881752c 6271interface to sets (as in: unordered collections of Perl scalars). While not
f21671f4
EB
6272designed to be slow or big, neither has it been designed to be fast or
6273compact.")
6274 (license (package-license perl))))
6275
0ef5191c
RW
6276(define-public perl-sort-key
6277 (package
6278 (name "perl-sort-key")
6279 (version "1.33")
6280 (source
6281 (origin
6282 (method url-fetch)
6283 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
6284 version ".tar.gz"))
6285 (sha256
6286 (base32
6287 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
6288 (build-system perl-build-system)
6289 (home-page "http://search.cpan.org/dist/Sort-Key")
6290 (synopsis "Sort arrays by one or multiple calculated keys")
6291 (description "This Perl module provides various functions to quickly sort
6292arrays by one or multiple calculated keys.")
6293 (license (package-license perl))))
6294
b51f02a9
LF
6295(define-public perl-specio
6296 (package
6297 (name "perl-specio")
6298 (version "0.38")
6299 (source
6300 (origin
6301 (method url-fetch)
6302 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6303 "Specio-" version ".tar.gz"))
6304 (sha256
6305 (base32
6306 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
6307 (build-system perl-build-system)
6308 (propagated-inputs
6309 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
6310 ("perl-eval-closure" ,perl-eval-closure)
6311 ("perl-module-runtime" ,perl-module-runtime)
6312 ("perl-mro-compat" ,perl-mro-compat)
6313 ("perl-role-tiny" ,perl-role-tiny)
6314 ("perl-test-fatal" ,perl-test-fatal)
6315 ("perl-test-needs" ,perl-test-needs)))
6316 (home-page "http://search.cpan.org/dist/Specio/")
6317 (synopsis "Classes for representing type constraints and coercion")
6318 (description "The Specio distribution provides classes for representing type
6319constraints and coercion, along with syntax sugar for declaring them. Note that
6320this is not a proper type system for Perl. Nothing in this distribution will
6321magically make the Perl interpreter start checking a value's type on assignment
6322to a variable. In fact, there's no built-in way to apply a type to a variable at
6323all. Instead, you can explicitly check a value against a type, and optionally
6324coerce values to that type.")
6325 (license artistic2.0)))
6326
54268c43
EB
6327(define-public perl-spiffy
6328 (package
6329 (name "perl-spiffy")
6330 (version "0.46")
6331 (source
6332 (origin
6333 (method url-fetch)
6334 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
6335 "Spiffy-" version ".tar.gz"))
6336 (sha256
6337 (base32
6338 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
6339 (build-system perl-build-system)
6340 (home-page "http://search.cpan.org/dist/Spiffy")
6341 (synopsis "Spiffy Perl Interface Framework For You")
6342 (description "Spiffy is a framework and methodology for doing object
6343oriented (OO) programming in Perl. Spiffy combines the best parts of
6344Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
6345It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
6346straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
6347other OO languages like Python, Ruby, Java and Perl 6.")
6348 (license (package-license perl))))
6349
83e825a1
EB
6350(define-public perl-stream-buffered
6351 (package
6352 (name "perl-stream-buffered")
6353 (version "0.03")
6354 (source
6355 (origin
6356 (method url-fetch)
6357 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6358 "Stream-Buffered-" version ".tar.gz"))
6359 (sha256
6360 (base32
6361 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
6362 (build-system perl-build-system)
6363 (home-page "http://search.cpan.org/dist/Stream-Buffered")
6364 (synopsis "Temporary buffer to save bytes")
6365 (description "Stream::Buffered is a buffer class to store arbitrary length
6366of byte strings and then get a seekable filehandle once everything is
6367buffered. It uses PerlIO and/or temporary file to save the buffer depending
6368on the length of the size.")
6369 (license (package-license perl))))
6370
77917f67
EB
6371(define-public perl-strictures
6372 (package
6373 (name "perl-strictures")
6374 (version "1.005005")
6375 (source
6376 (origin
6377 (method url-fetch)
6378 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6379 "strictures-" version ".tar.gz"))
6380 (sha256
6381 (base32
6382 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
6383 (build-system perl-build-system)
6384 (home-page "http://search.cpan.org/dist/strictures")
6385 (synopsis "Turn on strict and make all warnings fatal")
6386 (description "Strictures turns on strict and make all warnings fatal when
6387run from within a source-controlled directory.")
6388 (license (package-license perl))))
6389
06f5001a
EB
6390(define-public perl-string-camelcase
6391 (package
6392 (name "perl-string-camelcase")
6393 (version "0.02")
6394 (source
6395 (origin
6396 (method url-fetch)
6397 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
6398 "String-CamelCase-" version ".tar.gz"))
6399 (sha256
6400 (base32
6401 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
6402 (build-system perl-build-system)
f87c1107
MB
6403 (arguments
6404 `(#:phases
6405 (modify-phases %standard-phases
6406 (add-before 'configure 'set-perl-search-path
6407 (lambda _
6408 ;; Work around "dotless @INC" build failure.
6409 (setenv "PERL5LIB"
6410 (string-append (getcwd) ":"
6411 (getenv "PERL5LIB")))
6412 #t)))))
06f5001a
EB
6413 (home-page "http://search.cpan.org/dist/String-CamelCase")
6414 (synopsis "Camelcase and de-camelcase")
6415 (description "This module may be used to convert from under_score text to
6416CamelCase and back again.")
6417 (license (package-license perl))))
6418
895046f9
EB
6419(define-public perl-string-rewriteprefix
6420 (package
6421 (name "perl-string-rewriteprefix")
6422 (version "0.007")
6423 (source
6424 (origin
6425 (method url-fetch)
6426 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
6427 "String-RewritePrefix-" version ".tar.gz"))
6428 (sha256
6429 (base32
6430 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
6431 (build-system perl-build-system)
6432 (propagated-inputs
6433 `(("perl-sub-exporter" ,perl-sub-exporter)))
6434 (home-page "http://search.cpan.org/dist/String-RewritePrefix")
6435 (synopsis "Rewrite strings based on a set of known prefixes")
6436 (description "This module allows you to rewrite strings based on a set of
e881752c 6437known prefixes.")
895046f9
EB
6438 (license (package-license perl))))
6439
c47b85de
RW
6440(define-public perl-string-print
6441 (package
6442 (name "perl-string-print")
6443 (version "0.15")
6444 (source (origin
6445 (method url-fetch)
6446 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
6447 "String-Print-" version ".tar.gz"))
6448 (sha256
6449 (base32
6450 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
6451 (build-system perl-build-system)
6452 (propagated-inputs
6453 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
6454 (home-page "http://search.cpan.org/dist/String-Print")
6455 (synopsis "String printing alternatives to printf")
6456 (description
6457 "This module inserts values into (translated) strings. It provides
6458@code{printf} and @code{sprintf} alternatives via both an object-oriented and
6459a functional interface.")
6460 (license (package-license perl))))
6461
61593ab3
RW
6462(define-public perl-sub-exporter
6463 (package
6464 (name "perl-sub-exporter")
6465 (version "0.987")
6466 (source
6467 (origin
6468 (method url-fetch)
6469 (uri (string-append
6470 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
6471 version ".tar.gz"))
6472 (sha256
6473 (base32
6474 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
6475 (build-system perl-build-system)
6476 (propagated-inputs
6477 `(("perl-data-optlist" ,perl-data-optlist)
6478 ("perl-params-util" ,perl-params-util)))
6479 (home-page "http://search.cpan.org/dist/Sub-Exporter")
6480 (synopsis "Sophisticated exporter for custom-built routines")
6481 (description
6482 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
6483custom-built routines.")
6484 (license (package-license perl))))
6485
85e92c32
EB
6486(define-public perl-sub-exporter-progressive
6487 (package
6488 (name "perl-sub-exporter-progressive")
6489 (version "0.001011")
6490 (source
6491 (origin
6492 (method url-fetch)
6493 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
6494 "Sub-Exporter-Progressive-" version ".tar.gz"))
6495 (sha256
6496 (base32
6497 "01kwzbqwdhvadpphnczid03nlyj0h4cxaq3m3v2401bckkkcc606"))))
6498 (build-system perl-build-system)
6499 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
6500 (home-page "http://search.cpan.org/dist/Sub-Exporter-Progressive")
6501 (synopsis "Only use Sub::Exporter if you need it")
6502 (description "Sub::Exporter is an incredibly powerful module, but with
6503that power comes great responsibility, as well as some runtime penalties.
6504This module is a \"Sub::Exporter\" wrapper that will let your users just use
6505Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
6506if your users try to use \"Sub::Exporter\"'s more advanced features, like
6507renaming exports, if they try to use them.")
6508 (license (package-license perl))))
6509
a7a75c87
EB
6510(define-public perl-sub-identify
6511 (package
6512 (name "perl-sub-identify")
6513 (version "0.10")
6514 (source
6515 (origin
6516 (method url-fetch)
6517 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
6518 "Sub-Identify-" version ".tar.gz"))
6519 (sha256
6520 (base32
6521 "087fjcg6w576w47i1slj6mjfd3gl1b0airgddmn3prn0nff6nn2m"))))
6522 (build-system perl-build-system)
6523 (home-page "http://search.cpan.org/dist/Sub-Identify")
6524 (synopsis "Retrieve names of code references")
6525 (description "Sub::Identify allows you to retrieve the real name of code
6526references.")
6527 (license (package-license perl))))
6528
721fd177
LF
6529(define-public perl-sub-info
6530 (package
6531 (name "perl-sub-info")
6532 (version "0.002")
6533 (source
6534 (origin
6535 (method url-fetch)
6536 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
6537 version ".tar.gz"))
6538 (sha256
6539 (base32
6540 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
6541 (build-system perl-build-system)
6542 (propagated-inputs
6543 `(("perl-importer" ,perl-importer)))
6544 (home-page "http://search.cpan.org/dist/Sub-Info/")
6545 (synopsis "Tool to inspect subroutines")
6546 (description "This package provides tools for inspecting subroutines
6547in Perl.")
6548 (license (package-license perl))))
6549
aeccd1bd
RW
6550(define-public perl-sub-install
6551 (package
6552 (name "perl-sub-install")
6553 (version "0.928")
6554 (source
6555 (origin
6556 (method url-fetch)
6557 (uri (string-append
6558 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
6559 version ".tar.gz"))
6560 (sha256
6561 (base32
6562 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
6563 (build-system perl-build-system)
6564 (home-page "http://search.cpan.org/dist/Sub-Install")
6565 (synopsis "Install subroutines into packages easily")
6566 (description
6567 "Sub::Install makes it easy to install subroutines into packages without
6568the unsightly mess of C<no strict> or typeglobs lying about where just anyone
6569can see them.")
6570 (license (package-license perl))))
6571
39bbf613
EB
6572(define-public perl-sub-name
6573 (package
6574 (name "perl-sub-name")
be7e5432 6575 (version "0.21")
39bbf613
EB
6576 (source
6577 (origin
6578 (method url-fetch)
6579 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6580 "Sub-Name-" version ".tar.gz"))
6581 (sha256
6582 (base32
be7e5432 6583 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
39bbf613
EB
6584 (build-system perl-build-system)
6585 (native-inputs
6586 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
6587 (home-page "http://search.cpan.org/dist/Sub-Name")
6588 (synopsis "(Re)name a sub")
6589 (description "Assigns a new name to referenced sub. If package
6590specification is omitted in the name, then the current package is used. The
6591return value is the sub.")
6592 (license (package-license perl))))
6593
5d2935e3
EB
6594(define-public perl-sub-uplevel
6595 (package
6596 (name "perl-sub-uplevel")
6597 (version "0.24")
6598 (source
6599 (origin
6600 (method url-fetch)
6601 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6602 "Sub-Uplevel-" version ".tar.gz"))
6603 (sha256
6604 (base32
6605 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
6606 (build-system perl-build-system)
6607 (home-page "http://search.cpan.org/dist/Sub-Uplevel")
6608 (synopsis "Apparently run a function in a higher stack frame")
6609 (description "Like Tcl's uplevel() function, but not quite so dangerous.
6610The idea is just to fool caller(). All the really naughty bits of Tcl's
6611uplevel() are avoided.")
6612 (license (package-license perl))))
6613
a78f535d
RW
6614(define-public perl-svg
6615 (package
6616 (name "perl-svg")
6617 (version "2.63")
6618 (source
6619 (origin
6620 (method url-fetch)
6621 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
6622 version ".tar.gz"))
6623 (sha256
6624 (base32
6625 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
6626 (build-system perl-build-system)
6627 (home-page "http://search.cpan.org/dist/SVG")
6628 (synopsis "Perl extension for generating SVG documents")
6629 (description "SVG is a Perl module which generates a nested data structure
6630containing the DOM representation of an SVG (Scalable Vector Graphics) image.
6631Using SVG, you can generate SVG objects, embed other SVG instances into it,
6632access the DOM object, create and access Javascript, and generate SMIL
6633animation content.")
6634 (license (package-license perl))))
6635
15cd0542
EB
6636(define-public perl-switch
6637 (package
6638 (name "perl-switch")
6639 (version "2.17")
6640 (source
6641 (origin
6642 (method url-fetch)
6643 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
6644 version ".tar.gz"))
6645 (sha256
6646 (base32
6647 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
6648 (build-system perl-build-system)
6649 (home-page "http://search.cpan.org/dist/Switch")
6650 (synopsis "Switch statement for Perl")
6651 (description "Switch is a Perl module which implements a generalized case
6652mechanism. The module augments the standard Perl syntax with two new
6653statements: @code{switch} and @code{case}.")
6654 (license (package-license perl))))
6655
73fc71ba
EB
6656(define-public perl-sys-cpu
6657 (package
6658 (name "perl-sys-cpu")
6659 (version "0.61")
6660 (source (origin
6661 (method url-fetch)
6662 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
6663 "Sys-CPU-" version ".tar.gz"))
6664 (sha256
6665 (base32
6666 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))))
6667 (build-system perl-build-system)
6668 (synopsis "Perl extension for getting CPU information")
6669 (description
c9d7cd47
TGR
6670 "Sys::CPU is a module for counting the number of CPUs on a system, and
6671determining their type and clock speed.")
73fc71ba
EB
6672 (home-page (string-append "http://search.cpan.org/~mzsanford/"
6673 "Sys-CPU-" version))
6674 (license (package-license perl))))
6675
8ac84f23
EB
6676(define-public perl-sys-hostname-long
6677 (package
6678 (name "perl-sys-hostname-long")
6679 (version "1.5")
6680 (source
6681 (origin
6682 (method url-fetch)
6683 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
6684 "Sys-Hostname-Long-" version ".tar.gz"))
6685 (sha256
6686 (base32
6687 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
6688 (build-system perl-build-system)
6689 (arguments `(#:tests? #f)) ;no `hostname' during build
6690 (home-page "http://search.cpan.org/dist/Sys-Hostname-Long")
6691 (synopsis "Get full hostname in Perl")
6692 (description "Sys::Hostname::Long tries very hard to get the full hostname
6693of a system.")
6694 (license (package-license perl))))
6695
ae7135a2
EB
6696(define-public perl-task-weaken
6697 (package
6698 (name "perl-task-weaken")
6699 (version "1.04")
6700 (source
6701 (origin
6702 (method url-fetch)
6703 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6704 "Task-Weaken-" version ".tar.gz"))
6705 (sha256
6706 (base32
6707 "1i7kd9v8fjsqyhr4rx4a1jv7n5vfjjm1v4agb24pizh0b72p3qk7"))))
6708 (build-system perl-build-system)
23212bf9
LC
6709 (arguments
6710 '(#:phases (modify-phases %standard-phases
6711 (add-before 'configure 'set-search-path
6712 (lambda _
6713 ;; Work around "dotless @INC" build failure.
6714 (setenv "PERL5LIB"
6715 (string-append (getcwd) ":"
6716 (getenv "PERL5LIB")))
6717 #t)))))
ae7135a2
EB
6718 (home-page "http://search.cpan.org/dist/Task-Weaken")
6719 (synopsis "Ensure that a platform has weaken support")
6720 (description "One recurring problem in modules that use Scalar::Util's
6721weaken function is that it is not present in the pure-perl variant. If
6722Scalar::Util is not available at all, it will issue a normal dependency on the
6723module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
6724module does not have weaken, the install will bail out altogether with a long
6725error encouraging the user to seek support.")
6726 (license (package-license perl))))
6727
d4b5a5fc
EB
6728(define-public perl-template-toolkit
6729 (package
6730 (name "perl-template-toolkit")
6731 (version "2.26")
6732 (source
6733 (origin
6734 (method url-fetch)
6735 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
6736 "Template-Toolkit-" version ".tar.gz"))
6737 (sha256
6738 (base32
6739 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
6740 (build-system perl-build-system)
6741 (propagated-inputs
6742 `(("perl-appconfig" ,perl-appconfig)
6743 ("perl-test-leaktrace" ,perl-test-leaktrace)))
6744 (home-page "http://search.cpan.org/dist/Template-Toolkit")
6745 (synopsis "Template processing system for Perl")
6746 (description "The Template Toolkit is a collection of modules which
6747implement an extensible template processing system. It was originally
6748designed and remains primarily useful for generating dynamic web content, but
6749it can be used equally well for processing any other kind of text based
6750documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
6751 (license (package-license perl))))
6752
9e4a022b
EB
6753(define-public perl-template-timer
6754 (package
6755 (name "perl-template-timer")
6756 (version "1.00")
6757 (source
6758 (origin
6759 (method url-fetch)
6760 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
6761 "Template-Timer-" version ".tar.gz"))
6762 (sha256
6763 (base32
6764 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
6765 (build-system perl-build-system)
6766 (propagated-inputs
6767 `(("perl-template-toolkit" ,perl-template-toolkit)))
6768 (home-page "http://search.cpan.org/dist/Template-Timer")
6769 (synopsis "Profiling for Template Toolkit")
6770 (description "Template::Timer provides inline profiling of the template
6771processing in Perl code.")
6772 (license (list gpl3 artistic2.0))))
6773
257fa40b
EB
6774(define-public perl-term-encoding
6775 (package
6776 (name "perl-term-encoding")
6777 (version "0.02")
6778 (source
6779 (origin
6780 (method url-fetch)
6781 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
6782 "Term-Encoding-" version ".tar.gz"))
6783 (sha256
6784 (base32
6785 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
6786 (build-system perl-build-system)
9dab5017
MB
6787 (native-inputs
6788 `(("perl-module-install" ,perl-module-install)))
257fa40b
EB
6789 (home-page "http://search.cpan.org/dist/Term-Encoding")
6790 (synopsis "Detect encoding of the current terminal")
6791 (description "Term::Encoding is a simple module to detect the encoding of
6792the current terminal expects in various ways.")
6793 (license (package-license perl))))
6794
cc307bda
EB
6795(define-public perl-term-progressbar
6796 (package
6797 (name "perl-term-progressbar")
6798 (version "2.17")
6799 (source
6800 (origin
6801 (method url-fetch)
6802 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
6803 "Term-ProgressBar-" version ".tar.gz"))
6804 (sha256
6805 (base32
6806 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
6807 (build-system perl-build-system)
6808 (native-inputs
6809 `(("perl-capture-tiny" ,perl-capture-tiny)
6810 ("perl-test-exception" ,perl-test-exception)))
6811 (propagated-inputs
6812 `(("perl-class-methodmaker" ,perl-class-methodmaker)
6813 ("perl-term-readkey" ,perl-term-readkey)))
6814 (home-page "http://search.cpan.org/dist/Term-ProgressBar")
6815 (synopsis "Progress meter on a standard terminal")
6816 (description "Term::ProgressBar provides a simple progress bar on the
6817terminal, to let the user know that something is happening, roughly how much
6818stuff has been done, and maybe an estimate at how long remains.")
6819 (license (package-license perl))))
6820
0d54bd25
EB
6821(define-public perl-term-progressbar-quiet
6822 (package
6823 (name "perl-term-progressbar-quiet")
6824 (version "0.31")
6825 (source
6826 (origin
6827 (method url-fetch)
6828 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
6829 "Term-ProgressBar-Quiet-" version ".tar.gz"))
6830 (sha256
6831 (base32
6832 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
6833 (build-system perl-build-system)
6834 (propagated-inputs
6835 `(("perl-io-interactive" ,perl-io-interactive)
6836 ("perl-term-progressbar" ,perl-term-progressbar)
6837 ("perl-test-mockobject" ,perl-test-mockobject)))
6838 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Quiet")
6839 (synopsis "Progress meter if run interactively")
6840 (description "Term::ProgressBar is a wonderful module for showing progress
6841bars on the terminal. This module acts very much like that module when it is
e881752c 6842run interactively. However, when it is not run interactively (for example, as
0d54bd25
EB
6843a cron job) then it does not show the progress bar.")
6844 (license (package-license perl))))
6845
0955342b
EB
6846(define-public perl-term-progressbar-simple
6847 (package
6848 (name "perl-term-progressbar-simple")
6849 (version "0.03")
6850 (source
6851 (origin
6852 (method url-fetch)
6853 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
6854 "Term-ProgressBar-Simple-" version ".tar.gz"))
6855 (sha256
6856 (base32
6857 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
6858 (build-system perl-build-system)
6859 (propagated-inputs
6860 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
6861 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Simple")
6862 (synopsis "Simple progress bars")
6863 (description "Term::ProgressBar::Simple tells you how much work has been
6864done, how much is left to do, and estimate how long it will take.")
6865 (license (package-license perl))))
6866
70fe0008
EB
6867(define-public perl-term-readkey
6868 (package
6869 (name "perl-term-readkey")
d6c73cb4 6870 (version "2.37")
70fe0008
EB
6871 (source
6872 (origin
6873 (method url-fetch)
6874 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
6875 "TermReadKey-" version ".tar.gz"))
6876 (sha256
6877 (base32
d6c73cb4 6878 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
70fe0008
EB
6879 (build-system perl-build-system)
6880 (home-page "http://search.cpan.org/dist/TermReadKey")
6881 (synopsis "Simple terminal control")
6882 (description "This module, ReadKey, provides ioctl control for terminals
6883so the input modes can be changed (thus allowing reads of a single character
6884at a time), and also provides non-blocking reads of stdin, as well as several
6885other terminal related features, including retrieval/modification of the
6886screen size, and retrieval/modification of the control characters.")
6887 (license (package-license perl))))
6888
6d6646f9
LF
6889(define-public perl-term-table
6890 (package
6891 (name "perl-term-table")
6892 (version "0.008")
6893 (source
6894 (origin
6895 (method url-fetch)
6896 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
6897 version ".tar.gz"))
6898 (sha256
6899 (base32
6900 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
6901 (build-system perl-build-system)
6902 (propagated-inputs
6903 `(("perl-importer" ,perl-importer)))
6904 (home-page "http://search.cpan.org/dist/Term-Table/")
6905 (synopsis "Format a header and rows into a table")
6906 (description "This module is able to generically format rows of data
6907into tables.")
6908 (license (package-license perl))))
6909
9ad78b2c
LF
6910(define-public perl-test2-bundle-extended
6911 (package
6912 (name "perl-test2-bundle-extended")
6913 (version "0.000072")
6914 (source
6915 (origin
6916 (method url-fetch)
6917 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Test2-Suite-"
6918 version ".tar.gz"))
6919 (sha256
6920 (base32
6921 "0hgd6n29qjh1pwqvbglm2kb852yqshmixqqjhsr2kvvibdr58qpf"))))
6922 (build-system perl-build-system)
6923 (arguments
6924 '(#:phases
6925 (modify-phases %standard-phases
6926 (add-after 'unpack 'set-env
6927 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1"))))))
6928 (propagated-inputs
6929 `(("perl-importer" ,perl-importer)
6930 ("perl-term-table" ,perl-term-table)
6931 ("perl-sub-info" ,perl-sub-info)))
6932 (home-page "http://search.cpan.org/~exodist/Test2-Suite/lib/Test2/Bundle/Extended.pm")
6933 (synopsis "Full set of tools for Test2::Suite")
6934 (description "This package provides a rich set of tools, plugins, bundles,
6935etc built upon the Test2 testing library.")
6936 (license (package-license perl))))
6937
a4d6a957
LF
6938(define-public perl-test2-plugin-nowarnings
6939 (package
6940 (name "perl-test2-plugin-nowarnings")
6941 (version "0.06")
6942 (source
6943 (origin
6944 (method url-fetch)
6945 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/Test2-Plugin-NoWarnings-"
6946 version ".tar.gz"))
6947 (sha256
6948 (base32
6949 "002qk6qsm0l6r2kaxywvc38w0yf0mlavgywq8li076pn6kcw3242"))))
6950 (build-system perl-build-system)
6951 (propagated-inputs
6952 `(("perl-test2-bundle-extended" ,perl-test2-bundle-extended)))
6953 (home-page "http://search.cpan.org/dist/Test2-Plugin-NoWarnings/")
6954 (synopsis "Fail if tests warn")
6955 (description "Loading this plugin causes your tests to fail if there any
6956warnings while they run. Each warning generates a new failing test and the
6957warning content is outputted via diag.")
6958 (license (package-license perl))))
6959
0ca74e1d
EB
6960(define-public perl-test-base
6961 (package
6962 (name "perl-test-base")
6963 (version "0.88")
6964 (source
6965 (origin
6966 (method url-fetch)
6967 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
6968 "Test-Base-" version ".tar.gz"))
6969 (sha256
6970 (base32
6971 "0fch1cvivnszbnwhpfmwv1rin04j5xkj1n1ylfmlxg6bm72qqdjj"))))
6972 (build-system perl-build-system)
6973 (native-inputs
6974 `(("perl-algorithm-diff" ,perl-algorithm-diff)
6975 ("perl-text-diff" ,perl-text-diff)))
6976 (propagated-inputs
6977 `(("perl-spiffy" ,perl-spiffy)
6978 ("perl-test-deep" ,perl-test-deep)))
6979 (home-page "http://search.cpan.org/dist/Test-Base")
6980 (synopsis "Data-driven testing framework for Perl")
6981 (description "Test::Base gives a way to trivially write your own test
6982framework base class. It concentrates on offering reusable data driven
6983patterns, so that you can write tests with a minimum of code.")
6984 (license (package-license perl))))
6985
d2d6cd67
AS
6986(define-public perl-test-class
6987 (package
6988 (name "perl-test-class")
6989 (version "0.50")
6990 (source
6991 (origin
6992 (method url-fetch)
6993 (uri (string-append
6994 "https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Class-"
6995 version
6996 ".tar.gz"))
6997 (sha256
6998 (base32
6999 "0l0kk5jvxjkic2jkf1r7v41irb344aasnzr3f5ygjgxgiknm9489"))))
7000 (build-system perl-build-system)
7001 (native-inputs
7002 `(("perl-test-exception" ,perl-test-exception)))
7003 (inputs
7004 `(("perl-module-runtime" ,perl-module-runtime)
7005 ("perl-mro-compat" ,perl-mro-compat)
7006 ("perl-try-tiny" ,perl-try-tiny)))
7007 (home-page "http://search.cpan.org/dist/Test-Class")
7008 (synopsis "Easily create test classes in an xUnit/JUnit style")
7009 (description "@code{Test::Class} provides a simple way of creating classes
7010and objects to test your code in an xUnit style.
7011
7012Built using @code{Test::Builder}, it was designed to work with other
7013@code{Test::Builder} based modules (@code{Test::More},
7014@code{Test::Differences}, @code{Test::Exception}, etc.).")
7015 (license (package-license perl))))
7016
a65d0fdb
AS
7017(define-public perl-test-class-most
7018 (package
7019 (name "perl-test-class-most")
7020 (version "0.08")
7021 (source
7022 (origin
7023 (method url-fetch)
7024 (uri (string-append
7025 "mirror://cpan/authors/id/O/OV/OVID/Test-Class-Most-"
7026 version
7027 ".tar.gz"))
7028 (sha256
7029 (base32
7030 "1zvx9hil0mg0pnb8xfa4m0xgjpvh8s5gnbyprq3xwpdsdgcdwk33"))))
7031 (build-system perl-build-system)
7032 (native-inputs
7033 `(("perl-module-build" ,perl-module-build)))
7034 (inputs
7035 `(("perl-test-class" ,perl-test-class)
7036 ("perl-test-most" ,perl-test-most)
7037 ("perl-module-runtime" ,perl-module-runtime)
7038 ("perl-try-tiny" ,perl-try-tiny)
7039 ("perl-mro-compat" ,perl-mro-compat)))
7040 (home-page "http://search.cpan.org/dist/Test-Class-Most")
7041 (synopsis "Test classes the easy way")
7042 (description "@code{Test::Class::Most} provides some more convenience when
7043using @code{Test::Class}.")
7044 (license (package-license perl))))
7045
269ef086
EB
7046(define-public perl-test-cleannamespaces
7047 (package
7048 (name "perl-test-cleannamespaces")
0ac43aaa 7049 (version "0.22")
269ef086
EB
7050 (source
7051 (origin
7052 (method url-fetch)
7053 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7054 "Test-CleanNamespaces-" version ".tar.gz"))
7055 (sha256
7056 (base32
0ac43aaa 7057 "1jma95agqqy7iwdcl6jbg1waqz7mjqng4l046lpknhfxjhcj4al6"))))
269ef086
EB
7058 (build-system perl-build-system)
7059 (native-inputs
0ac43aaa
AS
7060 `(("perl-file-pushd" ,perl-file-pushd)
7061 ("perl-test-requires" ,perl-test-requires)
269ef086
EB
7062 ("perl-test-deep" ,perl-test-deep)
7063 ("perl-test-warnings" ,perl-test-warnings)
0ac43aaa
AS
7064 ("perl-test-tester" ,perl-test-tester)
7065 ("perl-test-needs" ,perl-test-needs)))
269ef086
EB
7066 (propagated-inputs
7067 `(("perl-namespace-clean" ,perl-namespace-clean)
7068 ("perl-package-stash" ,perl-package-stash)
7069 ("perl-sub-identify" ,perl-sub-identify)
7070 ("perl-sub-exporter" ,perl-sub-exporter)
7071 ("perl-file-find-rule" ,perl-file-find-rule)
7072 ("perl-file-find-rule-perl" ,perl-file-find-rule-perl)))
7073 (home-page "http://search.cpan.org/dist/Test-CleanNamespaces")
7074 (synopsis "Check for uncleaned imports")
7075 (description "This module lets you check your module's namespaces for
7076imported functions you might have forgotten to remove with
7077namespace::autoclean or namespace::clean and are therefore available to be
7078called as methods, which usually isn't want you want.")
7079 (license (package-license perl))))
7080
d5b50202
CB
7081(define-public perl-test-cpan-meta
7082 (package
7083 (name "perl-test-cpan-meta")
7084 (version "0.25")
7085 (source
7086 (origin
7087 (method url-fetch)
7088 (uri (string-append
7089 "mirror://cpan/authors/id/B/BA/BARBIE/Test-CPAN-Meta-"
7090 version
7091 ".tar.gz"))
7092 (sha256
7093 (base32
7094 "1dcdbbdwdyhpldkhjzc9rvzlmb5jbil6fwh2x07nsfdwysf4ynzm"))))
7095 (build-system perl-build-system)
7096 (native-inputs
7097 `(("perl-test-cpan-meta-json" ,perl-test-cpan-meta-json)
7098 ("perl-test-pod" ,perl-test-pod)
7099 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7100 (home-page
7101 "http://search.cpan.org/dist/Test-CPAN-Meta")
7102 (synopsis "Validate your CPAN META.yml files")
7103 (description
7104 "This module was written to ensure that a META.yml file meets the
7105specification.")
7106 (license artistic2.0)))
7107
19d81cf7
CB
7108(define-public perl-test-cpan-meta-json
7109 (package
7110 (name "perl-test-cpan-meta-json")
7111 (version "0.16")
7112 (source
7113 (origin
7114 (method url-fetch)
7115 (uri (string-append
7116 "mirror://cpan/authors/id/B/BA/BARBIE/Test-CPAN-Meta-JSON-"
7117 version
7118 ".tar.gz"))
7119 (sha256
7120 (base32
7121 "1jg9ka50ixwq083wd4k12rhdjq87w0ihb34gd8jjn7gvvyd51b37"))))
7122 (build-system perl-build-system)
7123 (native-inputs
7124 `(("perl-test-pod" ,perl-test-pod)
7125 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7126 (inputs
7127 `(("perl-json" ,perl-json)))
7128 (home-page
7129 "http://search.cpan.org/dist/Test-CPAN-Meta-JSON")
7130 (synopsis "Validate your CPAN META.json files")
7131 (description
7132 "This module was written to ensure that a META.json file meets the
7133specification.")
7134 (license artistic2.0)))
7135
0ad3969f
RW
7136(define-public perl-test-deep
7137 (package
7138 (name "perl-test-deep")
cf4a7132 7139 (version "1.120")
0ad3969f
RW
7140 (source (origin
7141 (method url-fetch)
7142 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7143 "Test-Deep-" version ".tar.gz"))
7144 (sha256
7145 (base32
cf4a7132 7146 "1kdy06r0yg7zwarqglc9163vbfb0sfc4s6ld4pw5q7i9f7mghzi0"))))
0ad3969f
RW
7147 (build-system perl-build-system)
7148 (inputs `(("perl-test-tester" ,perl-test-tester)
7149 ("perl-test-nowarnings" ,perl-test-nowarnings)))
7150 (synopsis "Flexible deep comparison for the Test::Builder framework")
7151 (description
7152 "Test::Deep compares two structures by going through each level, ensuring
7153that the values match, that arrays and hashes have the same elements and that
e881752c 7154references are blessed into the correct class. It also handles circular data
0ad3969f 7155structures without getting caught in an infinite loop.")
cf4a7132 7156 (home-page "http://search.cpan.org/dist/Test-Deep")
0ad3969f
RW
7157 (license gpl1+))) ; or "Artistic License"
7158
c68b1858
EB
7159(define-public perl-test-differences
7160 (package
7161 (name "perl-test-differences")
7162 (version "0.63")
7163 (source
7164 (origin
7165 (method url-fetch)
7166 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
7167 "Test-Differences-" version ".tar.gz"))
7168 (sha256
7169 (base32
7170 "0rhs4q6qn64ji06ns7lwl6iiiw3mggvd9xk9nkiqvx1jihbplrbw"))))
7171 (build-system perl-build-system)
a2190ccc
EB
7172 (native-inputs
7173 `(("perl-module-build" ,perl-module-build)))
c68b1858
EB
7174 (propagated-inputs
7175 `(("perl-text-diff" ,perl-text-diff)
7176 ("perl-capture-tiny" ,perl-capture-tiny)))
7177 (home-page "http://search.cpan.org/dist/Test-Differences")
7178 (synopsis "Test strings and data structures and show differences")
7179 (description "This module exports three test functions and four diff-style
e881752c 7180functions.")
c68b1858
EB
7181 ;; See LICENSE section of Test/Differences.pm, which reads "... GNU public
7182 ;; license, any version, ..."
7183 (license gpl3+)))
7184
d0662af9
EB
7185(define-public perl-test-directory
7186 (package
7187 (name "perl-test-directory")
7188 (version "0.041")
7189 (source
7190 (origin
7191 (method url-fetch)
7192 (uri (string-append "mirror://cpan/authors/id/S/SA/SANBEG/"
7193 "Test-Directory-" version ".tar.gz"))
7194 (sha256
7195 (base32
7196 "1ncql08cizhicbxwd753b4czns8nlcnlw0zfjcfrbdd41x4j6hqr"))))
7197 (build-system perl-build-system)
7198 (native-inputs `(("perl-test-exception" ,perl-test-exception)))
7199 (home-page "http://search.cpan.org/dist/Test-Directory")
7200 (synopsis "Perl extension for maintaining test directories")
7201 (description "Testing code can involve making sure that files are created
7202and deleted as expected. Doing this manually can be error prone, as it's easy
7203to forget a file, or miss that some unexpected file was added. This module
7204simplifies maintaining test directories by tracking their status as they are
7205modified or tested with this API, making it simple to test both individual
7206files, as well as to verify that there are no missing or unknown files.")
7207 (license (package-license perl))))
7208
7d1f9c91
CB
7209(define-public perl-test-eol
7210 (package
7211 (name "perl-test-eol")
7212 (version "2.00")
7213 (source
7214 (origin
7215 (method url-fetch)
7216 (uri (string-append
7217 "mirror://cpan/authors/id/E/ET/ETHER/Test-EOL-"
7218 version
7219 ".tar.gz"))
7220 (sha256
7221 (base32
7222 "0l3bxpsw0x7j9nclizcp53mnf9wny25dmg2iglfhzgnk0xfpwzwf"))))
7223 (build-system perl-build-system)
7224 (home-page
7225 "http://search.cpan.org/dist/Test-EOL")
7226 (synopsis
7227 "Check the correct line endings in your project")
7228 (description
7229 "@code{Test::EOL} lets you check for the presence of trailing whitespace
7230and/or windows line endings in your perl code.")
7231 (license perl-license)))
7232
800e13d2
EB
7233(define-public perl-test-exception
7234 (package
7235 (name "perl-test-exception")
ffdbbcc8 7236 (version "0.43")
800e13d2
EB
7237 (source
7238 (origin
7239 (method url-fetch)
7240 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
7241 "Test-Exception-" version ".tar.gz"))
7242 (sha256
7243 (base32
ffdbbcc8 7244 "0cxm7s4bg0xpxa6l6996a6iq3brr4j7p4hssnkc6dxv4fzq16sqm"))))
800e13d2
EB
7245 (build-system perl-build-system)
7246 (native-inputs
7247 `(("perl-module-build" ,perl-module-build)))
7248 (propagated-inputs
7249 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
7250 (home-page "http://search.cpan.org/dist/Test-Exception")
7251 (synopsis "Test exception based code")
7252 (description "This module provides a few convenience methods for testing
7253exception based code. It is built with Test::Builder and plays happily with
7254Test::More and friends.")
7255 (license (package-license perl))))
7256
07b2c254
EB
7257(define-public perl-test-fatal
7258 (package
7259 (name "perl-test-fatal")
7260 (version "0.014")
7261 (source
7262 (origin
7263 (method url-fetch)
7264 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7265 "Test-Fatal-" version ".tar.gz"))
7266 (sha256
7267 (base32
7268 "1c6bs68mss4q7cyapkv2c0jn66i21050p0faxf3s3417gdffzp5w"))))
7269 (build-system perl-build-system)
7270 (propagated-inputs `(("perl-try-tiny" ,perl-try-tiny)))
7271 (home-page "http://search.cpan.org/dist/Test-Fatal")
7272 (synopsis "Simple helpers for testing code with exceptions")
7273 (description "Test::Fatal is an alternative to the popular
7274Test::Exception. It does much less, but should allow greater flexibility in
7275testing exception-throwing code with about the same amount of typing.")
7276 (license (package-license perl))))
7277
00ace883
LF
7278(define-public perl-test-file-sharedir-dist
7279 (package
7280 (name "perl-test-file-sharedir-dist")
7281 (version "1.001002")
7282 (source
7283 (origin
7284 (method url-fetch)
7285 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
7286 "Test-File-ShareDir-" version ".tar.gz"))
7287 (sha256
7288 (base32
7289 "1bbs6cx69wcinq77gif4i4pmrj8a7lwb92sgvvxzrwmjnk5lfdmk"))))
7290 (build-system perl-build-system)
7291 (propagated-inputs
7292 `(("perl-class-tiny" ,perl-class-tiny)
7293 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
7294 ("perl-file-sharedir" ,perl-file-sharedir)
7295 ("perl-path-tiny" ,perl-path-tiny)
7296 ("perl-scope-guard" ,perl-scope-guard)
7297 ("perl-test-fatal" ,perl-test-fatal)))
7298 (home-page "https://github.com/kentnl/Test-File-ShareDir")
7299 (synopsis "Dist oriented ShareDir tester")
7300 (description "This module creates a Fake ShareDir for your modules
7301for testing.")
7302 (license (package-license perl))))
7303
f82cef25
BW
7304(define-public perl-test-files
7305 (package
7306 (name "perl-test-files")
7307 (version "0.14")
7308 (source
7309 (origin
7310 (method url-fetch)
7311 (uri (string-append
7312 "mirror://cpan/authors/id/P/PH/PHILCROW/Test-Files-"
7313 version
7314 ".tar.gz"))
7315 (sha256
7316 (base32
7317 "1zn33yigznq7i1jr4yjr4lxvc6bn7znkbqdzj7slhc146pqapkln"))))
7318 (build-system perl-build-system)
7319 (propagated-inputs
7320 `(("perl-algorithm-diff" ,perl-algorithm-diff)
7321 ("perl-text-diff" ,perl-text-diff)))
7322 (home-page "http://search.cpan.org/dist/Test-Files")
7323 (synopsis "Ease software testing with files and directories")
7324 (description "This library provides functions to enable testing of files
7325and directories. For instance, the @code{file_ok} helper can test whether the
7326contents of a file is equal to a particular string.")
7327 (license (package-license perl))))
7328
9c7d97c4
EB
7329(define-public perl-test-harness
7330 (package
7331 (name "perl-test-harness")
3949b36a 7332 (version "3.39")
9c7d97c4
EB
7333 (source
7334 (origin
7335 (method url-fetch)
7336 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
7337 "Test-Harness-" version ".tar.gz"))
7338 (sha256
7339 (base32
3949b36a 7340 "0chiqnzmna2mglm37nzxvn9qhq2j31iwz3i9isqjs7bf3k449gb9"))))
9c7d97c4
EB
7341 (build-system perl-build-system)
7342 (arguments
dc1d3cde
KK
7343 `(#:phases
7344 (modify-phases %standard-phases
7345 (add-before 'check 'patch-test
7346 (lambda* (#:key inputs #:allow-other-keys)
7347 ;; This test looks for "#!/usr/bin/perl" in some source.
7348 ;; Patch what the test looks for.
7349 (substitute* "t/source.t"
7350 (("#!/usr/bin/perl")
7351 (string-append "#!" (assoc-ref inputs "perl")
7352 "/bin/perl")))
7353 #t)))))
9c7d97c4
EB
7354 (home-page "http://search.cpan.org/dist/Test-Harness")
7355 (synopsis "Run Perl standard test scripts with statistics")
7356 (description "Simple test harness which allows tests to be run and results
7357automatically aggregated and output to STDOUT.")
7358 (license (package-license perl))))
7359
c601fa16
EB
7360(define-public perl-test-leaktrace
7361 (package
7362 (name "perl-test-leaktrace")
b91c085d 7363 (version "0.16")
c601fa16
EB
7364 (source
7365 (origin
7366 (method url-fetch)
b91c085d 7367 (uri (string-append "mirror://cpan/authors/id/L/LE/LEEJO/"
c601fa16
EB
7368 "Test-LeakTrace-" version ".tar.gz"))
7369 (sha256
7370 (base32
b91c085d 7371 "00z4hcjra5nk700f3fgpy8fs036d7ry7glpn8g3wh7jzj7nrw22z"))))
c601fa16
EB
7372 (build-system perl-build-system)
7373 (home-page "http://search.cpan.org/dist/Test-LeakTrace")
7374 (synopsis "Traces memory leaks in Perl")
7375 (description "Test::LeakTrace provides several functions that trace memory
e881752c 7376leaks. This module scans arenas, the memory allocation system, so it can
c601fa16
EB
7377detect any leaked SVs in given blocks.")
7378 (license (package-license perl))))
7379
ff80a4a7
EB
7380(define-public perl-test-longstring
7381 (package
7382 (name "perl-test-longstring")
7383 (version "0.17")
7384 (source
7385 (origin
7386 (method url-fetch)
7387 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
7388 "Test-LongString-" version ".tar.gz"))
7389 (sha256
7390 (base32
7391 "0kwp7rfr1i2amz4ckigkv13ah7jr30q6l5k4wk0vxl84myg39i5b"))))
7392 (build-system perl-build-system)
7393 (home-page "http://search.cpan.org/dist/Test-LongString")
7394 (synopsis "Tests strings for equality, with more helpful failures")
7395 (description "This module provides some drop-in replacements for the
7396string comparison functions of Test::More, but which are more suitable when
7397you test against long strings.")
7398 (license (package-license perl))))
4dbac597 7399
60e8c2ae 7400(define-public perl-test-manifest
7401 (package
7402 (name "perl-test-manifest")
7403 (version "2.02")
7404 (source (origin
7405 (method url-fetch)
7406 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
7407 "Test-Manifest-" version ".tar.gz"))
7408 (sha256
7409 (base32
7410 "15ik52l9macrrfizf4y6wj71d4lx7w590h2dfajnkmbxmz786iq6"))))
7411 (build-system perl-build-system)
7412 (native-inputs
7413 `(("perl-test-pod" ,perl-test-pod)
7414 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7415 (home-page "http://search.cpan.org/dist/Test-Manifest")
7416 (synopsis "Interact with a t/test_manifest file")
7417 (description "@code{Test::Manifest} overrides the default test file order. Instead of
7418running all of the t/*.t files in ASCII-betical order, it looks in the t/test_manifest
7419file to find out which tests you want to run and the order in which you want to run them.
7420It constructs the right value for the build system to do the right thing.")
7421 (license (package-license perl))))
7422
3d749558
CB
7423(define-public perl-test-memory-cycle
7424 (package
7425 (name "perl-test-memory-cycle")
7426 (version "1.06")
7427 (source
7428 (origin
7429 (method url-fetch)
7430 (uri (string-append
7431 "mirror://cpan/authors/id/P/PE/PETDANCE/Test-Memory-Cycle-"
7432 version
7433 ".tar.gz"))
7434 (sha256
7435 (base32
7436 "00ijmgx1r3cxrcs1qa9rb2s4gbm3nsawd90drda89kb4r7yxslwx"))))
7437 (build-system perl-build-system)
7438 (inputs
7439 `(("perl-padwalker" ,perl-padwalker)))
7440 (propagated-inputs
7441 `(("perl-devel-cycle" ,perl-devel-cycle)))
7442 (home-page
7443 "http://search.cpan.org/dist/Test-Memory-Cycle")
7444 (synopsis
7445 "Verifies code hasn't left circular references")
7446 (description
7447 "@code{Test::Memory::Cycle} is built on top of @code{Devel::Cycle} to
7448give you an easy way to check for these circular references.
7449
7450@example
7451use Test::Memory::Cycle;
7452
7453my $object = new MyObject;
7454# Do stuff with the object.
7455memory_cycle_ok( $object );
7456@end example")
7457 (license artistic2.0)))
7458
4dbac597
EB
7459(define-public perl-test-mockobject
7460 (package
7461 (name "perl-test-mockobject")
ed53a071 7462 (version "1.20150527")
4dbac597
EB
7463 (source
7464 (origin
7465 (method url-fetch)
7466 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
7467 "Test-MockObject-" version ".tar.gz"))
7468 (sha256
7469 (base32
ed53a071 7470 "160xvhbpwqjaff4fgckvldknldzcbn1z3jvyzybs7cqlj1x3bwdd"))))
4dbac597
EB
7471 (build-system perl-build-system)
7472 (native-inputs
7473 `(("perl-test-exception" ,perl-test-exception)
7474 ("perl-test-warn" ,perl-test-warn)))
7475 (propagated-inputs
7476 `(("perl-test-exception" ,perl-test-exception)
7477 ("perl-test-warn" ,perl-test-warn)
7478 ("perl-universal-can" ,perl-universal-can)
7479 ("perl-universal-isa" ,perl-universal-isa)))
a2190ccc 7480 (arguments `(#:tests? #f)) ;TODO: tests require perl-cgi
4dbac597
EB
7481 (home-page "http://search.cpan.org/dist/Test-MockObject")
7482 (synopsis "Emulate troublesome interfaces in Perl")
7483 (description "Test::MockObject allows you to create objects that conform
7484to particular interfaces with very little code. You don't have to reimplement
7485the behavior, just the input and the output.")
7486 (license (package-license perl))))
ff80a4a7 7487
9bc86718
EB
7488(define-public perl-test-mocktime
7489 (package
7490 (name "perl-test-mocktime")
7491 (version "0.13")
7492 (source
7493 (origin
7494 (method url-fetch)
7495 (uri (string-append "mirror://cpan/authors/id/D/DD/DDICK/"
7496 "Test-MockTime-" version ".tar.gz"))
7497 (sha256
7498 (base32
7499 "0yrqmjg33akannwz2f99rfm7dvvxpzsdj23lsvlvfi4qslrlqfvw"))))
7500 (build-system perl-build-system)
7501 (home-page "http://search.cpan.org/dist/Test-MockTime")
7502 (synopsis "Replaces actual time with simulated time")
7503 (description "This module was created to enable test suites to test code
7504at specific points in time. Specifically it overrides localtime, gmtime and
7505time at compile time and then relies on the user supplying a mock time via
7506set_relative_time, set_absolute_time or set_fixed_time to alter future calls
7507to gmtime,time or localtime.")
7508 (license (package-license perl))))
7509
d4dfe333
EB
7510(define-public perl-test-most
7511 (package
7512 (name "perl-test-most")
7513 (version "0.34")
7514 (source
7515 (origin
7516 (method url-fetch)
7517 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
7518 "Test-Most-" version ".tar.gz"))
7519 (sha256
7520 (base32
7521 "0i72aih3pakm8gh73wx1n4dwq8lbx6dvxhla46gsapszws6hr0n2"))))
7522 (build-system perl-build-system)
7523 (propagated-inputs
7524 `(("perl-test-differences" ,perl-test-differences)
7525 ("perl-test-warn" ,perl-test-warn)
7526 ("perl-exception-class" ,perl-exception-class)
7527 ("perl-test-deep" ,perl-test-deep)
7528 ("perl-test-exception" ,perl-test-exception)))
7529 (home-page "http://search.cpan.org/dist/Test-Most")
7530 (synopsis "Most commonly needed test functions and features")
7531 (description "This module provides the most commonly used testing
7532functions, along with automatically turning on strict and warning and gives a
7533bit more fine-grained control over test suites.")
7534 (license (package-license perl))))
7535
033dec64
AS
7536(define-public perl-test-needs
7537 (package
7538 (name "perl-test-needs")
7539 (version "0.002005")
7540 (source
7541 (origin
7542 (method url-fetch)
7543 (uri (string-append
7544 "mirror://cpan/authors/id/H/HA/HAARG/Test-Needs-"
7545 version
7546 ".tar.gz"))
7547 (sha256
7548 (base32
7549 "16gkgpmr9hvkz382iaqd3500269lk2d44fqaw3dsrvc66nc36kss"))))
7550 (build-system perl-build-system)
7551 (home-page
7552 "http://search.cpan.org/dist/Test-Needs")
7553 (synopsis
7554 "Skip tests when modules not available")
7555 (description "@code{Test::Needs} allows you to skip test scripts if
7556modules are not available. The requested modules will be loaded, and
7557optionally have their versions checked. If the module is missing, the test
7558script will be skipped. Modules that are found but fail to compile will exit
7559with an error rather than skip.
7560
7561If used in a subtest, the remainder of the subtest will be skipped.")
7562 (license (package-license perl))))
7563
88002553
CB
7564(define-public perl-test-notabs
7565 (package
7566 (name "perl-test-notabs")
7567 (version "2.00")
7568 (source
7569 (origin
7570 (method url-fetch)
7571 (uri (string-append
7572 "mirror://cpan/authors/id/E/ET/ETHER/Test-NoTabs-"
7573 version
7574 ".tar.gz"))
7575 (sha256
7576 (base32
7577 "127kpl1va267qar2ia4c22xb96jby2jqnda3sj5pjgmxg8si26cg"))))
7578 (build-system perl-build-system)
7579 (home-page
7580 "http://search.cpan.org/dist/Test-NoTabs")
7581 (synopsis
7582 "Check the presence of tabs in your project")
7583 (description
7584 "@code{Test::NoTabs} lets you check the presence of tabs in your perl
7585code.")
7586 (license perl-license)))
7587
9dc8a157
RW
7588(define-public perl-test-nowarnings
7589 (package
7590 (name "perl-test-nowarnings")
7591 (version "1.04")
7592 (source (origin
7593 (method url-fetch)
7594 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
7595 "Test-NoWarnings-" version ".tar.gz"))
7596 (sha256
7597 (base32
7598 "0v385ch0hzz9naqwdw2az3zdqi15gka76pmiwlgsy6diiijmg2k3"))))
7599 (build-system perl-build-system)
7600 (inputs `(("perl-test-tester" ,perl-test-tester)))
7601 (synopsis "Ensure no warnings are produced while testing")
7602 (description
7603 "This modules causes any warnings during testing to be captured and
7604stored. It automatically adds an extra test that will run when your script
e881752c 7605ends to check that there were no warnings. If there were any warnings, the
9dc8a157
RW
7606test will fail and output diagnostics of where, when and what the warning was,
7607including a stack trace of what was going on when it occurred.")
7608 (home-page (string-append "http://search.cpan.org/~adamk/"
7609 "Test-NoWarnings-" version))
7610 (license lgpl2.1)))
7611
25c3cf3e
MB
7612(define-public perl-test-number-delta
7613 (package
7614 (name "perl-test-number-delta")
7615 (version "1.06")
7616 (source (origin
7617 (method url-fetch)
7618 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7619 "Test-Number-Delta-" version ".tar.gz"))
7620 (sha256
7621 (base32
7622 "0jfhzhpzkc23mkrlbnv085ykpfncmy99hvppbzjnrpvgks8k0m2k"))))
7623 (build-system perl-build-system)
7624 (home-page "http://search.cpan.org/dist/Test-Number-Delta")
7625 (synopsis
7626 "Compare the difference between numbers against a given tolerance")
7627 (description
7628 "At some point or another, most programmers find they need to compare
7629floating-point numbers for equality. The typical idiom is to test if the
7630absolute value of the difference of the numbers is within a desired tolerance,
7631usually called epsilon. This module provides such a function for use with
7632@code{Test::More}.")
7633 (license asl2.0)))
7634
73fc71ba
EB
7635(define-public perl-test-output
7636 (package
7637 (name "perl-test-output")
7638 (version "1.03")
7639 (source (origin
7640 (method url-fetch)
7641 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
7642 "Test-Output-" version ".tar.gz"))
7643 (sha256
7644 (base32
7645 "12991jnzj4cbw9whhprmqvnzd1ayii84g2mh8vxbjngwqrjsy41i"))))
7646 (build-system perl-build-system)
7647 (propagated-inputs
7648 `(("perl-capture-tiny" ,perl-capture-tiny)
7649 ("perl-test-tester" ,perl-test-tester)
7650 ("perl-sub-exporter" ,perl-sub-exporter)))
7651 (synopsis "Utilities to test STDOUT and STDERR messages")
7652 (description
7653 "Test::Output provides a simple interface for testing output sent to
7654STDOUT or STDERR. A number of different utilities are included to try and be
7655as flexible as possible to the tester.")
7656 (home-page (string-append "http://search.cpan.org/~bdfoy/"
7657 "Test-Output-" version))
7658 (license (package-license perl))))
7659
88884196
EB
7660(define-public perl-test-pod
7661 (package
7662 (name "perl-test-pod")
7663 (version "1.48")
7664 (source
7665 (origin
7666 (method url-fetch)
7667 (uri (string-append "mirror://cpan/authors/id/D/DW/DWHEELER/"
7668 "Test-Pod-" version ".tar.gz"))
7669 (sha256
7670 (base32
7671 "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"))))
7672 (build-system perl-build-system)
a2190ccc 7673 (native-inputs `(("perl-module-build" ,perl-module-build)))
88884196
EB
7674 (home-page "http://search.cpan.org/dist/Test-Pod")
7675 (synopsis "Check for POD errors in files")
7676 (description "Check POD files for errors or warnings in a test file, using
7677Pod::Simple to do the heavy lifting.")
7678 (license (package-license perl))))
7679
bbe81cc0
EB
7680(define-public perl-test-pod-coverage
7681 (package
7682 (name "perl-test-pod-coverage")
7683 (version "1.10")
7684 (source
7685 (origin
7686 (method url-fetch)
7687 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
7688 "Test-Pod-Coverage-" version ".tar.gz"))
7689 (sha256
7690 (base32
7691 "1m203mhgfilz7iqc8mxaw4lw02fz391mni3n25sfx7nryylwrja8"))))
7692 (build-system perl-build-system)
7693 (propagated-inputs
7694 `(("perl-pod-coverage" ,perl-pod-coverage)))
7695 (home-page "http://search.cpan.org/dist/Test-Pod-Coverage")
7696 (synopsis "Check for pod coverage")
7697 (description "This module adds a test to your Perl distribution which
7698checks for pod coverage of all appropriate files.")
7699 (license artistic2.0)))
7700
cb6d9b1b
EB
7701(define-public perl-test-requires
7702 (package
7703 (name "perl-test-requires")
7704 (version "0.08")
7705 (source
7706 (origin
7707 (method url-fetch)
7708 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
7709 "Test-Requires-" version ".tar.gz"))
7710 (sha256
7711 (base32
7712 "08c29m0dn34384mmmpqqlbb899zpbkkc01c2lsp31mch1frv9cg7"))))
7713 (build-system perl-build-system)
7714 (home-page "http://search.cpan.org/dist/Test-Requires")
7715 (synopsis "Checks to see if the module can be loaded")
7716 (description "Test::Requires checks to see if the module can be loaded.
7717If this fails, then rather than failing tests this skips all tests.")
7718 (license (package-license perl))))
7719
2e66590a
EB
7720(define-public perl-test-script
7721 (package
7722 (name "perl-test-script")
0e05269a 7723 (version "1.20")
2e66590a
EB
7724 (source (origin
7725 (method url-fetch)
0e05269a 7726 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
2e66590a
EB
7727 "Test-Script-" version ".tar.gz"))
7728 (sha256
7729 (base32
0e05269a 7730 "1msavbi6przkxq3npm90nv925v58iym9jrk677wn46x19whwzwzm"))))
2e66590a
EB
7731 (build-system perl-build-system)
7732 (propagated-inputs
0e05269a
EF
7733 `(("perl-capture-tiny" ,perl-capture-tiny)
7734 ("perl-probe-perl" ,perl-probe-perl)))
2e66590a
EB
7735 (synopsis "Basic cross-platform tests for scripts")
7736 (description
7737 "The intent of the Test::Script module is to provide a series of basic
7738tests for 80% of the testing you will need to do for scripts in the script (or
7739bin as is also commonly used) paths of your Perl distribution.")
0e05269a 7740 (home-page "http://search.cpan.org/dist/Test-Script")
2e66590a 7741 (license (package-license perl))))
31f3976a 7742
786ccb71
EB
7743(define-public perl-test-sharedfork
7744 (package
7745 (name "perl-test-sharedfork")
7746 (version "0.29")
7747 (source
7748 (origin
7749 (method url-fetch)
7750 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
7751 "Test-SharedFork-" version ".tar.gz"))
7752 (sha256
7753 (base32
7754 "0vlak10q4gcf0ch0rfcb9lvddav6r8h15iipzbkbgf9mrj47gbv3"))))
7755 (build-system perl-build-system)
7756 (native-inputs
7757 `(("perl-test-requires" ,perl-test-requires)))
7758 (home-page "http://search.cpan.org/dist/Test-SharedFork")
7759 (synopsis "Fork test in Perl")
7760 (description "Test::SharedFork is a utility module for Test::Builder. It
7761makes fork(2) safe to use in test cases.")
7762 (license (package-license perl))))
7763
7576cbd6
RW
7764(define-public perl-test-simple
7765 (package
7766 (name "perl-test-simple")
3cb9d58a 7767 (version "1.302078")
7576cbd6
RW
7768 (source (origin
7769 (method url-fetch)
7770 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
7771 "Test-Simple-" version ".tar.gz"))
7772 (sha256
7773 (base32
3cb9d58a 7774 "05acl24kmz3dgr2nayy162yaf0kz92h1j5vkiavyv6mdh2lz6ixb"))))
7576cbd6
RW
7775 (build-system perl-build-system)
7776 (synopsis "Basic utilities for writing tests")
7777 (description
7778 "Test::Simple contains basic utilities for writing tests.")
7779 (home-page (string-append "http://search.cpan.org/~exodist/"
7780 "Test-Simple-" version))
7781 (license (package-license perl))))
7782
ea0a52d7
RW
7783(define-public perl-test-tester
7784 (package
7785 (name "perl-test-tester")
7786 (version "0.109")
7787 (source (origin
7788 (method url-fetch)
7789 (uri (string-append "mirror://cpan/authors/id/F/FD/FDALY/"
7790 "Test-Tester-" version ".tar.gz"))
7791 (sha256
7792 (base32
7793 "0m9n28z09kq455r5nydj1bnr85lvmbfpcbjdkjfbpmfb5xgciiyk"))))
7794 (build-system perl-build-system)
7795 (synopsis "Simplify running Test::Builder tests")
7796 (description
7797 "Test::Tester allows testing of test modules based on Test::Builder with
7798a minimum of effort.")
7799 (home-page (string-append "http://search.cpan.org/~fdaly/"
7800 "Test-Tester-" version))
7801 ;; "Under the same license as Perl itself"
7802 (license (package-license perl))))
90fb2e24 7803
0c190411
EB
7804(define-public perl-test-trap
7805 (package
7806 (name "perl-test-trap")
9c4ce3af 7807 (version "0.3.2")
0c190411
EB
7808 (source
7809 (origin
7810 (method url-fetch)
7811 (uri (string-append "mirror://cpan/authors/id/E/EB/EBHANSSEN/"
9c4ce3af 7812 "Test-Trap-v" version ".tar.gz"))
0c190411
EB
7813 (sha256
7814 (base32
9c4ce3af 7815 "0jq54pkm4s61gk8gzxglix1ff9s0m9vi6bpfv7f63lb9qq4r76rr"))))
0c190411 7816 (build-system perl-build-system)
a2190ccc 7817 (native-inputs
7295a0c0
MB
7818 `(("perl-module-build" ,perl-module-build)
7819 ("perl-test-simple" ,perl-test-simple)))
0c190411
EB
7820 (propagated-inputs
7821 `(("perl-test-tester" ,perl-test-tester)
7822 ("perl-data-dump" ,perl-data-dump)))
7823 (home-page "http://search.cpan.org/dist/Test-Trap")
66e07664 7824 (synopsis "Trap exit codes, exceptions, output, and so on")
0c190411
EB
7825 (description "This module is primarily (but not exclusively) for use in
7826test scripts: A block eval configurable and extensible but by default trapping
7827STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return values
7828from boxed blocks of test code.")
7829 (license (package-license perl))))
7830
cbe8f0cd
EB
7831(define-public perl-test-utf8
7832 (package
7833 (name "perl-test-utf8")
7834 (version "1.01")
7835 (source
7836 (origin
7837 (method url-fetch)
7838 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKF/"
7839 "Test-utf8-" version ".tar.gz"))
7840 (sha256
7841 (base32
7842 "0yhvf735v334qqvp9zg7i66qyk6r4cbk5s2psv93d3fdd4bindzg"))))
7843 (build-system perl-build-system)
9dab5017
MB
7844 (native-inputs
7845 `(("perl-module-install" ,perl-module-install)))
cbe8f0cd
EB
7846 (home-page "http://search.cpan.org/dist/Test-utf8")
7847 (synopsis "UTF-8 testing in Perl")
7848 (description "This module is a collection of tests useful for dealing with
7849UTF-8 strings in Perl. This module has two types of tests: The validity tests
7850check if a string is valid and not corrupt, whereas the characteristics tests
7851will check that string has a given set of characteristics.")
7852 (license (package-license perl))))
7853
bf1975c7
EB
7854(define-public perl-test-warn
7855 (package
7856 (name "perl-test-warn")
7857 (version "0.30")
7858 (source
7859 (origin
7860 (method url-fetch)
7861 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
7862 "Test-Warn-" version ".tar.gz"))
7863 (sha256
7864 (base32
7865 "0haf2ii7br5z0psmkvlvmx2z2q9qz1c70gx0969r378qjidmb5w1"))))
7866 (build-system perl-build-system)
7867 (propagated-inputs
7868 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
7869 (home-page "http://search.cpan.org/dist/Test-Warn")
7870 (synopsis "Perl extension to test methods for warnings")
7871 (description "This module provides a few convenience methods for testing
7872warning based code.")
7873 (license (package-license perl))))
7874
f59d9fc2
EB
7875(define-public perl-test-warnings
7876 (package
7877 (name "perl-test-warnings")
cbe50be4 7878 (version "0.026")
f59d9fc2
EB
7879 (source
7880 (origin
7881 (method url-fetch)
7882 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7883 "Test-Warnings-" version ".tar.gz"))
7884 (sha256
7885 (base32
cbe50be4 7886 "024srkwjckp15dxkni9lb1hc8bg4xwc52zz0iich8rv1nnqnhaxf"))))
f59d9fc2
EB
7887 (build-system perl-build-system)
7888 (home-page "http://search.cpan.org/dist/Test-Warnings")
7889 (synopsis "Test for warnings and the lack of them")
7890 (description "This module is intended to be used as a drop-in replacement
7891for Test::NoWarnings. It also adds an extra test, but runs this test before
7892done_testing calculates the test count, rather than after. It does this by
7893hooking into done_testing as well as via an END block. You can declare a
7894plan, or not, and things will still Just Work.")
7895 (license (package-license perl))))
7896
95aa068e
EB
7897(define-public perl-test-without-module
7898 (package
7899 (name "perl-test-without-module")
7900 (version "0.18")
7901 (source
7902 (origin
7903 (method url-fetch)
7904 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
7905 "Test-Without-Module-" version ".tar.gz"))
7906 (sha256
7907 (base32
7908 "0zwc2dk5srd02j4p049w77m89iw5nbff381rmhcbaz8x2w5kdhz2"))))
7909 (build-system perl-build-system)
7910 (home-page "http://search.cpan.org/dist/Test-Without-Module")
7911 (synopsis "Test fallback behaviour in absence of modules")
7912 (description "This module allows you to deliberately hide modules from a
7913program even though they are installed. This is mostly useful for testing
7914modules that have a fallback when a certain dependency module is not
7915installed.")
7916 (license (package-license perl))))
7917
da9e3012
EB
7918(define-public perl-test-writevariants
7919 (package
7920 (name "perl-test-writevariants")
7921 (version "0.010")
7922 (source
7923 (origin
7924 (method url-fetch)
7925 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7926 "Test-WriteVariants-" version ".tar.gz"))
7927 (sha256
7928 (base32
7929 "0kklp05fj98yiq8znyfx9lx1vmjay2ypfb868qdwv3kf93m5zjwr"))))
7930 (build-system perl-build-system)
7931 (native-inputs
7932 `(("perl-test-most" ,perl-test-most)
7933 ("perl-test-directory" ,perl-test-directory)))
7934 (propagated-inputs
7935 `(("perl-data-tumbler" ,perl-data-tumbler)
a2190ccc
EB
7936 ("perl-file-homedir" ,perl-file-homedir)
7937 ("perl-module-pluggable" ,perl-module-pluggable)))
da9e3012
EB
7938 (home-page "http://search.cpan.org/dist/Test-WriteVariants")
7939 (synopsis "Dynamic generation of tests")
7940 (description "The Test::WriteVariants module provides for the dynamic
7941generation of tests in nested combinations of contexts.")
7942 (license (package-license perl)))) ;See LICENSE
7943
41778634
EB
7944(define-public perl-test-yaml
7945 (package
7946 (name "perl-test-yaml")
7947 (version "1.05")
7948 (source
7949 (origin
7950 (method url-fetch)
7951 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7952 "Test-YAML-" version ".tar.gz"))
7953 (sha256
7954 (base32
7955 "079nayc0fp2fwjv8s2yr069bdffln699j6z3lqr5dpx1v2qg82ck"))))
7956 (build-system perl-build-system)
7957 (propagated-inputs
7958 `(("perl-test-base" ,perl-test-base)))
7959 (home-page "http://search.cpan.org/dist/Test-YAML")
7960 (synopsis "Testing module for YAML implementations")
7961 (description "Test::YAML is a subclass of Test::Base with YAML specific
7962support.")
7963 (license (package-license perl))))
7964
7ae95571
EB
7965(define-public perl-text-aligner
7966 (package
7967 (name "perl-text-aligner")
7968 (version "0.12")
7969 (source
7970 (origin
7971 (method url-fetch)
7972 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
7973 "Text-Aligner-" version ".tar.gz"))
7974 (sha256
7975 (base32
7976 "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
7977 (build-system perl-build-system)
a2190ccc 7978 (native-inputs `(("perl-module-build" ,perl-module-build)))
7ae95571
EB
7979 (home-page "http://search.cpan.org/dist/Text-Aligner")
7980 (synopsis "Align text")
7981 (description "Text::Aligner exports a single function, align(), which is
7982used to justify strings to various alignment styles.")
7983 (license x11)))
7984
f397c306
EB
7985(define-public perl-text-balanced
7986 (package
7987 (name "perl-text-balanced")
7988 (version "2.02")
7989 (source
7990 (origin
7991 (method url-fetch)
7992 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
7993 "Text-Balanced-" version ".tar.gz"))
7994 (sha256
7995 (base32
7996 "1d3mba2sjpp044h16pkf231cksa34ripaz6rmgxp0ygpl917az57"))))
7997 (build-system perl-build-system)
7998 (home-page "http://search.cpan.org/dist/Text-Balanced")
7999 (synopsis "Extract delimited text sequences from strings")
8000 (description "The Text::Balanced module can be used to extract delimited
8001text sequences from strings.")
8002 (license (package-license perl))))
8003
bc834d73
EB
8004(define-public perl-text-csv
8005 (package
8006 (name "perl-text-csv")
8007 (version "1.33")
8008 (source
8009 (origin
8010 (method url-fetch)
8011 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
8012 "Text-CSV-" version ".tar.gz"))
8013 (sha256
8014 (base32
8015 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
8016 (build-system perl-build-system)
8017 (home-page "http://search.cpan.org/dist/Text-CSV")
8018 (synopsis "Manipulate comma-separated values")
8019 (description "Text::CSV provides facilities for the composition and
8020decomposition of comma-separated values. An instance of the Text::CSV class
8021can combine fields into a CSV string and parse a CSV string into fields.")
8022 (license (package-license perl))))
8023
44c31aaa
RW
8024(define-public perl-text-csv-xs
8025 (package
8026 (name "perl-text-csv-xs")
8027 (version "1.25")
8028 (source
8029 (origin
8030 (method url-fetch)
8031 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
8032 "Text-CSV_XS-" version ".tgz"))
8033 (sha256
8034 (base32
8035 "06zlfbqrwbl0g2g3bhk6046yy5pf2rz80fzcp8aj47rnswz2yx5k"))))
8036 (build-system perl-build-system)
8037 (home-page "http://search.cpan.org/dist/Text-CSV_XS")
8038 (synopsis "Rountines for manipulating CSV files")
8039 (description "@code{Text::CSV_XS} provides facilities for the composition
8040and decomposition of comma-separated values. An instance of the
8041@code{Text::CSV_XS} class will combine fields into a CSV string and parse a
8042CSV string into fields. The module accepts either strings or files as input
8043and support the use of user-specified characters for delimiters, separators,
8044and escapes.")
8045 (license (package-license perl))))
8046
3453cd7a
EB
8047(define-public perl-text-diff
8048 (package
8049 (name "perl-text-diff")
e957060c 8050 (version "1.44")
3453cd7a
EB
8051 (source
8052 (origin
8053 (method url-fetch)
e957060c 8054 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
3453cd7a
EB
8055 "Text-Diff-" version ".tar.gz"))
8056 (sha256
8057 (base32
e957060c 8058 "041v92zla2acdc433f47giridf6p820sdczs7x5d71fhsyza1xsp"))))
3453cd7a
EB
8059 (build-system perl-build-system)
8060 (propagated-inputs
8061 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
8062 (home-page "http://search.cpan.org/dist/Text-Diff")
8063 (synopsis "Perform diffs on files and record sets")
8064 (description "Text::Diff provides a basic set of services akin to the GNU
8065diff utility. It is not anywhere near as feature complete as GNU diff, but it
8066is better integrated with Perl and available on all platforms. It is often
8067faster than shelling out to a system's diff executable for small files, and
8068generally slower on larger files.")
8069 (license (package-license perl))))
8070
cab88488
EB
8071(define-public perl-text-glob
8072 (package
8073 (name "perl-text-glob")
8074 (version "0.09")
8075 (source
8076 (origin
8077 (method url-fetch)
8078 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8079 "Text-Glob-" version ".tar.gz"))
8080 (sha256
8081 (base32
8082 "0lr76wrsj8wcxrq4wi8z1640w4dmdbkznp06q744rg3g0bd238d5"))))
8083 (build-system perl-build-system)
a2190ccc 8084 (native-inputs `(("perl-module-build" ,perl-module-build)))
cab88488
EB
8085 (home-page "http://search.cpan.org/dist/Text-Glob")
8086 (synopsis "Match globbing patterns against text")
8087 (description "Text::Glob implements glob(3) style matching that can be
8f65585b 8088used to match against text, rather than fetching names from a file system. If
cab88488
EB
8089you want to do full file globbing use the File::Glob module instead.")
8090 (license (package-license perl))))
8091
65829fec
JR
8092(define-public perl-text-neattemplate
8093 (package
8094 (name "perl-text-neattemplate")
8095 (version "0.1101")
8096 (source
8097 (origin
8098 (method url-fetch)
8099 (uri (string-append
8100 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
8101 "Text-NeatTemplate-" version ".tar.gz"))
8102 (sha256
8103 (base32
8104 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
8105 (build-system perl-build-system)
8106 (native-inputs
8107 `(("perl-module-build" ,perl-module-build)))
8108 (home-page
8109 "http://search.cpan.org/dist/Text-NeatTemplate")
8110 (synopsis "Fast, middleweight template engine")
8111 (description
8112 "Text::NeatTemplate provides a simple, middleweight but fast
8113template engine, for when you need speed rather than complex features,
8114yet need more features than simple variable substitution.")
8115 (license (package-license perl))))
8116
dc32ee53
RW
8117(define-public perl-text-roman
8118 (package
8119 (name "perl-text-roman")
8120 (version "3.5")
8121 (source
8122 (origin
8123 (method url-fetch)
8124 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
8125 version ".tar.gz"))
8126 (sha256
8127 (base32
8128 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
8129 (build-system perl-build-system)
8130 (home-page "http://search.cpan.org/dist/Text-Roman")
8131 (synopsis "Convert between Roman and Arabic algorisms")
8132 (description "This package provides functions to convert between Roman and
8133Arabic algorisms. It supports both conventional Roman algorisms (which range
8134from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
8135algorism to indicate multiplication by 1000.")
8136 (license (package-license perl))))
8137
e3ad9d64
EB
8138(define-public perl-text-simpletable
8139 (package
8140 (name "perl-text-simpletable")
8141 (version "2.03")
8142 (source
8143 (origin
8144 (method url-fetch)
8145 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
8146 "Text-SimpleTable-" version ".tar.gz"))
8147 (sha256
8148 (base32
8149 "15hpry9jwrf1vbjyk21s65rllxrdvp2fdzzv9gsvczggby2yyzfs"))))
8150 (build-system perl-build-system)
8151 (home-page "http://search.cpan.org/dist/Text-SimpleTable")
8152 (synopsis "Simple ASCII tables")
8153 (description "Text::SimpleTable draws simple ASCII tables.")
8154 (license artistic2.0)))
8155
10ef803e
EB
8156(define-public perl-text-table
8157 (package
8158 (name "perl-text-table")
8159 (version "1.130")
8160 (source
8161 (origin
8162 (method url-fetch)
8163 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8164 "Text-Table-" version ".tar.gz"))
8165 (sha256
8166 (base32
8167 "02c8v38k639r23dgxwgvsy4myjjzvgdb238kpiffsiz25ab3xp5j"))))
8168 (build-system perl-build-system)
a2190ccc
EB
8169 (native-inputs
8170 `(("perl-module-build" ,perl-module-build)))
10ef803e
EB
8171 (propagated-inputs
8172 `(("perl-text-aligner" ,perl-text-aligner)))
8173 (home-page "http://search.cpan.org/dist/Text-Table")
8174 (synopsis "Organize Data in Tables")
8175 (description "Text::Table renders plaintext tables.")
8176 (license x11)))
8177
996364fb
CB
8178(define-public perl-text-template
8179 (package
8180 (name "perl-text-template")
8181 (version "1.47")
8182 (source
8183 (origin
8184 (method url-fetch)
8185 (uri (string-append
8186 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
8187 version
8188 ".tar.gz"))
8189 (sha256
8190 (base32
8191 "1z781cgz7wbn80lf3kqr2ad0pg6g1wlnim0822h8liw28k3l5msh"))))
8192 (build-system perl-build-system)
8193 (home-page
8194 "http://search.cpan.org/dist/Text-Template")
8195 (synopsis
8196 "Expand template text with embedded Perl")
8197 (description
8198 "This is a library for generating letters, building HTML pages, or
8199filling in templates generally. A template is a piece of text that has little
8200Perl programs embedded in it here and there. When you fill in a template, you
8201evaluate the little programs and replace them with their values.")
8202 (license perl-license)))
8203
ad0a50e3
EB
8204(define-public perl-text-unidecode
8205 (package
8206 (name "perl-text-unidecode")
8207 (version "1.23")
8208 (source
8209 (origin
8210 (method url-fetch)
8211 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
8212 "Text-Unidecode-" version ".tar.gz"))
8213 (sha256
8214 (base32
8215 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
8216 (build-system perl-build-system)
8217 (home-page "http://search.cpan.org/dist/Text-Unidecode")
8218 (synopsis "Provide plain ASCII transliterations of Unicode text")
8219 (description "Text::Unidecode provides a function, unidecode(...) that
8220takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
8221universally displayable characters between 0x00 and 0x7F). The representation
8222is almost always an attempt at transliteration-- i.e., conveying, in Roman
8223letters, the pronunciation expressed by the text in some other writing
8224system.")
8225 (license (package-license perl))))
8226
0677b1af
EB
8227(define-public perl-throwable
8228 (package
8229 (name "perl-throwable")
8230 (version "0.200012")
8231 (source
8232 (origin
8233 (method url-fetch)
8234 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8235 "Throwable-" version ".tar.gz"))
8236 (sha256
8237 (base32
8238 "0cy8kza9pd9y5m7k5385asf4xqm54vdqnqm0am10z6j2mrxwr527"))))
8239 (build-system perl-build-system)
8240 (native-inputs
8241 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
8242 (propagated-inputs
8243 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8244 ("perl-module-runtime" ,perl-module-runtime)
8245 ("perl-moo" ,perl-moo)))
8246 (home-page "http://search.cpan.org/dist/Throwable")
8247 (synopsis "Role for classes that can be thrown")
8248 (description "Throwable is a role for classes that are meant to be thrown
8249as exceptions to standard program flow.")
8250 (license (package-license perl))))
8251
091963c6
RJ
8252(define-public perltidy
8253 (package
8254 (name "perltidy")
8255 (version "20160302")
8256 (source (origin
8257 (method url-fetch)
de67e922
LF
8258 (uri (string-append "mirror://sourceforge/perltidy/" version
8259 "/Perl-Tidy-" version ".tar.gz"))
091963c6
RJ
8260 (sha256
8261 (base32
8262 "19yw63yh5s3pq7k3nkw6nsamg5b8vvwyhgbizslgxg0mqgc4xl3d"))))
8263 (build-system perl-build-system)
8264 (home-page "http://perltidy.sourceforge.net/")
8265 (synopsis "Perl script tidier")
8266 (description "This package contains a Perl script which indents and
8267reformats Perl scripts to make them easier to read. The formatting can be
8268controlled with command line parameters. The default parameter settings
8269approximately follow the suggestions in the Perl Style Guide.")
8270 (license gpl2+)))
8271
29666383
RW
8272(define-public perl-tie-cycle
8273 (package
8274 (name "perl-tie-cycle")
8275 (version "1.221")
8276 (source
8277 (origin
8278 (method url-fetch)
8279 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
8280 version ".tar.gz"))
8281 (sha256
8282 (base32
8283 "10g6kirf6jfaldckg98y4pl87vrm7grqlg6ymb7a9vhrznyn7qn6"))))
8284 (build-system perl-build-system)
8285 (home-page "http://search.cpan.org/dist/Tie-Cycle")
8286 (synopsis "Cycle through a list of values")
8287 (description "You use @code{Tie::Cycle} to go through a list over and over
8288again. Once you get to the end of the list, you go back to the beginning.")
8289 (license (package-license perl))))
8290
92503917
EB
8291(define-public perl-tie-ixhash
8292 (package
8293 (name "perl-tie-ixhash")
8294 (version "1.23")
8295 (source
8296 (origin
8297 (method url-fetch)
8298 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
8299 "Tie-IxHash-" version ".tar.gz"))
8300 (sha256
8301 (base32
8302 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
8303 (build-system perl-build-system)
a2190ccc 8304 (native-inputs `(("perl-module-build" ,perl-module-build)))
92503917
EB
8305 (home-page "http://search.cpan.org/dist/Tie-IxHash")
8306 (synopsis "Ordered associative arrays for Perl")
8307 (description "This Perl module implements Perl hashes that preserve the
e881752c
AK
8308order in which the hash elements were added. The order is not affected when
8309values corresponding to existing keys in the IxHash are changed. The elements
8310can also be set to any arbitrary supplied order. The familiar perl array
92503917
EB
8311operations can also be performed on the IxHash.")
8312 (license (package-license perl))))
8313
2775b61b
EB
8314(define-public perl-tie-toobject
8315 (package
8316 (name "perl-tie-toobject")
8317 (version "0.03")
8318 (source
8319 (origin
8320 (method url-fetch)
8321 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
8322 "Tie-ToObject-" version ".tar.gz"))
8323 (sha256
8324 (base32
8325 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
8326 (build-system perl-build-system)
8327 (propagated-inputs
8328 `(("perl-test-simple" ,perl-test-simple)))
8329 (home-page "http://search.cpan.org/dist/Tie-ToObject")
8330 (synopsis "Tie to an existing Perl object")
8331 (description "This class provides a tie constructor that returns the
8332object it was given as it's first argument. This way side effects of calling
8333$object->TIEHASH are avoided.")
8334 (license (package-license perl))))
8335
a15145d9
EB
8336(define-public perl-time-duration
8337 (package
8338 (name "perl-time-duration")
8339 (version "1.1")
8340 (source
8341 (origin
8342 (method url-fetch)
8343 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
8344 "Time-Duration-" version ".tar.gz"))
8345 (sha256
8346 (base32
8347 "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
8348 (build-system perl-build-system)
8349 (native-inputs
9dab5017
MB
8350 `(("perl-module-install" ,perl-module-install)
8351 ("perl-test-pod" ,perl-test-pod)
a15145d9
EB
8352 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8353 (home-page "http://search.cpan.org/dist/Time-Duration")
8354 (synopsis "English expression of durations")
8355 (description "This module provides functions for expressing durations in
8356rounded or exact terms.")
8357 (license (package-license perl))))
8358
4f43da18
EB
8359(define-public perl-time-duration-parse
8360 (package
8361 (name "perl-time-duration-parse")
9b882dcc 8362 (version "0.13")
4f43da18
EB
8363 (source
8364 (origin
8365 (method url-fetch)
8366 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8367 "Time-Duration-Parse-" version ".tar.gz"))
8368 (sha256
8369 (base32
9b882dcc 8370 "0affdzhsiy7dr6dzj2p6m9lynmjh53k31bprfsfa21pz8551hjj1"))))
4f43da18
EB
8371 (build-system perl-build-system)
8372 (native-inputs
8373 `(("perl-time-duration" ,perl-time-duration)))
8374 (propagated-inputs
8375 `(("perl-exporter-lite" ,perl-exporter-lite)))
8376 (home-page "http://search.cpan.org/dist/Time-Duration-Parse")
8377 (synopsis "Parse time duration strings")
8378 (description "Time::Duration::Parse is a module to parse human readable
8379duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
8380 (license (package-license perl))))
8381
3deac8c1
EB
8382(define-public perl-time-local
8383 (package
8384 (name "perl-time-local")
8385 (version "1.2300")
8386 (source
8387 (origin
8388 (method url-fetch)
8389 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8390 "Time-Local-" version ".tar.gz"))
8391 (sha256
8392 (base32
8393 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
8394 (build-system perl-build-system)
8395 (home-page "http://search.cpan.org/dist/Time-Local")
8396 (synopsis "Efficiently compute time from local and GMT time")
8397 (description "This module provides functions that are the inverse of
8398built-in perl functions localtime() and gmtime(). They accept a date as a
8399six-element array, and return the corresponding time(2) value in seconds since
e881752c 8400the system epoch.")
3deac8c1
EB
8401 (license (package-license perl))))
8402
40f2518c
EB
8403(define-public perl-timedate
8404 (package
8405 (name "perl-timedate")
8406 (version "2.30")
8407 (source
8408 (origin
8409 (method url-fetch)
8410 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
8411 "TimeDate-" version ".tar.gz"))
8412 (sha256
8413 (base32
8414 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
8415 (build-system perl-build-system)
8416 (home-page "http://search.cpan.org/dist/TimeDate")
69b4ffcf 8417 (synopsis "Date parsing/formatting subroutines")
40f2518c 8418 (description "This module provides routines for parsing date string into
69b4ffcf 8419time values and formatting dates into ASCII strings.")
40f2518c
EB
8420 (license (package-license perl))))
8421
b79d8b1f
EB
8422(define-public perl-time-mock
8423 (package
8424 (name "perl-time-mock")
8425 (version "v0.0.2")
8426 (source
8427 (origin
8428 (method url-fetch)
8429 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
8430 "Time-Mock-" version ".tar.gz"))
8431 (sha256
8432 (base32
8433 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
8434 (build-system perl-build-system)
a2190ccc
EB
8435 (native-inputs
8436 `(("perl-module-build" ,perl-module-build)))
b79d8b1f
EB
8437 (propagated-inputs
8438 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
8439 (home-page "http://search.cpan.org/dist/Time-Mock")
8440 (synopsis "Shift and scale time")
8441 (description "This module allows you to speed up your sleep(), alarm(),
8442and time() calls.")
8443 (license (package-license perl))))
8444
b9f6e75e
EB
8445(define-public perl-tree-simple
8446 (package
8447 (name "perl-tree-simple")
8448 (version "1.25")
8449 (source
8450 (origin
8451 (method url-fetch)
8452 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8453 "Tree-Simple-" version ".tgz"))
8454 (sha256
8455 (base32
8456 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
8457 (build-system perl-build-system)
8458 (native-inputs
8459 `(("perl-module-build" ,perl-module-build)
8460 ("perl-test-exception" ,perl-test-exception)))
8461 (propagated-inputs
8462 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
8463 (home-page "http://search.cpan.org/dist/Tree-Simple")
8464 (synopsis "Simple tree object")
8465 (description "This module in a fully object-oriented implementation of a
8466simple n-ary tree.")
8467 (license (package-license perl))))
8468
7ffa58b3
EB
8469(define-public perl-tree-simple-visitorfactory
8470 (package
8471 (name "perl-tree-simple-visitorfactory")
8472 (version "0.12")
8473 (source
8474 (origin
8475 (method url-fetch)
8476 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8477 "Tree-Simple-VisitorFactory-" version ".tgz"))
8478 (sha256
8479 (base32
8480 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
8481 (build-system perl-build-system)
8482 (native-inputs
a2190ccc
EB
8483 `(("perl-module-build" ,perl-module-build)
8484 ("perl-test-exception" ,perl-test-exception)))
7ffa58b3
EB
8485 (propagated-inputs
8486 `(("perl-tree-simple" ,perl-tree-simple)
8487 ("perl-base" ,perl-base)))
8488 (home-page "http://search.cpan.org/dist/Tree-Simple-VisitorFactory")
8489 (synopsis "Factory object for dispensing Visitor objects")
8490 (description "This module is a factory for dispensing
8491Tree::Simple::Visitor::* objects.")
8492 (license (package-license perl))))
8493
90ae6151
EB
8494(define-public perl-try-tiny
8495 (package
8496 (name "perl-try-tiny")
8497 (version "0.22")
8498 (source
8499 (origin
8500 (method url-fetch)
8501 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8502 "Try-Tiny-" version ".tar.gz"))
8503 (sha256
8504 (base32
8505 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
8506 (build-system perl-build-system)
8507 (home-page "http://search.cpan.org/dist/Try-Tiny")
689db38e 8508 (synopsis "Minimal try/catch with proper preservation of $@@")
90ae6151
EB
8509 (description "This module provides bare bones try/catch/finally statements
8510that are designed to minimize common mistakes with eval blocks, and nothing
8511else.")
8512 (license x11)))
8513
413dd210
RW
8514(define-public perl-type-tie
8515 (package
8516 (name "perl-type-tie")
8517 (version "0.009")
8518 (source
8519 (origin
8520 (method url-fetch)
8521 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8522 "Type-Tie-" version ".tar.gz"))
8523 (sha256
8524 (base32
8525 "1wv32kd7gx4kfyvzs13y029f49qbbji991wawvarac7rlz09wpan"))))
8526 (build-system perl-build-system)
8527 (native-inputs
8528 `(("perl-test-fatal" ,perl-test-fatal)
8529 ("perl-test-requires" ,perl-test-requires)))
8530 (propagated-inputs
8531 `(("perl-exporter-tiny" ,perl-exporter-tiny)
8532 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
8533 (home-page "http://search.cpan.org/dist/Type-Tie")
8534 (synopsis "Tie a variable to a type constraint")
8535 (description "This module exports a single function: @code{ttie}. It ties
8536a variable to a type constraint, ensuring that whatever values stored in the
8537variable will conform to the type constraint. If the type constraint has
8538coercions, these will be used if necessary to ensure values assigned to the
8539variable conform.")
8540 (license (package-license perl))))
8541
2bdc07c2
RW
8542(define-public perl-type-tiny
8543 (package
8544 (name "perl-type-tiny")
8545 (version "1.002001")
8546 (source
8547 (origin
8548 (method url-fetch)
8549 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8550 "Type-Tiny-" version ".tar.gz"))
8551 (sha256
8552 (base32
8553 "1p8krim8kvw123nady96fagi8sk2pj1z8jkr4r8n45ihyamfxjck"))))
8554 (build-system perl-build-system)
8555 (native-inputs
8556 `(("perl-test-warnings" ,perl-test-warnings)))
8557 (propagated-inputs
8558 `(("perl-devel-lexalias" ,perl-devel-lexalias)
8559 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
8560 ("perl-exporter-tiny" ,perl-exporter-tiny)
8561 ("perl-moo" ,perl-moo)
8562 ("perl-moose" ,perl-moose)
8563 ("perl-mouse" ,perl-mouse)
8564 ("perl-ref-util-xs" ,perl-ref-util-xs)
8565 ("perl-regexp-util" ,perl-regexp-util)
8566 ("perl-type-tie" ,perl-type-tie)))
8567 (home-page "http://search.cpan.org/dist/Type-Tiny")
8568 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
8569 (description "@code{Type::Tiny} is a small class for writing type
8570constraints, inspired by Moose's type constraint API. It has only one
8571non-core dependency (and even that is simply a module that was previously
8572distributed as part of @code{Type::Tiny} but has since been spun off), and can
8573be used with Moose, Mouse and Moo (or none of the above).")
8574 (license (package-license perl))))
8575
2362b3e0
EB
8576(define-public perl-types-serialiser
8577 (package
8578 (name "perl-types-serialiser")
8579 (version "1.0")
8580 (source
8581 (origin
8582 (method url-fetch)
8583 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
8584 "Types-Serialiser-" version ".tar.gz"))
8585 (sha256
8586 (base32
8587 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
8588 (build-system perl-build-system)
8589 (propagated-inputs
8590 `(("perl-common-sense" ,perl-common-sense)))
8591 (home-page "http://search.cpan.org/dist/Types-Serialiser")
8592 (synopsis "Data types for common serialisation formats")
8593 (description "This module provides some extra datatypes that are used by
8594common serialisation formats such as JSON or CBOR.")
8595 (license (package-license perl))))
8596
37e7a492
RW
8597(define-public perl-unicode-normalize
8598 (package
8599 (name "perl-unicode-normalize")
8600 (version "1.25")
8601 (source
8602 (origin
8603 (method url-fetch)
8604 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8605 "Unicode-Normalize-" version ".tar.gz"))
8606 (sha256
8607 (base32
8608 "0v04bcyjfcfap4kfpc8q3ikq3j7s68nym4ckw3iasmmksdskmcq0"))))
8609 (build-system perl-build-system)
23212bf9
LC
8610 (arguments
8611 '(#:phases (modify-phases %standard-phases
8612 (add-before 'configure 'set-search-path
8613 (lambda _
8614 ;; Work around "dotless @INC" build failure.
8615 (setenv "PERL5LIB"
8616 (string-append (getcwd) ":"
8617 (getenv "PERL5LIB")))
8618 #t)))))
37e7a492
RW
8619 (home-page "http://search.cpan.org/dist/Unicode-Normalize")
8620 (synopsis "Unicode normalization forms")
8621 (description "This Perl module provides Unicode normalization forms.")
8622 (license (package-license perl))))
8623
5d2ecbff
RW
8624(define-public perl-unicode-collate
8625 (package
8626 (name "perl-unicode-collate")
8627 (version "1.18")
8628 (source
8629 (origin
8630 (method url-fetch)
8631 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
8632 "Unicode-Collate-" version ".tar.gz"))
8633 (sha256
8634 (base32
8635 "1lq4p3mqqljhhy8wyiyahris33j4m5qfzpi6iacmcqjzw5g4afbm"))))
8636 (build-system perl-build-system)
ebd18113
MB
8637 (arguments
8638 `(#:phases
8639 (modify-phases %standard-phases
8640 (add-before 'configure 'set-perl-search-path
8641 (lambda _
8642 ;; Work around "dotless @INC" build failure.
8643 (setenv "PERL5LIB"
8644 (string-append (getcwd) ":"
8645 (getenv "PERL5LIB")))
8646 #t)))))
5d2ecbff
RW
8647 (propagated-inputs
8648 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
8649 (home-page "http://search.cpan.org/dist/Unicode-Collate")
8650 (synopsis "Unicode collation algorithm")
8651 (description "This package provides tools for sorting and comparing
8652Unicode data.")
8653 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
8654 ;; license.
8655 (license (list (package-license perl) expat))))
8656
e92468d8
RW
8657(define-public perl-unicode-linebreak
8658 (package
8659 (name "perl-unicode-linebreak")
df669244 8660 (version "2016.003")
e92468d8
RW
8661 (source (origin
8662 (method url-fetch)
8663 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
8664 "Unicode-LineBreak-" version ".tar.gz"))
8665 (sha256
8666 (base32
df669244 8667 "096wf5x99swx7l7yd8pm2aw50g596nf50rkq7250zjcc1acjskp6"))))
e92468d8
RW
8668 (build-system perl-build-system)
8669 (propagated-inputs
8670 `(("perl-mime-charset" ,perl-mime-charset)))
8671 (home-page "http://search.cpan.org/dist/Unicode-LineBreak")
8672 (synopsis "Unicode line breaking algorithm")
8673 (description
8674 "@code{Unicode::LineBreak} implements the line breaking algorithm
8675described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
8676defined by Annex #11 is used to determine breaking positions.")
8677 (license (package-license perl))))
8678
3cf17446 8679(define-public perl-unicode-utf8
8680 (package
8681 (name "perl-unicode-utf8")
1a651aa7 8682 (version "0.62")
3cf17446 8683 (source (origin
8684 (method url-fetch)
8685 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
8686 "Unicode-UTF8-" version ".tar.gz"))
8687 (sha256
8688 (base32
1a651aa7 8689 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
3cf17446 8690 (build-system perl-build-system)
8691 (native-inputs
8692 `(("perl-test-fatal" ,perl-test-fatal)
8693 ("perl-test-leaktrace" ,perl-test-leaktrace)
8694 ("perl-variable-magic" ,perl-variable-magic)
8695 ("perl-test-pod" ,perl-test-pod)))
8696 (home-page "http://search.cpan.org/dist/Unicode-UTF8")
8697 (synopsis "Encoding and decoding of UTF-8 encoding form")
8698 (description
8699 "This module provides functions to encode and decode UTF-8 encoding form
8700as specified by Unicode and ISO/IEC 10646:2011.")
8701 (license (package-license perl))))
8702
f9671ab6
EB
8703(define-public perl-universal-can
8704 (package
8705 (name "perl-universal-can")
8706 (version "1.20140328")
8707 (source
8708 (origin
8709 (method url-fetch)
8710 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
8711 "UNIVERSAL-can-" version ".tar.gz"))
8712 (sha256
8713 (base32
8714 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
8715 (build-system perl-build-system)
8716 (home-page "http://search.cpan.org/dist/UNIVERSAL-can")
8717 (synopsis "UNIVERSAL::can() reimplementation")
8718 (description "This module attempts to work around people calling
8719UNIVERSAL::can() as a function, which it is not.")
8720 (license (package-license perl))))
8721
7332618d
EB
8722(define-public perl-universal-isa
8723 (package
8724 (name "perl-universal-isa")
8725 (version "1.20140927")
8726 (source
8727 (origin
8728 (method url-fetch)
8729 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8730 "UNIVERSAL-isa-" version ".tar.gz"))
8731 (sha256
8732 (base32
8733 "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
8734 (build-system perl-build-system)
8735 (native-inputs
8736 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
8737 (home-page "http://search.cpan.org/dist/UNIVERSAL-isa")
8738 (synopsis "UNIVERSAL::isa() reimplementation")
8739 (description "This module attempts to recover from people calling
e881752c 8740UNIVERSAL::isa as a function.")
7332618d
EB
8741 (license (package-license perl))))
8742
5f600011
EB
8743(define-public perl-variable-magic
8744 (package
8745 (name "perl-variable-magic")
7b34de5f 8746 (version "0.61")
5f600011
EB
8747 (source
8748 (origin
8749 (method url-fetch)
8750 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
8751 "Variable-Magic-" version ".tar.gz"))
8752 (sha256
8753 (base32
7b34de5f 8754 "1mx6z36c3wk61x6lag6kyws5g1cba68cw20vrb92wan7ahpfkbxq"))))
5f600011
EB
8755 (build-system perl-build-system)
8756 (home-page "http://search.cpan.org/dist/Variable-Magic")
8757 (synopsis "Associate user-defined magic to variables from Perl")
8758 (description "Magic is Perl's way of enhancing variables. This mechanism
8759lets the user add extra data to any variable and hook syntactical
8760operations (such as access, assignment or destruction) that can be applied to
8761it. With this module, you can add your own magic to any variable without
8762having to write a single line of XS.")
8763 (license (package-license perl))))
8764
176345c5
BW
8765(define-public perl-xml-writer
8766 (package
8767 (name "perl-xml-writer")
8768 (version "0.625")
8769 (source
8770 (origin
8771 (method url-fetch)
8772 (uri (string-append
8773 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
8774 version
8775 ".tar.gz"))
8776 (sha256
8777 (base32
8778 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
8779 (build-system perl-build-system)
8780 (home-page "http://search.cpan.org/dist/XML-Writer")
8781 (synopsis "Easily generate well-formed, namespace-aware XML")
8782 (description "@code{XML::Writer} is a simple Perl module for writing XML
8783documents: it takes care of constructing markup and escaping data correctly.
8784By default, it also performs a significant amount of well-formedness checking
8785on the output to make certain (for example) that start and end tags match,
8786that there is exactly one document element, and that there are not duplicate
8787attribute names.")
8788 ;; Redistribution and use in source and compiled forms, with or without
8789 ;; modification, are permitted under any circumstances. No warranty.
8790 (license public-domain)))
8791
6578c567
MB
8792(define-public perl-xs-object-magic
8793 (package
8794 (name "perl-xs-object-magic")
8795 (version "0.04")
8796 (source (origin
8797 (method url-fetch)
8798 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
8799 "XS-Object-Magic-" version ".tar.gz"))
8800 (sha256
8801 (base32
8802 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
8803 (build-system perl-build-system)
8804 (native-inputs
8805 `(("perl-extutils-depends" ,perl-extutils-depends)
4685866a 8806 ("perl-module-install" ,perl-module-install)
6578c567
MB
8807 ("perl-test-fatal" ,perl-test-fatal)))
8808 (home-page "http://search.cpan.org/dist/XS-Object-Magic")
8809 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
8810 (description
8811 "This way of associating structs with Perl space objects is designed to
8812supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
8813(structs can be associated with any data type) and opaque (the C pointer is
8814neither visible nor modifiable from Perl space).")
8815 (license (package-license perl))))
8816
419dd411
EB
8817(define-public perl-yaml
8818 (package
8819 (name "perl-yaml")
687d2c4f 8820 (version "1.23")
419dd411
EB
8821 (source
8822 (origin
8823 (method url-fetch)
8824 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
8825 "YAML-" version ".tar.gz"))
8826 (sha256
8827 (base32
687d2c4f 8828 "0kf8mllrgnrmlvjijxc6srjj1y9i8rik5jpjvm8jh4yx70h9gn1a"))))
419dd411
EB
8829 (build-system perl-build-system)
8830 (native-inputs
8831 `(("perl-test-yaml" ,perl-test-yaml)))
8832 (home-page "http://search.cpan.org/dist/YAML")
8833 (synopsis "YAML for Perl")
8834 (description "The YAML.pm module implements a YAML Loader and Dumper based
8835on the YAML 1.0 specification.")
8836 (license (package-license perl))))
8837
86bd64b6
CB
8838(define-public perl-yaml-libyaml
8839 (package
8840 (name "perl-yaml-libyaml")
8841 (version "0.65")
8842 (source
8843 (origin
8844 (method url-fetch)
8845 (uri (string-append
8846 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
8847 version
8848 ".tar.gz"))
8849 (sha256
8850 (base32
8851 "0izhvz8f29x1f50hhwfgm0iq1lz7apjjvg77lmky949jr07hnwfv"))))
8852 (build-system perl-build-system)
8853 (home-page
8854 "http://search.cpan.org/dist/YAML-LibYAML")
8855 (synopsis
8856 "Perl YAML Serialization using XS and libyaml")
8857 (description
8858 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
8859best YAML support to date.")
8860 (license perl-license)))
8861
ff31136e
EB
8862(define-public perl-yaml-tiny
8863 (package
8864 (name "perl-yaml-tiny")
8865 (version "1.66")
8866 (source
8867 (origin
8868 (method url-fetch)
8869 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8870 "YAML-Tiny-" version ".tar.gz"))
8871 (sha256
8872 (base32
8873 "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
8874 (build-system perl-build-system)
8875 (native-inputs
8876 `(("perl-json-maybexs" ,perl-json-maybexs)
8877 ("perl-module-build-tiny" ,perl-module-build-tiny)))
8878 (arguments
8879 `(#:tests? #f)) ;requires Test::More >= 0.99
8880 (home-page "http://search.cpan.org/dist/YAML-Tiny")
8881 (synopsis "Read/Write YAML files")
8882 (description "YAML::Tiny is a perl class for reading and writing
8883YAML-style files, written with as little code as possible, reducing load time
8884and memory overhead.")
8885 (license (package-license perl))))
8886
5e2b27b0
BW
8887(define-public perl-parse-yapp
8888 (package
8889 (name "perl-parse-yapp")
c317f4f9 8890 (version "1.2")
5e2b27b0
BW
8891 (source
8892 (origin
8893 (method url-fetch)
8894 (uri (string-append
c317f4f9 8895 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
5e2b27b0
BW
8896 version
8897 ".tar.gz"))
8898 (sha256
8899 (base32
c317f4f9 8900 "16p4qgqg28cy76ylcf4wq1r693gqpx8xq0w32b3564i67h49zljb"))))
5e2b27b0
BW
8901 (build-system perl-build-system)
8902 (home-page "http://search.cpan.org/dist/Parse-Yapp")
8903 (synopsis "Generate and use LALR parsers")
8904 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
8905grammars to generate Perl object oriented parser modules.")
8906 (license (package-license perl))))
8907
90fb2e24
EB
8908\f
8909;;; Some packaged modules need versions of core modules that are newer than
8910;;; those in our perl 5.16.1.
8911
e0b8689c
EB
8912(define-public perl-cpan-meta
8913 (package
8914 (name "perl-cpan-meta")
8915 (version "2.143240")
8916 (source
8917 (origin
8918 (method url-fetch)
8919 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8920 "CPAN-Meta-" version ".tar.gz"))
8921 (sha256
8922 (base32
8923 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
8924 (build-system perl-build-system)
8925 (propagated-inputs
8926 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
8927 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
8928 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
8929 (home-page "http://search.cpan.org/dist/CPAN-Meta")
8930 (synopsis "Distribution metadata for a CPAN dist")
8931 (description "Software distributions released to the CPAN include a
8932META.json or, for older distributions, META.yml, which describes the
8933distribution, its contents, and the requirements for building and installing
8934the distribution. The data structure stored in the META.json file is
8935described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
8936represent this distribution metadata (or distmeta), along with some helpful
8937methods for interrogating that data.")
8938 (license (package-license perl))))
8939
90fb2e24
EB
8940(define-public perl-cpan-meta-requirements
8941 (package
8942 (name "perl-cpan-meta-requirements")
2dfd0d7b 8943 (version "2.140")
90fb2e24
EB
8944 (source
8945 (origin
8946 (method url-fetch)
8947 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8948 "CPAN-Meta-Requirements-" version ".tar.gz"))
8949 (sha256
8950 (base32
2dfd0d7b 8951 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
90fb2e24
EB
8952 (build-system perl-build-system)
8953 (home-page "http://search.cpan.org/dist/CPAN-Meta-Requirements")
8954 (synopsis "Set of version requirements for a CPAN dist")
8955 (description "A CPAN::Meta::Requirements object models a set of version
8956constraints like those specified in the META.yml or META.json files in CPAN
8957distributions, and as defined by CPAN::Meta::Spec. It can be built up by
8958adding more and more constraints, and will reduce them to the simplest
8959representation.")
8960 (license (package-license perl))))
8961
6f2768c3
EB
8962(define-public perl-cpan-meta-yaml
8963 (package
8964 (name "perl-cpan-meta-yaml")
f3312bc1 8965 (version "0.018")
6f2768c3
EB
8966 (source
8967 (origin
8968 (method url-fetch)
8969 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8970 "CPAN-Meta-YAML-" version ".tar.gz"))
8971 (sha256
8972 (base32
f3312bc1 8973 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
6f2768c3
EB
8974 (build-system perl-build-system)
8975 (arguments
8976 `(#:tests? #f)) ;Tests require Test::More >= 0.99
8977 (home-page "http://search.cpan.org/dist/CPAN-Meta-YAML")
8978 (synopsis "Read and write a subset of YAML for CPAN Meta files")
8979 (description "This module implements a subset of the YAML specification
8980for use in reading and writing CPAN metadata files like META.yml and
8981MYMETA.yml.")
8982 (license (package-license perl))))
90fb2e24 8983
625d0661
EB
8984(define-public perl-module-build
8985 (package
8986 (name "perl-module-build")
d68dacd9 8987 (version "0.4220")
625d0661
EB
8988 (source
8989 (origin
8990 (method url-fetch)
8991 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
8992 "Module-Build-" version ".tar.gz"))
8993 (sha256
8994 (base32
d68dacd9 8995 "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
625d0661
EB
8996 (build-system perl-build-system)
8997 (propagated-inputs
8998 `(("perl-cpan-meta" ,perl-cpan-meta)))
8999 (home-page "http://search.cpan.org/dist/Module-Build")
9000 (synopsis "Build and install Perl modules")
bb8afbf5
LC
9001 (description "@code{Module::Build} is a system for building, testing, and
9002installing Perl modules; it used to be part of Perl itself until version 5.22,
9003which dropped it. It is meant to be an alternative to
9004@code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
625d0661 9005through subclassing in a much more straightforward way than with
bb8afbf5
LC
9006@code{MakeMaker}. It also does not require a @command{make} on your
9007system---most of the @code{Module::Build} code is pure-Perl.")
625d0661
EB
9008 (license (package-license perl))))
9009
70e83462
EB
9010(define-public perl-parse-cpan-meta
9011 (package
9012 (name "perl-parse-cpan-meta")
78bf9e01 9013 (version "2.150010")
70e83462
EB
9014 (source
9015 (origin
9016 (method url-fetch)
78bf9e01 9017 ;; This module is now known as CPAN::Meta on CPAN.
70e83462 9018 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
78bf9e01 9019 "CPAN-Meta-" version ".tar.gz"))
70e83462
EB
9020 (sha256
9021 (base32
78bf9e01 9022 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
70e83462
EB
9023 (build-system perl-build-system)
9024 (propagated-inputs
9025 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
9026 (home-page "http://search.cpan.org/dist/Parse-CPAN-Meta")
9027 (synopsis "Parse META.yml and META.json CPAN metadata files")
9028 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
9029files, using JSON::PP and/or CPAN::Meta::YAML.")
9030 (license (package-license perl))))
9031
c8d68ff9
EB
9032(define-public perl-scalar-list-utils
9033 (package
9034 (name "perl-scalar-list-utils")
7398d96e 9035 (version "1.47")
c8d68ff9
EB
9036 (source
9037 (origin
9038 (method url-fetch)
9039 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
9040 "Scalar-List-Utils-" version ".tar.gz"))
9041 (sha256
9042 (base32
7398d96e 9043 "1qgg6zxqwziva5j1k5gjks4xmhmgklm551ni3zb74sd9f9rk90y4"))))
c8d68ff9
EB
9044 (build-system perl-build-system)
9045 (home-page "http://search.cpan.org/dist/Scalar-List-Utils")
9046 (synopsis "Common Scalar and List utility subroutines")
9047 (description "This package contains a selection of subroutines that people
9048have expressed would be nice to have in the perl core, but the usage would not
9049really be high enough to warrant the use of a keyword, and the size so small
9050such that being individual extensions would be wasteful.")
9051 (license (package-license perl))))
9052
1c7f1fb1
CB
9053(define-public perl-shell-command
9054 (package
9055 (name "perl-shell-command")
9056 (version "0.06")
9057 (source
9058 (origin
9059 (method url-fetch)
9060 (uri (string-append
9061 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
9062 version
9063 ".tar.gz"))
9064 (sha256
9065 (base32
9066 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
9067 (build-system perl-build-system)
9068 (home-page
9069 "http://search.cpan.org/dist/Shell-Command")
9070 (synopsis
9071 "Cross-platform functions emulating common shell commands")
9072 (description
9073 "Shell::Command is a thin wrapper around ExtUtils::Command.")
9074 (license (package-license perl))))
9075
90fb2e24 9076;;; END: Core module overrides
4ec4aa4f
LF
9077
9078(define-public perl-file-find-object
9079 (package
9080 (name "perl-file-find-object")
9081 (version "v0.2.13")
9082 (source
9083 (origin
9084 (method url-fetch)
9085 (uri (string-append
9086 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
9087 version
9088 ".tar.gz"))
9089 (sha256
9090 (base32
9091 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
9092 (build-system perl-build-system)
9093 (native-inputs
9094 `(("perl-module-build" ,perl-module-build)))
9095 (inputs
9096 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
9097 (home-page
9098 "http://search.cpan.org/dist/File-Find-Object")
9099 (synopsis
9100 "Object-oriented File::Find replacement in Perl")
9101 (description "File::Find::Object is an object-oriented
9102File::Find replacement in Perl.")
9103 (license artistic2.0)))
831fee87
DM
9104
9105(define-public perl-file-find-object-rule
9106 (package
9107 (name "perl-file-find-object-rule")
9108 (version "0.0305")
9109 (source
9110 (origin
9111 (method url-fetch)
9112 (uri (string-append
9113 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
9114 version
9115 ".tar.gz"))
9116 (sha256
9117 (base32
9118 "0hs4n3w99q4ylkhg3qhzcwkxqn7zblfj1zjdgl06ca30afkk4cv6"))))
9119 (build-system perl-build-system)
9120 (native-inputs
9121 `(("perl-module-build" ,perl-module-build)))
9122 (inputs
9123 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
9124 ("perl-file-find-object" ,perl-file-find-object)
9125 ("perl-number-compare" ,perl-number-compare)
9126 ("perl-text-glob" ,perl-text-glob)))
9127 (home-page
9128 "http://search.cpan.org/dist/File-Find-Object-Rule")
9129 (synopsis
9130 "Alternative interface to File::Find::Object")
9131 (description "File::Find::Object::Rule is an alternative Perl
9132interface to File::Find::Object.")
9133 (license (package-license perl))))
7ad2bd50
DM
9134
9135(define-public perl-test-trailingspace
9136 (package
9137 (name "perl-test-trailingspace")
9138 (version "0.0300")
9139 (source
9140 (origin
9141 (method url-fetch)
9142 (uri (string-append
9143 "mirror://cpan/authors/id/S/SH/SHLOMIF/Test-TrailingSpace-"
9144 version
9145 ".tar.gz"))
9146 (sha256
9147 (base32
9148 "01slmrcjfq38mpdg3hlb7lnnbgsqbn26958y3hzx0zwrif40pigr"))))
9149 (build-system perl-build-system)
9150 (native-inputs
9151 `(("perl-module-build" ,perl-module-build)
9152 ("perl-file-find-object" ,perl-file-find-object)
9153 ("perl-class-xsaccessor" ,perl-class-xsaccessor)))
9154 (inputs
9155 `(("perl-file-find-object-rule" ,perl-file-find-object-rule)
9156 ("perl-text-glob" ,perl-text-glob)
9157 ("perl-number-compare" ,perl-number-compare)))
9158 (home-page
9159 "http://search.cpan.org/dist/Test-TrailingSpace")
9160 (synopsis
9161 "Test for trailing space in Perl source files")
9162 (description "Test::TrailingSpace tests for trailing spaces
9163in Perl source files.")
9164 (license x11)))