09d6798177dbc797516dfdacaf7977130d514505
[jackhill/guix/guix.git] / gnu / packages / perl.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
5 ;;; Copyright © 2015, 2016 Eric Bavier <bavier@member.fsf.org>
6 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
7 ;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
8 ;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
9 ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Coypright © 2016 ng0 <ng0@libertad.pw>
11 ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
12 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
13 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
14 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
15 ;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
16 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
18 ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
19 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
20 ;;;
21 ;;; This file is part of GNU Guix.
22 ;;;
23 ;;; GNU Guix is free software; you can redistribute it and/or modify it
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 ;;;
28 ;;; GNU Guix is distributed in the hope that it will be useful, but
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
34 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
35
36 (define-module (gnu packages perl)
37 #:use-module (guix licenses)
38 #:use-module (gnu packages)
39 #:use-module (guix packages)
40 #:use-module (guix download)
41 #:use-module (guix build-system gnu)
42 #:use-module (guix build-system perl)
43 #:use-module (gnu packages perl-web)
44 #:use-module (gnu packages pkg-config))
45
46 ;;;
47 ;;; Please: Try to add new module packages in alphabetic order.
48 ;;;
49
50 \f
51 (define-public perl
52 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
53 (package
54 (name "perl")
55 (version "5.26.0")
56 (source (origin
57 (method url-fetch)
58 (uri (string-append "mirror://cpan/src/5.0/perl-"
59 version ".tar.gz"))
60 (sha256
61 (base32
62 "0zxn9hd7mqgq06ikyi6k70ngbvjf01z1paw0jd25byyl0rlwdrzb"))
63 (patches (search-patches
64 "perl-file-path-CVE-2017-6512.patch"
65 "perl-no-sys-dirs.patch"
66 "perl-autosplit-default-time.patch"
67 "perl-deterministic-ordering.patch"
68 "perl-reproducible-build-date.patch"))))
69 (build-system gnu-build-system)
70 (arguments
71 '(#:tests? #f
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")
84 (string-append "-Dloclibpth=" libc "/lib")
85 "-Dusethreads"))
86 #:phases
87 (modify-phases %standard-phases
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))
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))))
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))
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))))))
142 (native-search-paths (list (search-path-specification
143 (variable "PERL5LIB")
144 (files '("lib/perl5/site_perl")))))
145 (synopsis "Implementation of the Perl programming language")
146 (description
147 "Perl 5 is a highly capable, feature-rich programming language with over
148 24 years of development.")
149 (home-page "http://www.perl.org/")
150 (license gpl1+))) ; or "Artistic"
151
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
168 provide a sane method resolution order under multiple inheritance.")
169 (license (package-license perl))))
170
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
187 files, two strings, or any other two lists of things. It uses an intelligent
188 algorithm similar to (or identical to) the one used by the Unix \"diff\"
189 program. It is guaranteed to find the *smallest possible* set of
190 differences.")
191 (license (package-license perl))))
192
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)
206 (native-inputs `(("perl-module-build" ,perl-module-build)))
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
210 into your namespace a subroutine that returns the class name. You can
211 explicitly alias the class to another name or, if you prefer, you can do so
212 implicitly.")
213 (license (package-license perl))))
214
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
234 without changing the code. By default, Mouse will be provided to libraries,
235 unless Moose is already loaded, or explicitly requested by the end-user. End
236 users can force the decision of which backend to use by setting the environment
237 variable ANY_MOOSE to be Moose or Mouse.")
238 (license (package-license perl))))
239
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
258 configuration files and parsing command line arguments.")
259 (license (package-license perl))))
260
261 (define-public perl-archive-zip
262 (package
263 (name "perl-archive-zip")
264 (version "1.30")
265 (source
266 (origin
267 (method url-fetch)
268 (uri (string-append
269 "mirror://cpan/authors/id/A/AD/ADAMK/Archive-Zip-"
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,
277 manipulate, 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))))
280
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
299 list manipulation routines.")
300 (license (package-license perl))))
301
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
320 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
321 signals\", which are very similar).
322
323 Sometimes, modules wish to run code asynchronously (in another thread,
324 or from a signal handler), and then signal the perl interpreter on
325 certain events. One common way is to write some data to a pipe and use
326 an event handling toolkit to watch for I/O events. Another way is to
327 send a signal. Those methods are slow, and in the case of a pipe, also
328 not asynchronous - it won't interrupt a running perl interpreter.
329
330 This module implements asynchronous notifications that enable you to
331 signal running perl code from another thread, asynchronously, and
332 sometimes even without using a single syscall.")
333 (license (package-license perl))))
334
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
351 upgraded to an array or hash reference (depending of the type of the
352 dereferencing). This behaviour is called autovivification and usually does
353 what you mean but it may be unnatural or surprising because your variables get
354 populated behind your back. This is especially true when several levels of
355 dereferencing are involved, in which case all levels are vivified up to the
356 last, or when it happens in intuitively read-only constructs like
357 @code{exists}. The pragma provided by this package lets you disable
358 autovivification for some constructs and optionally throws a warning or an
359 error when it would have happened.")
360 (license (package-license perl))))
361
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
378 up inheritance from those modules at the same time. Unless you are using the
379 fields pragma, consider this module discouraged in favor of the lighter-weight
380 parent.")
381 (license (package-license perl)))) ;See README
382
383 (define-public perl-b-hooks-endofscope
384 (package
385 (name "perl-b-hooks-endofscope")
386 (version "0.21")
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
394 "0b70vbpabsy9ia366k330cz1zbdyb1pwhb0l7j28pmpih045iwwh"))))
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
404 compiling the surrounding scope.")
405 (license (package-license perl))))
406
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)
419 (native-inputs
420 `(("perl-module-install" ,perl-module-install)))
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
426 conveniently, as well as benchmark code by allowing timings of repeated
427 trials. It is perfect for when you need more precise information about the
428 running time of portions of your code than the Benchmark module will give you,
429 but 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)))
433
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
452 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
453 matrices, all of arbitrary sizes. The package also includes an
454 object-oriented Perl module for accessing the C library from Perl, and
455 optionally features overloaded operators for maximum ease of use. The C
456 library can nevertheless be used stand-alone, without Perl.")
457 (license (list (package-license perl) lgpl2.0+))))
458
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
475 special objects: true and false.")
476 (license (package-license perl))))
477
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}.
494 These data are generated from the RangeMessage.xml file provided by the ISBN
495 Agency.")
496 (license (package-license perl))))
497
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
517 Standard Book Numbers, including ISBN-10 and ISBN-13.")
518 (license artistic2.0)))
519
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
536 Standard Serial Numbers.")
537 (license (package-license perl))))
538
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
557 Standard Music Numbers.")
558 (license (package-license perl))))
559
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
579 persisting data for a specified period of time. Often these modules are used
580 in web applications to store data locally to save repeated and redundant
581 expensive calls to remote machines or databases. People have also been known
582 to use Cache::Cache for its straightforward interface in sharing data between
583 runs of an application or invocations of a CGI-style script or simply as an
584 easy to use abstraction of the file system or shared memory.")
585 (license (package-license perl))))
586
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
603 written in C for performance. It uses fcntl locking to ensure multiple
604 processes can safely access the cache at the same time. It uses a basic LRU
605 algorithm to keep the most used entries in the cache.")
606 (license (package-license perl))))
607
608 (define-public perl-capture-tiny
609 (package
610 (name "perl-capture-tiny")
611 (version "0.46")
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
620 "05bhlx6d4nzamhkkh0pkckg7wlvaq6mazf7q1fbb5wpp1j1nlyjx"))))
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
626 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
627 code or from an external program. Optionally, output can be teed so that it
628 is captured while being passed through to the original file handles.")
629 (license asl2.0)))
630
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
647 to test the installed perl for compatibility with his modules.")
648 (license (package-license perl))))
649
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
666 library assert.h.")
667 (license (package-license perl))))
668
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
689 Perl.")
690 (license artistic2.0)))
691
692 (define-public perl-carp-clan
693 (package
694 (name "perl-carp-clan")
695 (version "6.06")
696 (source
697 (origin
698 (method url-fetch)
699 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
700 "Carp-Clan-" version ".tar.gz"))
701 (sha256
702 (base32
703 "1m6902n6s627nsvyn2vyrk29q7lh6808hsdk7ka5cirm27vchjpa"))))
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
710 to appear to originate from the caller of the clan. This is necessary in
711 cases where the clan modules are not classes derived from each other, and thus
712 the Carp.pm module doesn't help.")
713 (license (package-license perl))))
714
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
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
754 your class.")
755 (license (package-license perl))))
756
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)
770 (native-inputs
771 `(("perl-module-build" ,perl-module-build)))
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
777 when called with parameters (to set), and the value of the field when called
778 with no arguments. This module subclasses Class::Accessor in order to provide
779 the same mk_accessors interface.")
780 (license (package-license perl))))
781
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
796 `(("perl-module-install" ,perl-module-install)
797 ("perl-test-exception" ,perl-test-exception)))
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
805 different getters and setters.")
806 (license (package-license perl))))
807
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
826 order from depth-first left-to-right (a.k.a - pre-order) to the more
827 sophisticated C3 method resolution order.")
828 (license (package-license perl))))
829
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,
851 supporting the same interface, but using Class::C3 to do the hard work.")
852 (license (package-license perl))))
853
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
868 `(("perl-module-install" ,perl-module-install)
869 ("perl-test-exception" ,perl-test-exception)))
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
877 the Class::C3 method resolution order.")
878 (license (package-license perl))))
879
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
896 to class data. That is, if you want to store something about your class as a
897 whole (instead of about a single object). This data is then inherited by your
898 subclasses and can be overridden.")
899 (license (package-license perl))))
900
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
918 type for perl.")
919 (license (package-license perl))))
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
937 enough to be used as the base class for a variety of OO classes. Subclasses inherit
938 its two error-handling methods, error and errstr, to communicate error messages back
939 to the calling program.")
940 (license (package-license perl))))
941
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)
955 (native-inputs `(("perl-module-build" ,perl-module-build)))
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
961 (define-public perl-class-inspector
962 (package
963 (name "perl-class-inspector")
964 (version "1.31")
965 (source
966 (origin
967 (method url-fetch)
968 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
969 "Class-Inspector-" version ".tar.gz"))
970 (sha256
971 (base32
972 "1sqfjgzxx1f951fykc6vgfvys4j8rxaw2zf3jq26yrvs3ygn8pq6"))))
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
977 loaded class.")
978 (license (package-license perl))))
979
980 (define-public perl-class-load
981 (package
982 (name "perl-class-load")
983 (version "0.23")
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
991 "13xjfh4fadq4pkq7fcj42b26544jl7gqdg2y3imnra9fwxwsbg7j"))))
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
1006 names, not Class::Name. For that, this module provides \"load_class
1007 'Class::Name'\".")
1008 (license (package-license perl))))
1009
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
1030 Class::Load.")
1031 (license artistic2.0)))
1032
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
1050 write accessor methods for your objects that perform standard tasks.")
1051 (license (package-license perl))))
1052
1053 (define-public perl-class-method-modifiers
1054 (package
1055 (name "perl-class-method-modifiers")
1056 (version "2.12")
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
1064 "1j3swa212wh14dq5r6zjarm2lzpx6mrdfplpjy65px8b09ri0k74"))))
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")
1071 (description "Class::Method::Modifiers provides three modifiers: 'before',
1072 'around', and 'after'. 'before' and 'after' are run just before and after the
1073 method they modify, but can not really affect that original method. 'around'
1074 is run in place of the original method, with a hook to easily call that
1075 original method.")
1076 (license (package-license perl))))
1077
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
1094 classes can be derived. By itself, the Class::Singleton module does very
1095 little other than manage the instantiation of a single object.")
1096 (license (package-license perl))))
1097
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
1114 uses no non-core modules for any recent Perl.")
1115 (license asl2.0)))
1116
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
1135 symbol table and removing it from %INC.")
1136 (license (package-license perl))))
1137
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
1154 read/write accessors in XS. Additionally, it can provide predicates such as
1155 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1156 object. It only works with objects that are implemented as ordinary hashes.
1157 Class::XSAccessor::Array implements the same interface for objects that use
1158 arrays for their internal representation.")
1159 (license (package-license perl))))
1160
1161 (define-public perl-clone
1162 (package
1163 (name "perl-clone")
1164 (version "0.38")
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
1171 "1s5xrv9zlckqqzyhxi0l9lwj9m6na2bz5hqxrkva2v7gnx5m7c4z"))))
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
1176 nested hash, array, scalar and reference types, including tied variables and
1177 objects.")
1178 (home-page (string-append "http://search.cpan.org/~garu/"
1179 "Clone-" version))
1180 (license (package-license perl))))
1181
1182 (define-public perl-common-sense
1183 (package
1184 (name "perl-common-sense")
1185 (version "3.74")
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
1193 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
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,
1198 as defined by two typical specimens of Perl coders.")
1199 (license (package-license perl))))
1200
1201 (define-public perl-config-any
1202 (package
1203 (name "perl-config-any")
1204 (version "0.32")
1205 (source
1206 (origin
1207 (method url-fetch)
1208 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1209 "Config-Any-" version ".tar.gz"))
1210 (sha256
1211 (base32
1212 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1213 (build-system perl-build-system)
1214 (propagated-inputs
1215 `(("perl-module-pluggable" ,perl-module-pluggable)))
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
1219 libraries to load configuration data from multiple different file formats. It
1220 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1221 (license (package-license perl))))
1222
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
1241 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1242 (license (package-license perl))))
1243
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
1260 you. The format of config files supported by Config::General is inspired by
1261 the well known Apache config format and is 100% compatible with Apache
1262 configs, but you can also just use simple name/value pairs in your config
1263 files. In addition to the capabilities of an Apache config file it supports
1264 some enhancements such as here-documents, C-style comments, and multiline
1265 options.")
1266 (license (package-license perl))))
1267
1268 (define-public perl-config-ini
1269 (package
1270 (name "perl-config-ini")
1271 (version "0.025")
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"))))
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)))
1285 (home-page "http://search.cpan.org/dist/Config-INI")
1286 (synopsis "Simple .ini-file format reader and writer")
1287 (description "@code{Config::INI} is a module that facilates the reading
1288 and writing of @code{.ini}-style configuration files.")
1289 (license (package-license perl))))
1290
1291 (define-public perl-context-preserve
1292 (package
1293 (name "perl-context-preserve")
1294 (version "0.02")
1295 (source
1296 (origin
1297 (method url-fetch)
1298 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1299 "Context-Preserve-" version ".tar.gz"))
1300 (sha256
1301 (base32
1302 "0qkjj1qifr87zlfpfnn21gdyrpfgilh8zp3b53008m2ax02k87gc"))))
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
1310 the context the subroutine would have seen if it were the last statement in
1311 the caller.")
1312 (license (package-license perl))))
1313
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
1337 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1338 provides a means of converting those data streams back into into binary
1339 data.")
1340 (license perl-license)))
1341
1342 (define-public perl-cpan-meta-check
1343 (package
1344 (name "perl-cpan-meta-check")
1345 (version "0.014")
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
1353 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
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
1360 CPAN::Meta object are present.")
1361 (license (package-license perl))))
1362
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
1381 versa.")
1382 (license (package-license perl))))
1383
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
1400 to generate random passwords, constructed from words, letters, or characters.
1401 This code is a Perl implementation of the Automated Password Generator
1402 standard, like the program described in \"A Random Word Generator For
1403 Pronounceable Passwords\". This code is a re-engineering of the program
1404 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1405 Password Generator\".")
1406 (license (package-license perl))))
1407
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
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.
1447 It returns to the previous working directory when the object is destroyed.")
1448 (license (package-license perl))))
1449
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)))))
1483 (home-page "https://sourceforge.net/projects/czplib/")
1484 (synopsis "Library for genomic analysis")
1485 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1486 functions and data structures for processing and analysing genomic and
1487 bioinformatics data.")
1488 (license gpl3+)))
1489
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
1508 they are copies of each other.")
1509 (license (package-license perl))))
1510
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
1527 generating unique ids. These ids are coded with a Base62 systen to make them
1528 short and handy (e.g. to use it as part of a URL).")
1529 (license (package-license perl))))
1530
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
1547 their argument and produces a string as its result. The string contains Perl
1548 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1549 (license (package-license perl))))
1550
1551 (define-public perl-data-dumper-concise
1552 (package
1553 (name "perl-data-dumper-concise")
1554 (version "2.023")
1555 (source
1556 (origin
1557 (method url-fetch)
1558 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1559 "Data-Dumper-Concise-" version ".tar.gz"))
1560 (sha256
1561 (base32
1562 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
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
1567 indentation and newlines plus sub deparsing.")
1568 (license (package-license perl))))
1569
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
1585 `(("perl-sub-install" ,perl-sub-install)
1586 ("perl-params-util" ,perl-params-util)))
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
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
1607 `(("perl-module-build" ,perl-module-build)
1608 ("perl-test-exception" ,perl-test-exception)))
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
1614 the case that a result set is returned that is larger than we want to display
1615 on one page. This results in wanting to page through various pages of data.
1616 The maths behind this is unfortunately fiddly, hence this module.")
1617 (license (package-license perl))))
1618
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
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
1681 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
1682 be represented as nested arrays, which have the advantage of being native to
1683 Perl.")
1684 (license (package-license perl))))
1685
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
1709 time and all at once processing of data sets. The purpose of this module is
1710 to avoid the overhead of implementing an iterative api when this isn't
1711 necessary, without breaking forward compatibility in case that becomes
1712 necessary later on.")
1713 (license (package-license perl))))
1714
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
1735 variants.")
1736 (license (package-license perl))))
1737
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
1762 values. It has a main dispatcher method, visit, which takes a single perl
1763 value and then calls the methods appropriate for that value. It can
1764 recursively map (cloning as necessary) or just traverse most structures, with
1765 support for per-object behavior, circular structures, visiting tied
1766 structures, and all ref types (hashes, arrays, scalars, code, globs).")
1767 (license (package-license perl))))
1768
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
1788 based on the Gregorian calendar, thereby complying with all relevant norms and
1789 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
1790 applicable).")
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
1813 Date::Calc.")
1814 (license (list (package-license perl) lgpl2.0+))))
1815
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)
1829 (native-inputs `(("perl-module-build" ,perl-module-build)))
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
1838 operations, such as comparing two times, determining a date a given amount of
1839 time from another, or parsing international times.")
1840 (license (package-license perl))))
1841
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
1858 module may be used to create simple date objects. It handles validation,
1859 interval arithmetic, and day-of-week calculation. It does not deal with
1860 hours, minutes, seconds, and time zones.")
1861 ;; Can be used with either license.
1862 (license (list (package-license perl) gpl2+))))
1863
1864 (define-public perl-datetime
1865 (package
1866 (name "perl-datetime")
1867 (version "1.43")
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
1875 "0xgrcqs7zza7646g81j54z3fcxb8rw11ynlfm02afr436lgfnfql"))))
1876 (build-system perl-build-system)
1877 (native-inputs
1878 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
1879 ("perl-module-build" ,perl-module-build)
1880 ("perl-test-fatal" ,perl-test-fatal)
1881 ("perl-test-warnings" ,perl-test-warnings)))
1882 (propagated-inputs
1883 `(("perl-datetime-locale" ,perl-datetime-locale)
1884 ("perl-datetime-timezone" ,perl-datetime-timezone)
1885 ("perl-file-sharedir" ,perl-file-sharedir)
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
1891 combinations. It represents the Gregorian calendar, extended backwards in
1892 time before its creation (in 1582).")
1893 (license artistic2.0)))
1894
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}.
1914 It implements the Julian calendar. It supports everything that
1915 @code{DateTime.pm} supports and more: about one day per century more, to be
1916 precise.")
1917 (license (package-license perl))))
1918
1919 (define-public perl-datetime-set
1920 (package
1921 (name "perl-datetime-set")
1922 (version "0.3900")
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
1930 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
1931 (build-system perl-build-system)
1932 (native-inputs
1933 `(("perl-module-build" ,perl-module-build)))
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
1941 implementation. It allows, for example, the generation of groups of dates,
1942 like \"every wednesday\", and then find all the dates matching that pattern,
1943 within a time range.")
1944 (license (package-license perl))))
1945
1946 (define-public perl-datetime-event-ical
1947 (package
1948 (name "perl-datetime-event-ical")
1949 (version "0.13")
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
1957 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
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
1965 create DateTime::Set objects for RFC 2445 style recurrences.")
1966 (license (package-license perl))))
1967
1968 (define-public perl-datetime-event-recurrence
1969 (package
1970 (name "perl-datetime-event-recurrence")
1971 (version "0.19")
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
1979 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
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
1987 create DateTime::Set objects for various recurrences, such as \"once a month\"
1988 or \"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
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")
2011 (synopsis "Create DateTime parser classes and objects")
2012 (description "DateTime::Format::Builder creates DateTime parsers. Many
2013 string formats of dates and times are simple and just require a basic regular
2014 expression to extract the relevant information. Builder provides a simple way
2015 to do this without writing reams of structural code.")
2016 (license artistic2.0)))
2017
2018 (define-public perl-datetime-format-flexible
2019 (package
2020 (name "perl-datetime-format-flexible")
2021 (version "0.28")
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
2029 "1g63zs0q2x40h29r7in50c55g6kxiw3m2faw2p6c4rg74sj2k2b5"))))
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)
2036 ("perl-module-pluggable" ,perl-module-pluggable)
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
2041 give it and parse it into a DateTime object.")
2042 (license (package-license perl))))
2043
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)
2057 (native-inputs
2058 `(("perl-module-build" ,perl-module-build)))
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
2068 formats, as defined in RFC 2445. It can be used to parse these formats in
2069 order to create the appropriate objects.")
2070 (license (package-license perl))))
2071
2072 (define-public perl-datetime-format-natural
2073 (package
2074 (name "perl-datetime-format-natural")
2075 (version "1.05")
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
2083 "10ldrhz5rnpsd8qmqn1a4s0w5hhfbjrr13a93yx7kpp89g85pxqv"))))
2084 (build-system perl-build-system)
2085 (native-inputs
2086 `(("perl-module-build" ,perl-module-build)
2087 ("perl-module-util" ,perl-module-util)
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
2101 readable date/time and creates a machine readable one by applying natural
2102 parsing logic.")
2103 (license (package-license perl))))
2104
2105 (define-public perl-datetime-format-strptime
2106 (package
2107 (name "perl-datetime-format-strptime")
2108 (version "1.73")
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
2116 "1gmjcmvh81cla6yn2pvlkr7i25bspg90pzzsizrfb0c5xc37h1vd"))))
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)
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)))
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
2129 function that is the reverse of `strftime(3)`, for `DateTime`. While
2130 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
2131 takes a string and a pattern and returns the `DateTime` object associated.")
2132 (license artistic2.0)))
2133
2134 (define-public perl-datetime-locale
2135 (package
2136 (name "perl-datetime-locale")
2137 (version "1.16")
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
2145 "1zkc0wggbsczbj4qadahh197imr9fa6knxr10zl241lw2i14rbyz"))))
2146 (build-system perl-build-system)
2147 (native-inputs
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)))
2156 (propagated-inputs
2157 `(("perl-list-moreutils" ,perl-list-moreutils)
2158 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
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
2162 the DateTime.pm class.")
2163 (license (package-license perl))))
2164
2165 (define-public perl-datetime-timezone
2166 (package
2167 (name "perl-datetime-timezone")
2168 (version "2.13")
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
2176 "1371sk4p9clygfwxzvivfqz6q9dy8gn3n4dr1424d0xqsv63jg9k"))))
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)
2185 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2186 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
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
2191 time zone is represented internally as a set of observances, each of which
2192 describes the offset from GMT for a given time period. Note that without the
2193 DateTime module, this module does not do much. It's primary interface is
2194 through a DateTime object, and most users will not need to directly use
2195 DateTime::TimeZone methods.")
2196 (license (package-license perl))))
2197
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
2222 to create DateTime objects, with some custom tweaks to smooth out the rough
2223 edges (mainly concerning timezone detection and selection).")
2224 (license (package-license perl))))
2225
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.
2244 This module parses and emits such dates.")
2245 (license (package-license perl))))
2246
2247 (define-public perl-datetime-format-w3cdtf
2248 (package
2249 (name "perl-datetime-format-w3cdtf")
2250 (version "0.07")
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
2257 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
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,
2268 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
2269 format of RSS 1.0. It can be used to parse these formats in order to create
2270 the appropriate objects.")
2271 (license (package-license perl))))
2272
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))))
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)
2306 (native-inputs `(("perl-module-build" ,perl-module-build)))
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
2310 particular command is available.")
2311 (license (package-license perl))))
2312
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
2330 whether a compiler is available. It can test for a C99 compiler, or
2331 you can tell it to compile a C source file with optional linker flags.")
2332 (license (package-license perl))))
2333
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
2354 objects and other types of references. Because of Perl's reference-count
2355 based memory management, circular references will cause memory leaks.")
2356 (license perl-license)))
2357
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
2376 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
2377 (license (package-license perl))))
2378
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
2397 variable in a subroutines scope to one of your choosing.")
2398 (license (package-license perl))))
2399
2400 (define-public perl-devel-overloadinfo
2401 (package
2402 (name "perl-devel-overloadinfo")
2403 (version "0.004")
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
2411 "0zckjhzdqa6smpp98y15mqafsyzwjxwrvk10snzhn2sb0r889s43"))))
2412 (build-system perl-build-system)
2413 (native-inputs
2414 `(("perl-test-fatal" ,perl-test-fatal)))
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
2422 operators for a given class (or object), including where in the inheritance
2423 hierarchy the overloads are declared and where the code implementing it is.")
2424 (license (package-license perl))))
2425
2426 (define-public perl-devel-partialdump
2427 (package
2428 (name "perl-devel-partialdump")
2429 (version "0.18")
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
2437 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
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
2450 arbitrary parameters.")
2451 (license (package-license perl))))
2452
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,
2469 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
2470 information that can be retrieved via Perl's caller() function, as well as
2471 providing a simple interface to this data.")
2472 (license artistic2.0)))
2473
2474 (define-public perl-devel-stacktrace-ashtml
2475 (package
2476 (name "perl-devel-stacktrace-ashtml")
2477 (version "0.15")
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
2485 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
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
2492 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
2493 snippet context and function parameters. If you call it on an instance of
2494 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
2495 each stack frame.")
2496 (license (package-license perl))))
2497
2498 (define-public perl-devel-symdump
2499 (package
2500 (name "perl-devel-symdump")
2501 (version "2.18")
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
2509 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
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
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::
2532 interface for the RFC 2104 HMAC mechanism.")
2533 (license (package-license perl))))
2534
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.
2554 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755))))))
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
2559 algorithm from within Perl programs. The algorithm takes as
2560 input a message of arbitrary length and produces as output a
2561 128-bit \"fingerprint\" or \"message digest\" of the input.")
2562 (license (package-license perl))))
2563
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
2579 SHA-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
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
2602 modules separately and deal with them after the module is done installing.")
2603 (license (package-license perl))))
2604
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
2623 the encoding of data.")
2624 (license mpl1.1)))
2625
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
2642 encoding.")
2643 (license (package-license perl))))
2644
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
2661 also known as JIS 2000.")
2662 (license (package-license perl))))
2663
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)
2677 (arguments
2678 '(#:phases
2679 (modify-phases %standard-phases
2680 (add-after 'unpack 'set-env
2681 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1"))))))
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
2685 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
2686 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
2687 \"UNISYS\".")
2688 (license expat)))
2689
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
2708 path variables, defined as that subclass of environment variables which name
2709 an ordered list of file system elements separated by a platform-standard
2710 separator.")
2711 (license (package-license perl))))
2712
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)
2725 (native-inputs `(("perl-module-build" ,perl-module-build)))
2726 (home-page "http://search.cpan.org/dist/Error")
2727 (synopsis "OO-ish Error/Exception handling for Perl")
2728 (description "The Error package provides two interfaces. Firstly Error
2729 provides a procedural interface to exception handling. Secondly Error is a
2730 base class for errors/exceptions that can either be thrown, for subsequent
2731 catch, or can simply be recorded.")
2732 (license (package-license perl))))
2733
2734 (define-public perl-eval-closure
2735 (package
2736 (name "perl-eval-closure")
2737 (version "0.14")
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
2745 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
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
2755 instance, Moose uses it heavily, to generate inlined versions of accessors and
2756 constructors, which speeds code up at runtime by a significant amount. String
2757 eval is not without its issues however - it's difficult to control the scope
2758 it's used in (which determines which variables are in scope inside the eval),
2759 and it's easy to miss compilation errors, since eval catches them and sticks
2760 them in $@@ instead. This module attempts to solve these problems. It
2761 provides an eval_closure function, which evals a string in a clean
2762 environment, other than a fixed list of specified variables. Compilation
2763 errors are rethrown automatically.")
2764 (license (package-license perl))))
2765
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
2785 in your modules in a \"Java-esque\" manner.")
2786 (license (package-license perl))))
2787
2788 (define-public perl-exporter-lite
2789 (package
2790 (name "perl-exporter-lite")
2791 (version "0.08")
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
2798 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
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
2803 lightweight subset of the most commonly-used functionality. It supports
2804 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
2805 (home-page "http://search.cpan.org/dist/Exporter-Lite")
2806 (license (package-license perl))))
2807
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
2824 external-facing features including renaming imported functions with the `-as`,
2825 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
2826 and alternative installers with the `installler` option. But it's written in
2827 only about 40% as many lines of code and with zero non-core dependencies.")
2828 (license (package-license perl))))
2829
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
2848 possible.")
2849 (license (package-license perl))))
2850
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.
2867 By itself it is not a particularly interesting module by any measure, however
2868 it ties together a family of modern toolchain modules.")
2869 (license (package-license perl))))
2870
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
2889 functions and typemaps provided by other perl extensions. This means that a
2890 perl extension is treated like a shared library that provides also a C and an
2891 XS interface besides the perl one.")
2892 (license (package-license perl))))
2893
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
2910 module building modules.")
2911 (license (package-license perl))))
2912
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
2931 their Perl code. Although there are mechanisms to compile and link (or glue)
2932 C code in your Perl programs, there isn't a clear method to compile standard,
2933 self-contained C libraries. This module main goal is to help in that task.")
2934 (license (package-license perl))))
2935
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}
2955 of perl extensions which bind libraries that @command{pkg-config} knows.
2956 It is really just boilerplate code that you would have written yourself.")
2957 (license lgpl2.1+)))
2958
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
2973 `(("perl-module-build" ,perl-module-build)
2974 ("perl-test-exception" ,perl-test-exception)))
2975 (propagated-inputs
2976 `(("perl-class-load" ,perl-class-load)
2977 ("perl-list-moreutils" ,perl-list-moreutils)
2978 ("perl-module-pluggable" ,perl-module-pluggable)
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
2987 changes made to any file.")
2988 (license artistic2.0)))
2989
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
3006 copy directories only, and one to do either depending on the argument's
3007 type.")
3008 (license (package-license perl))))
3009
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.
3029 It allows you to build rules which specify the desired files and
3030 directories.")
3031 (license (package-license perl))))
3032
3033 (define-public perl-file-find-rule-perl
3034 (package
3035 (name "perl-file-find-rule-perl")
3036 (version "1.15")
3037 (source
3038 (origin
3039 (method url-fetch)
3040 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3041 "File-Find-Rule-Perl-" version ".tar.gz"))
3042 (sha256
3043 (base32
3044 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
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
3053 types Perl-related files, or replicating search queries run on a distribution
3054 in various parts of the CPAN ecosystem.")
3055 (license (package-license perl))))
3056
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
3075 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
3076 over a passed filelist instead of arrays. While trivial, this module can
3077 provide a quick dropin when such functionality is needed.")
3078 (license (package-license perl))))
3079
3080 (define-public perl-file-homedir
3081 (package
3082 (name "perl-file-homedir")
3083 (version "1.002")
3084 (source
3085 (origin
3086 (method url-fetch)
3087 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3088 "File-HomeDir-" version ".tar.gz"))
3089 (sha256
3090 (base32
3091 "0x62hn8rc7ninf9nlp69h61yh21g4cbq2g81sh64cf2ify2hqk7b"))))
3092 (build-system perl-build-system)
3093 (propagated-inputs
3094 `(("perl-file-which" ,perl-file-which)))
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
3099 are \"owned\" by a user (typically your user) and to solve the various issues
3100 that arise trying to find them consistently across a wide variety of
3101 platforms.")
3102 (license (package-license perl))))
3103
3104 (define-public perl-file-path
3105 (package
3106 (name "perl-file-path")
3107 (version "2.13")
3108 (source
3109 (origin
3110 (method url-fetch)
3111 (uri (string-append
3112 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
3113 version
3114 ".tar.gz"))
3115 (sha256
3116 (base32
3117 "039gc0i5cbdmidl8j8x195yykwcdmzwawmpapnysvljl8l33jqwj"))))
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
3122 of arbitrary depth and to delete an entire directory subtree from the
3123 file system.")
3124 (license (package-license perl))))
3125
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
3146 easily and automatically reverted, similar to @code{pushd} in some Unix
3147 command shells. It works by creating an object that caches the original
3148 working directory. When the object is destroyed, the destructor calls
3149 @code{chdir} to revert to the original working directory. By storing the
3150 object in a lexical variable with a limited scope, this happens automatically
3151 at the end of the scope.")
3152 (license asl2.0)))
3153
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
3169 (alist-cons-after
3170 'unpack 'cd
3171 (lambda* _
3172 (chdir "List"))
3173 %standard-phases)))
3174 (license (package-license perl))
3175 (synopsis "Perl extension for crawling directory trees and compiling
3176 lists of files")
3177 (description
3178 "The File::List module crawls the directory tree starting at the
3179 provided base directory and can return files (and/or directories if desired)
3180 matching a regular expression.")
3181 (home-page "http://search.cpan.org/~dopacki/File-List/")))
3182
3183 (define-public perl-file-remove
3184 (package
3185 (name "perl-file-remove")
3186 (version "1.57")
3187 (source
3188 (origin
3189 (method url-fetch)
3190 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3191 "File-Remove-" version ".tar.gz"))
3192 (sha256
3193 (base32
3194 "1b814lw181kkqh6c1n4p2zlzzsq6ic5pfpr831nphf2w2rhcvgmk"))))
3195 (build-system perl-build-system)
3196 (home-page "http://search.cpan.org/dist/File-Remove")
3197 (synopsis "Remove files and directories in Perl")
3198 (description "File::Remove::remove removes files and directories. It acts
3199 like /bin/rm, for the most part. Although \"unlink\" can be given a list of
3200 files, it will not remove directories; this module remedies that. It also
3201 accepts wildcards, * and ?, as arguments for file names.")
3202 (license (package-license perl))))
3203
3204 (define-public perl-file-sharedir
3205 (package
3206 (name "perl-file-sharedir")
3207 (version "1.104")
3208 (source
3209 (origin
3210 (method url-fetch)
3211 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3212 "File-ShareDir-" version ".tar.gz"))
3213 (sha256
3214 (base32
3215 "1bqwhk3qfg60bkpi5b83bh93sng8jx20i3ka5sixc0prrppjidh7"))))
3216 (build-system perl-build-system)
3217 (native-inputs
3218 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3219 (propagated-inputs
3220 `(("perl-class-inspector" ,perl-class-inspector)))
3221 (home-page "http://search.cpan.org/dist/File-ShareDir")
3222 (synopsis "Locate per-dist and per-module shared files")
3223 (description "The intent of File::ShareDir is to provide a companion to
3224 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3225 module to have access to a large amount of read-only data that is stored on
3226 the file-system at run-time. Once the files have been installed to the
3227 correct directory, you can use File::ShareDir to find your files again after
3228 the installation.")
3229 (license (package-license perl))))
3230
3231 (define-public perl-file-sharedir-dist
3232 (package
3233 (name "perl-file-sharedir-dist")
3234 (version "0.04")
3235 (source
3236 (origin
3237 (method url-fetch)
3238 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3239 "File-ShareDir-Dist-" version ".tar.gz"))
3240 (sha256
3241 (base32
3242 "028vnjw3fdmwk540w3b07cmr93ap0s13ni2b4c7iv56mgyy6gfc1"))))
3243 (build-system perl-build-system)
3244 (home-page "http://search.cpan.org/dist/File-ShareDir-Dist")
3245 (synopsis "Locate per-dist shared files")
3246 (description "File::ShareDir::Dist finds share directories for
3247 distributions. It is a companion module to File::ShareDir.")
3248 (license (package-license perl))))
3249
3250 (define-public perl-file-sharedir-install
3251 (package
3252 (name "perl-file-sharedir-install")
3253 (version "0.11")
3254 (source
3255 (origin
3256 (method url-fetch)
3257 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3258 "File-ShareDir-Install-" version ".tar.gz"))
3259 (sha256
3260 (base32
3261 "1j0cw1aq9fdv9kl1a6fnfa4zihsvmcqzy9sb0xk0i9pyx5r8ggrj"))))
3262 (build-system perl-build-system)
3263 (native-inputs
3264 `(("perl-module-build" ,perl-module-build)))
3265 (home-page "http://search.cpan.org/dist/File-ShareDir-Install")
3266 (synopsis "Install shared files")
3267 (description "File::ShareDir::Install allows you to install read-only data
3268 files from a distribution. It is a companion module to File::ShareDir, which
3269 allows you to locate these files after installation.")
3270 (license (package-license perl))))
3271
3272 (define-public perl-file-slurp
3273 (package
3274 (name "perl-file-slurp")
3275 (version "9999.19")
3276 (source
3277 (origin
3278 (method url-fetch)
3279 (uri (string-append "mirror://cpan/authors/id/U/UR/URI/"
3280 "File-Slurp-" version ".tar.gz"))
3281 (sha256
3282 (base32
3283 "0hrn4nipwx40d6ji8ssgr5nw986z9iqq8cn0kdpbszh9jplynaff"))))
3284 (build-system perl-build-system)
3285 (home-page "http://search.cpan.org/dist/File-Slurp")
3286 (synopsis "Reading/Writing/Modifying of complete files")
3287 (description "File::Slurp provides subroutines to read or write entire
3288 files with a simple call. It also has a subroutine for reading the list of
3289 file names in a directory.")
3290 (license (package-license perl))))
3291
3292 (define-public perl-file-slurper
3293 (package
3294 (name "perl-file-slurper")
3295 (version "0.008")
3296 (source
3297 (origin
3298 (method url-fetch)
3299 (uri (string-append
3300 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3301 version
3302 ".tar.gz"))
3303 (sha256
3304 (base32
3305 "0cyjspspms6zyjcqz9v18dbs574g085h2jzjh41xvsrc1qa8bxhh"))))
3306 (build-system perl-build-system)
3307 (propagated-inputs
3308 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3309 (home-page "http://search.cpan.org/dist/File-Slurper")
3310 (synopsis "Simple, sane and efficient module to slurp a file")
3311 (description "This module provides functions for fast and correct file
3312 slurping and spewing. All functions are optionally exported.")
3313 (license (package-license perl))))
3314
3315 (define-public perl-file-slurp-tiny
3316 (package
3317 (name "perl-file-slurp-tiny")
3318 (version "0.004")
3319 (source (origin
3320 (method url-fetch)
3321 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3322 "File-Slurp-Tiny-" version ".tar.gz"))
3323 (sha256
3324 (base32
3325 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3326 (build-system perl-build-system)
3327 (home-page "http://search.cpan.org/dist/File-Slurp-Tiny")
3328 (synopsis "Simple file reader and writer")
3329 (description
3330 "This module provides functions for fast reading and writing of files.")
3331 (license (package-license perl))))
3332
3333 (define-public perl-file-temp
3334 (package
3335 (name "perl-file-temp")
3336 (version "0.2304")
3337 (source
3338 (origin
3339 (method url-fetch)
3340 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3341 "File-Temp-" version ".tar.gz"))
3342 (sha256
3343 (base32
3344 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
3345 (build-system perl-build-system)
3346 (propagated-inputs
3347 `(("perl-parent" ,perl-parent)))
3348 (home-page "http://search.cpan.org/dist/File-Temp")
3349 (synopsis "Return name and handle of a temporary file safely")
3350 (description "File::Temp can be used to create and open temporary files in
3351 a safe way.")
3352 (license (package-license perl))))
3353
3354 (define-public perl-file-which
3355 (package
3356 (name "perl-file-which")
3357 (version "1.09")
3358 (source (origin
3359 (method url-fetch)
3360 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3361 "File-Which-" version ".tar.gz"))
3362 (sha256
3363 (base32
3364 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
3365 (build-system perl-build-system)
3366 (native-inputs `(("test-script" ,perl-test-script)))
3367 (synopsis "Portable implementation of the `which' utility")
3368 (description
3369 "File::Which was created to be able to get the paths to executable
3370 programs on systems under which the `which' program wasn't implemented in the
3371 shell.")
3372 (home-page (string-append "http://search.cpan.org/~adamk/"
3373 "File-Which-" version))
3374 (license (package-license perl))))
3375
3376 (define-public perl-file-zglob
3377 (package
3378 (name "perl-file-zglob")
3379 (version "0.11")
3380 (source (origin
3381 (method url-fetch)
3382 (uri (string-append
3383 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
3384 version ".tar.gz"))
3385 (sha256
3386 (base32
3387 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
3388 (build-system perl-build-system)
3389 (native-inputs
3390 `(("perl-module-install" ,perl-module-install)))
3391 (home-page "http://search.cpan.org/dist/File-Zglob")
3392 (synopsis "Extended Unix style glob functionality")
3393 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
3394 functionality; it returns a list of file names that match the given pattern.
3395 For instance, it supports the @code{**/*.pm} form.")
3396 (license (package-license perl))))
3397
3398 (define-public perl-getopt-long
3399 (package
3400 (name "perl-getopt-long")
3401 (version "v2.49.1")
3402 (source
3403 (origin
3404 (method url-fetch)
3405 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
3406 "Getopt-Long-" (substring version 1) ".tar.gz"))
3407 (sha256
3408 (base32
3409 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
3410 (build-system perl-build-system)
3411 (home-page "http://search.cpan.org/dist/Getopt-Long")
3412 (synopsis "Module to handle parsing command line options")
3413 (description "The @code{Getopt::Long} module implements an extended getopt
3414 function called @code{GetOptions()}. It parses the command line from
3415 @code{ARGV}, recognizing and removing specified options and their possible
3416 values.
3417
3418 This function adheres to the POSIX syntax for command line options, with GNU
3419 extensions. In general, this means that options have long names instead of
3420 single letters, and are introduced with a double dash \"--\". Support for
3421 bundling of command line options, as was the case with the more traditional
3422 single-letter approach, is provided but not enabled by default.")
3423 ;; Can be used with either license.
3424 (license (list (package-license perl) gpl2+))))
3425
3426 (define-public perl-getopt-long-descriptive
3427 (package
3428 (name "perl-getopt-long-descriptive")
3429 (version "0.098")
3430 (source
3431 (origin
3432 (method url-fetch)
3433 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3434 "Getopt-Long-Descriptive-" version ".tar.gz"))
3435 (sha256
3436 (base32
3437 "08lphvqshcajvvd6z4rvcda6rx5kz8pysrsip4nfv2mbks95p9ma"))))
3438 (build-system perl-build-system)
3439 (native-inputs
3440 `(("perl-test-fatal" ,perl-test-fatal)
3441 ("perl-test-warnings" ,perl-test-warnings)))
3442 (propagated-inputs
3443 `(("perl-params-validate" ,perl-params-validate)
3444 ("perl-sub-exporter" ,perl-sub-exporter)))
3445 (home-page "http://search.cpan.org/dist/Getopt-Long-Descriptive")
3446 (synopsis "Getopt::Long, but simpler and more powerful")
3447 (description "Getopt::Long::Descriptive is yet another Getopt library.
3448 It's built atop Getopt::Long, and gets a lot of its features, but tries to
3449 avoid making you think about its huge array of options. It also provides
3450 usage (help) messages, data validation, and a few other useful features.")
3451 (license (package-license perl))))
3452
3453 (define-public perl-getopt-tabular
3454 (package
3455 (name "perl-getopt-tabular")
3456 (version "0.3")
3457 (source (origin
3458 (method url-fetch)
3459 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
3460 "Getopt-Tabular-" version ".tar.gz"))
3461 (sha256
3462 (base32
3463 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
3464 (build-system perl-build-system)
3465 (synopsis "Table-driven argument parsing for Perl")
3466 (description
3467 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
3468 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
3469 (home-page (string-append "http://search.cpan.org/~gward/"
3470 "Getopt-Tabular-" version))
3471 (license (package-license perl))))
3472
3473 (define-public perl-graph
3474 (package
3475 (name "perl-graph")
3476 (version "0.9704")
3477 (source
3478 (origin
3479 (method url-fetch)
3480 (uri (string-append
3481 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
3482 version
3483 ".tar.gz"))
3484 (sha256
3485 (base32
3486 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
3487 (build-system perl-build-system)
3488 (home-page "http://search.cpan.org/dist/Graph")
3489 (synopsis "Graph data structures and algorithms")
3490 (description "This is @code{Graph}, a Perl module for dealing with graphs,
3491 the abstract data structures.")
3492 (license (package-license perl))))
3493
3494 (define-public perl-guard
3495 (package
3496 (name "perl-guard")
3497 (version "1.023")
3498 (source (origin
3499 (method url-fetch)
3500 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
3501 version ".tar.gz"))
3502 (sha256
3503 (base32
3504 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
3505 (build-system perl-build-system)
3506 (home-page "http://search.cpan.org/dist/Guard")
3507 (synopsis "Safe cleanup blocks implemented as guards")
3508 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
3509 something (usually an object) that \"guards\" a resource, ensuring that it is
3510 cleaned up when expected.
3511
3512 Specifically, this module supports two different types of guards: guard
3513 objects, which execute a given code block when destroyed, and scoped guards,
3514 which are tied to the scope exit.")
3515 (license (package-license perl))))
3516
3517 (define-public perl-hash-fieldhash
3518 (package
3519 (name "perl-hash-fieldhash")
3520 (version "0.15")
3521 (source
3522 (origin
3523 (method url-fetch)
3524 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
3525 "Hash-FieldHash-" version ".tar.gz"))
3526 (sha256
3527 (base32
3528 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
3529 (build-system perl-build-system)
3530 (arguments
3531 `(#:phases
3532 (modify-phases %standard-phases
3533 (add-before 'configure 'set-perl-search-path
3534 (lambda _
3535 ;; Work around "dotless @INC" build failure.
3536 (setenv "PERL5LIB"
3537 (string-append (getcwd) ":"
3538 (getenv "PERL5LIB")))
3539 #t)))))
3540 (native-inputs
3541 `(("perl-module-build" ,perl-module-build)
3542 ("perl-test-leaktrace" ,perl-test-leaktrace)))
3543 (home-page "http://search.cpan.org/dist/Hash-FieldHash")
3544 (synopsis "Lightweight field hash for inside-out objects")
3545 (description "@code{Hash::FieldHash} provides the field hash mechanism
3546 which supports the inside-out technique. It is an alternative to
3547 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
3548 relic support.")
3549 (license (package-license perl))))
3550
3551 (define-public perl-hash-merge
3552 (package
3553 (name "perl-hash-merge")
3554 (version "0.200")
3555 (source
3556 (origin
3557 (method url-fetch)
3558 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3559 "Hash-Merge-" version ".tar.gz"))
3560 (sha256
3561 (base32
3562 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
3563 (build-system perl-build-system)
3564 (home-page "http://search.cpan.org/dist/Hash-Merge")
3565 (synopsis "Merge arbitrarily deep hashes into a single hash")
3566 (description "Hash::Merge merges two arbitrarily deep hashes into a single
3567 hash. That is, at any level, it will add non-conflicting key-value pairs from
3568 one hash to the other, and follows a set of specific rules when there are key
3569 value conflicts. The hash is followed recursively, so that deeply nested
3570 hashes that are at the same level will be merged when the parent hashes are
3571 merged.")
3572 (license (package-license perl))))
3573
3574 (define-public perl-hash-multivalue
3575 (package
3576 (name "perl-hash-multivalue")
3577 (version "0.15")
3578 (source
3579 (origin
3580 (method url-fetch)
3581 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
3582 "Hash-MultiValue-" version ".tar.gz"))
3583 (sha256
3584 (base32
3585 "1jc37kwpa1fl88va8bd1p95h0vjv1gsvmn7pc2pxj62ga6x0wpc0"))))
3586 (build-system perl-build-system)
3587 (home-page "http://search.cpan.org/dist/Hash-MultiValue")
3588 (synopsis "Store multiple values per key")
3589 (description "Hash::MultiValue is an object (and a plain hash reference)
3590 that may contain multiple values per key, inspired by MultiDict of WebOb.")
3591 (license (package-license perl))))
3592
3593 (define-public perl-importer
3594 (package
3595 (name "perl-importer")
3596 (version "0.024")
3597 (source
3598 (origin
3599 (method url-fetch)
3600 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
3601 version ".tar.gz"))
3602 (sha256
3603 (base32
3604 "0mx50xds7iphxykbr9b0w2qki92l3gpagsdchm4ncsrnxc67c68x"))))
3605 (build-system perl-build-system)
3606 (home-page "http://search.cpan.org/dist/Importer/")
3607 (synopsis "Alternative but compatible interface to modules that export symbols")
3608 (description "This module acts as a layer between Exporter and modules which
3609 consume exports. It is feature-compatible with Exporter, plus some much needed
3610 extras. You can use this to import symbols from any exporter that follows
3611 Exporters specification. The exporter modules themselves do not need to use or
3612 inherit from the Exporter module, they just need to set @@EXPORT and/or other
3613 variables.")
3614 (license (package-license perl))))
3615
3616 (define-public perl-import-into
3617 (package
3618 (name "perl-import-into")
3619 (version "1.002004")
3620 (source
3621 (origin
3622 (method url-fetch)
3623 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3624 "Import-Into-" version ".tar.gz"))
3625 (sha256
3626 (base32
3627 "110hifk3cj14lxgjq2vaa2qfja21gll4lpn8vbimy0gzqadjbjyy"))))
3628 (build-system perl-build-system)
3629 (propagated-inputs
3630 `(("perl-module-runtime" ,perl-module-runtime)))
3631 (home-page "http://search.cpan.org/dist/Import-Into")
3632 (synopsis "Import packages into other packages")
3633 (description "Writing exporters is a pain. Some use Exporter, some use
3634 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
3635 some things are pragmas. Exporting on someone else's behalf is harder. The
3636 exporters don't provide a consistent API for this, and pragmas need to have
3637 their import method called directly, since they effect the current unit of
3638 compilation. Import::Into provides global methods to make this painless.")
3639 (license (package-license perl))))
3640
3641 (define-public perl-inc-latest
3642 (package
3643 (name "perl-inc-latest")
3644 (version "0.500")
3645 (source
3646 (origin
3647 (method url-fetch)
3648 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3649 "inc-latest-" version ".tar.gz"))
3650 (sha256
3651 (base32
3652 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
3653 (build-system perl-build-system)
3654 (home-page "http://search.cpan.org/dist/inc-latest")
3655 (synopsis "Use modules in inc/ if newer than installed")
3656 (description "The inc::latest module helps bootstrap configure-time
3657 dependencies for CPAN distributions. These dependencies get bundled into the
3658 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
3659 (license asl2.0)))
3660
3661 (define-public perl-io-captureoutput
3662 (package
3663 (name "perl-io-captureoutput")
3664 (version "1.1104")
3665 (source
3666 (origin
3667 (method url-fetch)
3668 (uri (string-append
3669 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
3670 version
3671 ".tar.gz"))
3672 (sha256
3673 (base32
3674 "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
3675 (build-system perl-build-system)
3676 (home-page "http://search.cpan.org/dist/IO-CaptureOutput")
3677 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
3678 (description "@code{IO::CaptureOutput} provides routines for capturing
3679 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
3680 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
3681
3682 This module is no longer recommended by its maintainer. Users are advised to
3683 try @code{Capture::Tiny} instead.")
3684 (license (package-license perl))))
3685
3686 (define-public perl-io-interactive
3687 (package
3688 (name "perl-io-interactive")
3689 (version "0.0.6")
3690 (source
3691 (origin
3692 (method url-fetch)
3693 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
3694 "IO-Interactive-" version ".tar.gz"))
3695 (sha256
3696 (base32
3697 "1303q6rbcf2cag5z08pq3d1y91wls5q51jrpw4kh0l2bv75idh4w"))))
3698 (build-system perl-build-system)
3699 (home-page "http://search.cpan.org/dist/IO-Interactive")
3700 (synopsis "Utilities for interactive I/O")
3701 (description "This module provides three utility subroutines that make it
3702 easier to develop interactive applications: is_interactive(), interactive(),
3703 and busy().")
3704 (license (package-license perl))))
3705
3706 (define-public perl-io-string
3707 (package
3708 (name "perl-io-string")
3709 (version "1.08")
3710 (source
3711 (origin
3712 (method url-fetch)
3713 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3714 "IO-String-" version ".tar.gz"))
3715 (sha256
3716 (base32
3717 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
3718 (build-system perl-build-system)
3719 (home-page "http://search.cpan.org/~gaas/IO-String-1.08/")
3720 (synopsis "Emulate file interface for in-core strings")
3721 (description "IO::String is an IO::File (and IO::Handle) compatible class
3722 that reads or writes data from in-core strings.")
3723 (license (package-license perl))))
3724
3725 (define-public perl-io-stringy
3726 (package
3727 (name "perl-io-stringy")
3728 (version "2.110")
3729 (source
3730 (origin
3731 (method url-fetch)
3732 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
3733 "IO-stringy-" version ".tar.gz"))
3734 (sha256
3735 (base32
3736 "1vh4n0k22hx20rwvf6h7lp25wb7spg0089shrf92d2lkncwg8g3y"))))
3737 (build-system perl-build-system)
3738 (home-page "http://search.cpan.org/dist/IO-stringy")
3739 (synopsis "IO:: interface for reading/writing an array of lines")
3740 (description "This toolkit primarily provides modules for performing both
3741 traditional and object-oriented i/o) on things *other* than normal
3742 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
3743 (license (package-license perl))))
3744
3745 (define-public perl-io-tty
3746 (package
3747 (name "perl-io-tty")
3748 (version "1.11")
3749 (source (origin
3750 (method url-fetch)
3751 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
3752 version ".tar.gz"))
3753 (sha256
3754 (base32
3755 "0lgd9xcbi4gf4gw1ka6fj94my3w1f3k1zamb4pfln0qxz45zlxx4"))))
3756 (build-system perl-build-system)
3757 (home-page "http://search.cpan.org/~toddr/IO-Tty/")
3758 (synopsis "Perl interface to pseudo ttys")
3759 (description
3760 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
3761 pseudo ttys.")
3762 (license (package-license perl))))
3763
3764 (define-public perl-ipc-cmd
3765 (package
3766 (name "perl-ipc-cmd")
3767 (version "0.96")
3768 (source
3769 (origin
3770 (method url-fetch)
3771 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
3772 version ".tar.gz"))
3773 (sha256
3774 (base32
3775 "0a2v44x70gj9fd5wa8i08f9z6n14qppj1j49m1hc333wh72mzk6i"))))
3776 (build-system perl-build-system)
3777 (home-page "http://search.cpan.org/dist/IPC-Cmd")
3778 (synopsis "Run interactive command-line programs")
3779 (description "@code{IPC::Cmd} allows for the searching and execution of
3780 any binary on your system. It adheres to verbosity settings and is able to
3781 run interactively. It also has an option to capture output/error buffers.")
3782 (license (package-license perl))))
3783
3784 (define-public perl-ipc-run
3785 (package
3786 (name "perl-ipc-run")
3787 (version "0.94")
3788 (source
3789 (origin
3790 (method url-fetch)
3791 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
3792 "IPC-Run-" version ".tar.gz"))
3793 (sha256
3794 (base32
3795 "0nv0lpw31zaz6vi42q7ihjj3j382j4njicp5k0gsczib3b4kdcrf"))))
3796 (build-system perl-build-system)
3797 (propagated-inputs
3798 `(("perl-io-tty" ,perl-io-tty)))
3799 (arguments
3800 `(#:phases (modify-phases %standard-phases
3801 (add-before
3802 'check 'disable-w32-test
3803 (lambda _
3804 ;; This test fails, and we're not really interested in
3805 ;; it, so disable it.
3806 (delete-file "t/win32_compile.t"))))))
3807 (home-page "http://search.cpan.org/dist/IPC-Run")
3808 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
3809 (description "IPC::Run allows you run and interact with child processes
3810 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
3811 are supported and may be mixed. Likewise, functional and OO API styles are
3812 both supported and may be mixed.")
3813 (license (package-license perl))))
3814
3815 (define-public perl-ipc-run3
3816 (package
3817 (name "perl-ipc-run3")
3818 (version "0.048")
3819 (source (origin
3820 (method url-fetch)
3821 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3822 "IPC-Run3-" version ".tar.gz"))
3823 (sha256
3824 (base32
3825 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
3826 (build-system perl-build-system)
3827 (synopsis "Run a subprocess with input/output redirection")
3828 (description
3829 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
3830 stdout, and/or stderr to files and perl data structures. It aims to satisfy
3831 99% of the need for using system, qx, and open3 with a simple, extremely
3832 Perlish API and none of the bloat and rarely used features of IPC::Run.")
3833 (home-page (string-append "http://search.cpan.org/~rjbs/"
3834 "IPC-Run3-" version))
3835 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
3836 ;; licenses, any version."
3837 (license (list bsd-3 gpl3+))))
3838
3839 (define-public perl-ipc-sharelite
3840 (package
3841 (name "perl-ipc-sharelite")
3842 (version "0.17")
3843 (source
3844 (origin
3845 (method url-fetch)
3846 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
3847 "IPC-ShareLite-" version ".tar.gz"))
3848 (sha256
3849 (base32
3850 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
3851 (build-system perl-build-system)
3852 (home-page "http://search.cpan.org/dist/IPC-ShareLite")
3853 (synopsis "Lightweight interface to shared memory")
3854 (description "IPC::ShareLite provides a simple interface to shared memory,
3855 allowing data to be efficiently communicated between processes.")
3856 (license (package-license perl))))
3857
3858 (define-public perl-ipc-system-simple
3859 (package
3860 (name "perl-ipc-system-simple")
3861 (version "1.25")
3862 (source (origin
3863 (method url-fetch)
3864 (uri (string-append
3865 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
3866 version ".tar.gz"))
3867 (sha256
3868 (base32
3869 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
3870 (build-system perl-build-system)
3871 (home-page "http://search.cpan.org/dist/IPC-System-Simple")
3872 (synopsis "Run commands simply, with detailed diagnostics")
3873 (description "Calling Perl's in-built @code{system} function is easy,
3874 determining if it was successful is hard. Let's face it, @code{$?} isn't the
3875 nicest variable in the world to play with, and even if you do check it,
3876 producing a well-formatted error string takes a lot of work.
3877
3878 @code{IPC::System::Simple} takes the hard work out of calling external
3879 commands.")
3880 (license (package-license perl))))
3881
3882 (define-public perl-json
3883 (package
3884 (name "perl-json")
3885 (version "2.90")
3886 (source
3887 (origin
3888 (method url-fetch)
3889 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
3890 "JSON-" version ".tar.gz"))
3891 (sha256
3892 (base32
3893 "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
3894 (build-system perl-build-system)
3895 (propagated-inputs
3896 `(("perl-json-xs" ,perl-json-xs))) ;recommended
3897 (home-page "http://search.cpan.org/dist/JSON")
3898 (synopsis "JSON encoder/decoder for Perl")
3899 (description "This module converts Perl data structures to JSON and vice
3900 versa using either JSON::XS or JSON::PP.")
3901 (license (package-license perl))))
3902
3903 (define-public perl-json-any
3904 (package
3905 (name "perl-json-any")
3906 (version "1.38")
3907 (source
3908 (origin
3909 (method url-fetch)
3910 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3911 "JSON-Any-" version ".tar.gz"))
3912 (sha256
3913 (base32
3914 "0mk6shg82i7y852bvj5d0qqma1d9k0jh10k4mg62hbgr800gb2m4"))))
3915 (build-system perl-build-system)
3916 (native-inputs
3917 `(("perl-test-fatal" ,perl-test-fatal)
3918 ("perl-test-requires" ,perl-test-requires)
3919 ("perl-test-warnings" ,perl-test-warnings)
3920 ("perl-test-without-module" ,perl-test-without-module)))
3921 (propagated-inputs
3922 `(("perl-namespace-clean" ,perl-namespace-clean)))
3923 (home-page "http://search.cpan.org/dist/JSON-Any")
3924 (synopsis "Wrapper for Perl JSON classes")
3925 (description
3926 "This module tries to provide a coherent API to bring together the
3927 various JSON modules currently on CPAN. This module will allow you to code to
3928 any JSON API and have it work regardless of which JSON module is actually
3929 installed.")
3930 (license (package-license perl))))
3931
3932 (define-public perl-json-maybexs
3933 (package
3934 (name "perl-json-maybexs")
3935 (version "1.003003")
3936 (source
3937 (origin
3938 (method url-fetch)
3939 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3940 "JSON-MaybeXS-" version ".tar.gz"))
3941 (sha256
3942 (base32
3943 "0q21wzz87drrvblxcm2py8fcvkzwx1hxzfybynz8ln7wv66vbx3f"))))
3944 (build-system perl-build-system)
3945 (native-inputs
3946 `(("perl-test-without-module" ,perl-test-without-module)))
3947 (inputs
3948 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
3949 (home-page "http://search.cpan.org/dist/JSON-MaybeXS")
3950 (synopsis "Cpanel::JSON::XS with fallback")
3951 (description "This module first checks to see if either Cpanel::JSON::XS
3952 or JSON::XS is already loaded, in which case it uses that module. Otherwise
3953 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
3954 either uses the first module it finds or throws an error.")
3955 (license (package-license perl))))
3956
3957 (define-public perl-json-xs
3958 (package
3959 (name "perl-json-xs")
3960 (version "3.01")
3961 (source
3962 (origin
3963 (method url-fetch)
3964 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
3965 "JSON-XS-" version ".tar.gz"))
3966 (sha256
3967 (base32
3968 "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
3969 (build-system perl-build-system)
3970 (propagated-inputs
3971 `(("perl-common-sense" ,perl-common-sense)
3972 ("perl-types-serialiser" ,perl-types-serialiser)))
3973 (home-page "http://search.cpan.org/dist/JSON-XS")
3974 (synopsis "JSON serialising/deserialising for Perl")
3975 (description "This module converts Perl data structures to JSON and vice
3976 versa.")
3977 (license (package-license perl))))
3978
3979 (define-public perl-log-any
3980 (package
3981 (name "perl-log-any")
3982 (version "1.040")
3983 (source
3984 (origin
3985 (method url-fetch)
3986 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
3987 version ".tar.gz"))
3988 (sha256
3989 (base32
3990 "0r1q7cclgwl24gzdnjzvd8y0r7j17dngjk492x35w198zhdj2ncp"))))
3991 (build-system perl-build-system)
3992 (home-page "http://search.cpan.org/dist/Log-Any")
3993 (synopsis "Bringing loggers and listeners together")
3994 (description "@code{Log::Any} provides a standard log production API for
3995 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
3996 for log consumption, whether screen, file or another logging mechanism like
3997 @code{Log::Dispatch} or @code{Log::Log4perl}.
3998
3999 A CPAN module uses @code{Log::Any} to get a log producer object. An
4000 application, in turn, may choose one or more logging mechanisms via
4001 @code{Log::Any::Adapter}, or none at all.
4002
4003 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
4004 itself, which makes it appropriate for even small CPAN modules to use. It
4005 defaults to 'null' logging activity, so a module can safely log without
4006 worrying about whether the application has chosen (or will ever choose) a
4007 logging mechanism.")
4008 (license (package-license perl))))
4009
4010 (define-public perl-log-any-adapter-log4perl
4011 (package
4012 (name "perl-log-any-adapter-log4perl")
4013 (version "0.08")
4014 (source
4015 (origin
4016 (method url-fetch)
4017 (uri (string-append
4018 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-Adapter-Log4perl-"
4019 version
4020 ".tar.gz"))
4021 (sha256
4022 (base32
4023 "0xf4fnrsznvg0hf36q481124ja1hp3lybki1xjgnk82z9990jmxn"))))
4024 (build-system perl-build-system)
4025 (propagated-inputs
4026 `(("perl-log-any" ,perl-log-any)
4027 ("perl-log-log4perl" ,perl-log-log4perl)))
4028 (home-page
4029 "http://search.cpan.org/dist/Log-Any-Adapter-Log4perl")
4030 (synopsis "Log::Any adapter for Log::Log4perl")
4031 (description "@code{Log::Any::Adapter::Log4perl} provides a
4032 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
4033 (license (package-license perl))))
4034
4035 (define-public perl-log-log4perl
4036 (package
4037 (name "perl-log-log4perl")
4038 (version "1.47")
4039 (source
4040 (origin
4041 (method url-fetch)
4042 (uri (string-append
4043 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
4044 version
4045 ".tar.gz"))
4046 (sha256
4047 (base32
4048 "0vxraq9navx5mgf8y8g6l5rbl3dv2ml8bishka5m69hj07nxs0ch"))))
4049 (build-system perl-build-system)
4050 (home-page
4051 "http://search.cpan.org/dist/Log-Log4perl")
4052 (synopsis "Log4j implementation for Perl")
4053 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
4054 the logging behaviour of your system from the outside. It implements the
4055 widely popular (Java-based) Log4j logging package in pure Perl.")
4056 (license (package-license perl))))
4057
4058 (define-public perl-log-report-optional
4059 (package
4060 (name "perl-log-report-optional")
4061 (version "1.01")
4062 (source (origin
4063 (method url-fetch)
4064 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4065 "Log-Report-Optional-" version ".tar.gz"))
4066 (sha256
4067 (base32
4068 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
4069 (build-system perl-build-system)
4070 (propagated-inputs
4071 `(("perl-string-print" ,perl-string-print)))
4072 (home-page "http://search.cpan.org/dist/Log-Report-Optional")
4073 (synopsis "Log::Report in the lightest form")
4074 (description
4075 "This module allows libraries to have a dependency to a small module
4076 instead of the full Log-Report distribution. The full power of
4077 @code{Log::Report} is only released when the main program uses that module.
4078 In that case, the module using the 'Optional' will also use the full
4079 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
4080 version.")
4081 (license (package-license perl))))
4082
4083 (define-public perl-log-report
4084 (package
4085 (name "perl-log-report")
4086 (version "1.10")
4087 (source (origin
4088 (method url-fetch)
4089 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4090 "Log-Report-" version ".tar.gz"))
4091 (sha256
4092 (base32
4093 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
4094 (build-system perl-build-system)
4095 (propagated-inputs
4096 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4097 ("perl-log-report-optional" ,perl-log-report-optional)
4098 ("perl-string-print" ,perl-string-print)))
4099 (home-page "http://search.cpan.org/dist/Log-Report")
4100 (synopsis "Get messages to users and logs")
4101 (description
4102 "@code{Log::Report} combines three tasks which are closely related in
4103 one: logging, exceptions, and translations.")
4104 (license (package-license perl))))
4105
4106 (define-public perl-lingua-translit
4107 (package
4108 (name "perl-lingua-translit")
4109 (version "0.26")
4110 (source
4111 (origin
4112 (method url-fetch)
4113 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
4114 "Lingua-Translit-" version ".tar.gz"))
4115 (sha256
4116 (base32
4117 "161589h08kzliga17i2g0hb0yn4cjmb8rdiyadq5bw97974bac14"))))
4118 (build-system perl-build-system)
4119 (home-page "http://search.cpan.org/dist/Lingua-Translit")
4120 (synopsis "Transliterate text between writing systems")
4121 (description "@code{Lingua::Translit} can be used to convert text from one
4122 writing system to another, based on national or international transliteration
4123 tables. Where possible a reverse transliteration is supported.")
4124 (license (package-license perl))))
4125
4126 (define-public perl-list-allutils
4127 (package
4128 (name "perl-list-allutils")
4129 (version "0.09")
4130 (source
4131 (origin
4132 (method url-fetch)
4133 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4134 "List-AllUtils-" version ".tar.gz"))
4135 (sha256
4136 (base32
4137 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
4138 (build-system perl-build-system)
4139 (native-inputs
4140 `(("perl-test-warnings" ,perl-test-warnings)))
4141 (propagated-inputs
4142 `(("perl-list-moreutils" ,perl-list-moreutils)
4143 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
4144 (home-page "http://search.cpan.org/dist/List-AllUtils")
4145 (synopsis "Combination of List::Util and List::MoreUtils")
4146 (description "This module exports all of the functions that either
4147 List::Util or List::MoreUtils defines, with preference to List::Util.")
4148 (license (package-license perl))))
4149
4150 (define-public perl-list-compare
4151 (package
4152 (name "perl-list-compare")
4153 (version "0.53")
4154 (source
4155 (origin
4156 (method url-fetch)
4157 (uri (string-append
4158 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
4159 version
4160 ".tar.gz"))
4161 (sha256
4162 (base32
4163 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
4164 (build-system perl-build-system)
4165 (native-inputs
4166 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
4167 (home-page "http://search.cpan.org/dist/List-Compare")
4168 (synopsis "Compare elements of two or more lists")
4169 (description "@code{List::Compare} provides a module to perform
4170 comparative operations on two or more lists. Provided operations include
4171 intersections, unions, unique elements, complements and many more.")
4172 (license (package-license perl))))
4173
4174 (define-public perl-list-moreutils
4175 (package
4176 (name "perl-list-moreutils")
4177 (version "0.402")
4178 (source
4179 (origin
4180 (method url-fetch)
4181 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4182 "List-MoreUtils-" version ".tar.gz"))
4183 (sha256
4184 (base32
4185 "1i0k7kqg1m9nf2xvq9l4lyf38fxvi9952vmmvhcdaf3qa95pxb24"))))
4186 (build-system perl-build-system)
4187 (native-inputs
4188 `(("perl-config-autoconf" ,perl-config-autoconf)
4189 ("perl-inc-latest" ,perl-inc-latest)
4190 ("perl-test-writevariants" ,perl-test-writevariants)))
4191 (propagated-inputs
4192 `(("perl-exporter-tiny" ,perl-exporter-tiny)))
4193 (home-page "http://search.cpan.org/dist/List-MoreUtils")
4194 (synopsis "Provide the stuff missing in List::Util")
4195 (description "List::MoreUtils provides some trivial but commonly needed
4196 functionality on lists which is not going to go into List::Util.")
4197 (license (package-license perl))))
4198
4199 (define-public perl-list-someutils
4200 (package
4201 (name "perl-list-someutils")
4202 (version "0.52")
4203 (source
4204 (origin
4205 (method url-fetch)
4206 (uri (string-append
4207 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
4208 version
4209 ".tar.gz"))
4210 (sha256
4211 (base32
4212 "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
4213 (build-system perl-build-system)
4214 (native-inputs
4215 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
4216 (inputs
4217 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4218 ("perl-module-implementation"
4219 ,perl-module-implementation)))
4220 (home-page "http://search.cpan.org/dist/List-SomeUtils")
4221 (synopsis "Provide the stuff missing in List::Util")
4222 (description "@code{List::SomeUtils} provides some trivial but commonly
4223 needed functionality on lists which is not going to go into @code{List::Util}.
4224
4225 All of the below functions are implementable in only a couple of lines of Perl
4226 code. Using the functions from this module however should give slightly
4227 better performance as everything is implemented in C. The pure-Perl
4228 implementation of these functions only serves as a fallback in case the C
4229 portions of this module couldn't be compiled on this machine.")
4230 (license (package-license perl))))
4231
4232 (define-public perl-mailtools
4233 (package
4234 (name "perl-mailtools")
4235 (version "2.19")
4236 (source
4237 (origin
4238 (method url-fetch)
4239 (uri (string-append
4240 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
4241 version
4242 ".tar.gz"))
4243 (sha256
4244 (base32
4245 "06jykkv8mp484vzkmwd6dkicx029rl3ir5ljzrbap3paxw1dfzn1"))))
4246 (build-system perl-build-system)
4247 (propagated-inputs
4248 `(("perl-timedate" ,perl-timedate)))
4249 (home-page
4250 "http://search.cpan.org/dist/MailTools")
4251 (synopsis "Bundle of ancient email modules")
4252 (description "MailTools contains the following modules:
4253 @table @asis
4254 @item Mail::Address
4255 Parse email address from a header line.
4256 @item Mail::Cap
4257 Interpret mailcap files: mappings of file-types to applications as used by
4258 many command-line email programs.
4259 @item Mail::Field
4260 Simplifies access to (some) email header fields. Used by Mail::Header.
4261 @item Mail::Filter
4262 Process Mail::Internet messages.
4263 @item Mail::Header
4264 Collection of Mail::Field objects, representing the header of a Mail::Internet
4265 object.
4266 @item Mail::Internet
4267 Represents a single email message, with header and body.
4268 @item Mail::Mailer
4269 Send Mail::Internet emails via direct smtp or local MTA's.
4270 @item Mail::Send
4271 Build a Mail::Internet object, and then send it out using Mail::Mailer.
4272 @item Mail::Util
4273 \"Smart functions\" you should not depend on.
4274 @end table")
4275 (license perl-license)))
4276
4277 (define-public perl-memoize-expirelru
4278 (package
4279 (name "perl-memoize-expirelru")
4280 (version "0.55")
4281 (source
4282 (origin
4283 (method url-fetch)
4284 (uri (string-append "mirror://cpan/authors/id/B/BP/BPOWERS/"
4285 "Memoize-ExpireLRU-" version ".tar.gz"))
4286 (sha256
4287 (base32
4288 "0klk0vj78lr259mnv1rbxib8gzf2cfp4zhkhbcxyhadkkl73myvj"))))
4289 (build-system perl-build-system)
4290 (home-page "http://search.cpan.org/dist/Memoize-ExpireLRU")
4291 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
4292 (description "This module implements an expiry policy for Memoize that
4293 follows LRU semantics, that is, the last n results, where n is specified as
4294 the argument to the CACHESIZE parameter, will be cached.")
4295 (license (package-license perl))))
4296
4297 (define-public perl-mime-charset
4298 (package
4299 (name "perl-mime-charset")
4300 (version "1.012.2")
4301 (source (origin
4302 (method url-fetch)
4303 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
4304 "MIME-Charset-" version ".tar.gz"))
4305 (sha256
4306 (base32
4307 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
4308 (build-system perl-build-system)
4309 (home-page "http://search.cpan.org/dist/MIME-Charset")
4310 (synopsis "Charset information for MIME messages")
4311 (description
4312 "@code{MIME::Charset} provides information about character sets used for
4313 MIME messages on Internet.")
4314 (license (package-license perl))))
4315
4316 (define-public perl-mime-tools
4317 (package
4318 (name "perl-mime-tools")
4319 (version "5.509")
4320 (source
4321 (origin
4322 (method url-fetch)
4323 (uri (string-append
4324 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
4325 version
4326 ".tar.gz"))
4327 (sha256
4328 (base32
4329 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
4330 (build-system perl-build-system)
4331 (native-inputs
4332 `(("perl-test-deep" ,perl-test-deep)))
4333 (inputs
4334 `(("perl-convert-binhex" ,perl-convert-binhex)))
4335 (propagated-inputs
4336 `(("perl-mailtools" ,perl-mailtools)))
4337 (home-page
4338 "http://search.cpan.org/dist/MIME-tools")
4339 (synopsis "Tools to manipulate MIME messages")
4340 (description
4341 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
4342 decoding, and generating single- or multipart (even nested multipart) MIME
4343 messages.")
4344 (license perl-license)))
4345
4346 (define-public perl-mime-types
4347 (package
4348 (name "perl-mime-types")
4349 (version "2.09")
4350 (source
4351 (origin
4352 (method url-fetch)
4353 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4354 "MIME-Types-" version ".tar.gz"))
4355 (sha256
4356 (base32
4357 "0s7s2z9xc1nc2l59rk80iaa04r36k0y95231212kz5p3ln7szk1c"))))
4358 (build-system perl-build-system)
4359 (home-page "http://search.cpan.org/dist/MIME-Types")
4360 (synopsis "Definition of MIME types")
4361 (description "This module provides a list of known mime-types, combined
4362 from various sources. For instance, it contains all IANA types and the
4363 knowledge of Apache.")
4364 (license (package-license perl))))
4365
4366 (define-public perl-mixin-linewise
4367 (package
4368 (name "perl-mixin-linewise")
4369 (version "0.108")
4370 (source (origin
4371 (method url-fetch)
4372 (uri (string-append
4373 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
4374 version ".tar.gz"))
4375 (sha256
4376 (base32
4377 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
4378 (build-system perl-build-system)
4379 (inputs
4380 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
4381 ("perl-sub-exporter" ,perl-sub-exporter)))
4382 (home-page "http://search.cpan.org/dist/Mixin-Linewise")
4383 (synopsis "Write your linewise code for handles; this does the rest")
4384 (description "It's boring to deal with opening files for IO, converting
4385 strings to handle-like objects, and all that. With
4386 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
4387 just write a method to handle handles, and methods for handling strings and
4388 file names are added for you.")
4389 (license (package-license perl))))
4390
4391 (define-public perl-modern-perl
4392 (package
4393 (name "perl-modern-perl")
4394 (version "1.20170117")
4395 (source
4396 (origin
4397 (method url-fetch)
4398 (uri (string-append
4399 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
4400 version ".tar.gz"))
4401 (sha256
4402 (base32
4403 "0a1n9c04zhs1a1km1zi0d1hj78d10qv3bhxr4bdi4chnc4saiwjx"))))
4404 (build-system perl-build-system)
4405 (native-inputs
4406 `(("perl-module-build" ,perl-module-build)))
4407 (home-page
4408 "http://search.cpan.org/dist/Modern-Perl")
4409 (synopsis
4410 "Enable all of the features of Modern Perl with one import")
4411 (description "@code{Modern::Perl} provides a simple way to enable
4412 multiple, by now, standard libraries in a Perl program.")
4413 (license (package-license perl))))
4414
4415 (define-public perl-module-build-tiny
4416 (package
4417 (name "perl-module-build-tiny")
4418 (version "0.039")
4419 (source
4420 (origin
4421 (method url-fetch)
4422 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4423 "Module-Build-Tiny-" version ".tar.gz"))
4424 (sha256
4425 (base32
4426 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
4427 (build-system perl-build-system)
4428 (native-inputs
4429 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
4430 ("perl-extutils-config" ,perl-extutils-config)
4431 ("perl-extutils-helpers" ,perl-extutils-helpers)
4432 ("perl-test-harness" ,perl-test-harness)))
4433 (propagated-inputs
4434 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
4435 ("perl-extutils-config" ,perl-extutils-config)
4436 ("perl-extutils-helpers" ,perl-extutils-helpers)
4437 ("perl-test-harness" ,perl-test-harness)))
4438 (home-page "http://search.cpan.org/dist/Module-Build-Tiny")
4439 (synopsis "Tiny replacement for Module::Build")
4440 (description "Many Perl distributions use a Build.PL file instead of a
4441 Makefile.PL file to drive distribution configuration, build, test and
4442 installation. Traditionally, Build.PL uses Module::Build as the underlying
4443 build system. This module provides a simple, lightweight, drop-in
4444 replacement. Whereas Module::Build has over 6,700 lines of code; this module
4445 has less than 120, yet supports the features needed by most distributions.")
4446 (license (package-license perl))))
4447
4448 (define-public perl-module-build-xsutil
4449 (package
4450 (name "perl-module-build-xsutil")
4451 (version "0.16")
4452 (source (origin
4453 (method url-fetch)
4454 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
4455 "Module-Build-XSUtil-" version ".tar.gz"))
4456 (sha256
4457 (base32
4458 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
4459 (build-system perl-build-system)
4460 (native-inputs
4461 `(("perl-capture-tiny" ,perl-capture-tiny)
4462 ("perl-cwd-guard" ,perl-cwd-guard)
4463 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
4464 ("perl-module-build" ,perl-module-build)))
4465 (propagated-inputs
4466 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
4467 (home-page "http://search.cpan.org/dist/Module-Build-XSUtil")
4468 (synopsis "Module::Build class for building XS modules")
4469 (description
4470 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
4471 for support building XS modules.
4472
4473 This is a list of a new parameters in the @code{Module::Build::new} method:
4474
4475 @enumerate
4476 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
4477 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
4478 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
4479 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
4480 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
4481 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
4482 @file{ppport.h}, and defines some portability stuff which are not supported by
4483 @file{ppport.h}.
4484
4485 It is ported from @code{Module::Install::XSUtil}.
4486 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
4487 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
4488 debug options.
4489 @end enumerate")
4490 (license (package-license perl))))
4491
4492 (define-public perl-module-find
4493 (package
4494 (name "perl-module-find")
4495 (version "0.12")
4496 (source
4497 (origin
4498 (method url-fetch)
4499 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
4500 "Module-Find-" version ".tar.gz"))
4501 (sha256
4502 (base32
4503 "1lc33jdv4pgmm7nkr9bff0lhwjhhw91kaf6iiy2n7i7mw8dfv47l"))))
4504 (build-system perl-build-system)
4505 (home-page "http://search.cpan.org/dist/Module-Find")
4506 (synopsis "Find and use installed modules in a (sub)category")
4507 (description "Module::Find lets you find and use modules in categories.
4508 This can be useful for auto-detecting driver or plugin modules. You can
4509 differentiate between looking in the category itself or in all
4510 subcategories.")
4511 (license (package-license perl))))
4512
4513 (define-public perl-module-implementation
4514 (package
4515 (name "perl-module-implementation")
4516 (version "0.09")
4517 (source
4518 (origin
4519 (method url-fetch)
4520 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4521 "Module-Implementation-" version ".tar.gz"))
4522 (sha256
4523 (base32
4524 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
4525 (build-system perl-build-system)
4526 (native-inputs
4527 `(("perl-test-fatal" ,perl-test-fatal)
4528 ("perl-test-requires" ,perl-test-requires)))
4529 (propagated-inputs
4530 `(("perl-module-runtime" ,perl-module-runtime)
4531 ("perl-try-tiny" ,perl-try-tiny)))
4532 (home-page "http://search.cpan.org/dist/Module-Implementation")
4533 (synopsis "Loads alternate underlying implementations for a module")
4534 (description "This module abstracts out the process of choosing one of
4535 several underlying implementations for a module. This can be used to provide
4536 XS and pure Perl implementations of a module, or it could be used to load an
4537 implementation for a given OS or any other case of needing to provide multiple
4538 implementations.")
4539 (license artistic2.0)))
4540
4541 (define-public perl-module-install
4542 (package
4543 (name "perl-module-install")
4544 (version "1.14")
4545 (source
4546 (origin
4547 (method url-fetch)
4548 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/"
4549 "Module-Install-" version ".tar.gz"))
4550 (sha256
4551 (base32
4552 "0j8dz87k60i1khd9xadd8kl6bgm9s5s5zl86rzsz5bq36siz00iz"))))
4553 (build-system perl-build-system)
4554 (native-inputs
4555 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
4556 (propagated-inputs
4557 `(("perl-archive-zip" ,perl-archive-zip)
4558 ("perl-file-homedir" ,perl-file-homedir)
4559 ("perl-file-remove" ,perl-file-remove)
4560 ("perl-json" ,perl-json)
4561 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
4562 ;; would cause a circular dependency with (gnu packages web), so we
4563 ;; leave it out. It may be resolved at runtime, however.
4564 ;("perl-libwww-perl" ,perl-libwww-perl)
4565 ("perl-module-scandeps" ,perl-module-scandeps)
4566 ("perl-par-dist" ,perl-par-dist)
4567 ("perl-yaml-tiny" ,perl-yaml-tiny)))
4568 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
4569 ;; character handling.
4570 (arguments `(#:tests? #f))
4571 (home-page "http://search.cpan.org/dist/Module-Install")
4572 (synopsis "Standalone, extensible Perl module installer")
4573 (description "Module::Install is a package for writing installers for
4574 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
4575 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
4576 installation version 5.005 or newer.")
4577 (license (package-license perl))))
4578
4579 (define-public perl-module-pluggable
4580 (package
4581 (name "perl-module-pluggable")
4582 (version "5.2")
4583 (source
4584 (origin
4585 (method url-fetch)
4586 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
4587 "Module-Pluggable-" version ".tar.gz"))
4588 (sha256
4589 (base32
4590 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
4591 (patches (search-patches "perl-module-pluggable-search.patch"))))
4592 (build-system perl-build-system)
4593 (home-page "http://search.cpan.org/dist/Module-Pluggable")
4594 (synopsis "Give your Perl module the ability to have plugins")
4595 (description "This module provides a simple but extensible way of having
4596 'plugins' for your Perl module.")
4597 (license (package-license perl))))
4598
4599 (define-public perl-module-runtime
4600 (package
4601 (name "perl-module-runtime")
4602 (version "0.014")
4603 (source
4604 (origin
4605 (method url-fetch)
4606 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
4607 "Module-Runtime-" version ".tar.gz"))
4608 (sha256
4609 (base32
4610 "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
4611 (build-system perl-build-system)
4612 (native-inputs `(("perl-module-build" ,perl-module-build)))
4613 (home-page "http://search.cpan.org/dist/Module-Runtime")
4614 (synopsis "Perl runtime module handling")
4615 (description "The functions exported by this module deal with runtime
4616 handling of Perl modules, which are normally handled at compile time.")
4617 (license (package-license perl))))
4618
4619 (define-public perl-module-runtime-conflicts
4620 (package
4621 (name "perl-module-runtime-conflicts")
4622 (version "0.003")
4623 (source
4624 (origin
4625 (method url-fetch)
4626 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4627 "Module-Runtime-Conflicts-" version ".tar.gz"))
4628 (sha256
4629 (base32
4630 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
4631 (build-system perl-build-system)
4632 (native-inputs
4633 `(("perl-module-build" ,perl-module-build)))
4634 (propagated-inputs
4635 `(("perl-module-runtime" ,perl-module-runtime)
4636 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
4637 (home-page "http://search.cpan.org/dist/Module-Runtime-Conflicts")
4638 (synopsis "Provide information on conflicts for Module::Runtime")
4639 (description "This module provides conflicts checking for Module::Runtime,
4640 which had a recent release that broke some versions of Moose. It is called
4641 from Moose::Conflicts and moose-outdated.")
4642 (license (package-license perl))))
4643
4644 (define-public perl-module-scandeps
4645 (package
4646 (name "perl-module-scandeps")
4647 (version "1.24")
4648 (source
4649 (origin
4650 (method url-fetch)
4651 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
4652 "Module-ScanDeps-" version ".tar.gz"))
4653 (sha256
4654 (base32
4655 "0s6cj90ckhy351gql52ksh4ms1x8piv26iadl09fcpzkx7j0srw9"))))
4656 (build-system perl-build-system)
4657 (native-inputs
4658 `(("perl-test-requires" ,perl-test-requires)))
4659 (home-page "http://search.cpan.org/dist/Module-ScanDeps")
4660 (synopsis "Recursively scan Perl code for dependencies")
4661 (description "Module::ScanDeps is a module to recursively scan Perl
4662 programs for dependencies.")
4663 (license (package-license perl))))
4664
4665 (define-public perl-module-util
4666 (package
4667 (name "perl-module-util")
4668 (version "1.09")
4669 (source
4670 (origin
4671 (method url-fetch)
4672 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
4673 "Module-Util-" version ".tar.gz"))
4674 (sha256
4675 (base32
4676 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
4677 (build-system perl-build-system)
4678 (native-inputs
4679 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
4680 (home-page "http://search.cpan.org/dist/Module-Util")
4681 (synopsis "Module name tools and transformations")
4682 (description "This module provides a few useful functions for manipulating
4683 module names. Its main aim is to centralise some of the functions commonly
4684 used by modules that manipulate other modules in some way, like converting
4685 module names to relative paths.")
4686 (license (package-license perl))))
4687
4688 (define-public perl-moo
4689 (package
4690 (name "perl-moo")
4691 (version "1.007000")
4692 (source
4693 (origin
4694 (method url-fetch)
4695 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4696 "Moo-" version ".tar.gz"))
4697 (sha256
4698 (base32
4699 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
4700 (build-system perl-build-system)
4701 (native-inputs
4702 `(("perl-test-fatal" ,perl-test-fatal)))
4703 (propagated-inputs
4704 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
4705 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
4706 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4707 ("perl-import-into" ,perl-import-into)
4708 ("perl-module-runtime" ,perl-module-runtime)
4709 ("perl-role-tiny" ,perl-role-tiny)
4710 ("perl-strictures" ,perl-strictures)))
4711 (home-page "http://search.cpan.org/dist/Moo")
4712 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
4713 (description "Moo is an extremely light-weight Object Orientation system.
4714 It allows one to concisely define objects and roles with a convenient syntax
4715 that avoids the details of Perl's object system. Moo contains a subset of
4716 Moose and is optimised for rapid startup.")
4717 (license (package-license perl))))
4718
4719 (define-public perl-moose
4720 (package
4721 (name "perl-moose")
4722 (version "2.2004")
4723 (source (origin
4724 (method url-fetch)
4725 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4726 "Moose-" version ".tar.gz"))
4727 (sha256
4728 (base32
4729 "1c6jx2lnrh2mi9wlj2c0sirj6345xmbpr34ax8d85mcginzq3j74"))))
4730 (build-system perl-build-system)
4731 (native-inputs
4732 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4733 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4734 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
4735 ("perl-test-fatal" ,perl-test-fatal)
4736 ("perl-test-requires" ,perl-test-requires)
4737 ("perl-test-warnings" ,perl-test-warnings)))
4738 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
4739 ;; # === Other Modules ===
4740 ;; #
4741 ;; # Module Want Have
4742 ;; # ---------------------------- ---- -------
4743 ;; # Algorithm::C3 any missing
4744 ;; # DBM::Deep any missing
4745 ;; # DateTime any missing
4746 ;; # DateTime::Calendar::Mayan any missing
4747 ;; # DateTime::Format::MySQL any missing
4748 ;; # Declare::Constraints::Simple any missing
4749 ;; # Dist::CheckConflicts any 0.11
4750 ;; # HTTP::Headers any missing
4751 ;; # IO::File any 1.16
4752 ;; # IO::String any missing
4753 ;; # Locale::US any missing
4754 ;; # Module::Refresh any missing
4755 ;; # MooseX::NonMoose any missing
4756 ;; # Params::Coerce any missing
4757 ;; # Regexp::Common any missing
4758 ;; # SUPER any missing
4759 ;; # Test::Deep any missing
4760 ;; # Test::DependentModules any missing
4761 ;; # Test::LeakTrace any missing
4762 ;; # Test::Output any missing
4763 ;; # URI any missing
4764 (propagated-inputs
4765 `(("perl-class-load" ,perl-class-load)
4766 ("perl-class-load-xs" ,perl-class-load-xs)
4767 ("perl-data-optlist" ,perl-data-optlist)
4768 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4769 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
4770 ("perl-devel-partialdump" ,perl-devel-partialdump)
4771 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
4772 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4773 ("perl-eval-closure" ,perl-eval-closure)
4774 ("perl-list-moreutils" ,perl-list-moreutils)
4775 ("perl-module-runtime" ,perl-module-runtime)
4776 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
4777 ("perl-mro-compat" ,perl-mro-compat)
4778 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
4779 ("perl-package-stash" ,perl-package-stash)
4780 ("perl-package-stash-xs" ,perl-package-stash-xs)
4781 ("perl-params-util" ,perl-params-util)
4782 ("perl-parent" ,perl-parent)
4783 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
4784 ("perl-sub-exporter" ,perl-sub-exporter)
4785 ("perl-sub-name" ,perl-sub-name)
4786 ("perl-task-weaken" ,perl-task-weaken)
4787 ("perl-try-tiny" ,perl-try-tiny)))
4788 (home-page "http://search.cpan.org/dist/Moose")
4789 (synopsis "Postmodern object system for Perl 5")
4790 (description
4791 "Moose is a complete object system for Perl 5. It provides keywords for
4792 attribute declaration, object construction, inheritance, and maybe more. With
4793 Moose, you define your class declaratively, without needing to know about
4794 blessed hashrefs, accessor methods, and so on. You can concentrate on the
4795 logical structure of your classes, focusing on \"what\" rather than \"how\".
4796 A class definition with Moose reads like a list of very concise English
4797 sentences.")
4798 (license (package-license perl))))
4799
4800 (define-public perl-moosex-emulate-class-accessor-fast
4801 (package
4802 (name "perl-moosex-emulate-class-accessor-fast")
4803 (version "0.00903")
4804 (source
4805 (origin
4806 (method url-fetch)
4807 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
4808 "MooseX-Emulate-Class-Accessor-Fast-"
4809 version ".tar.gz"))
4810 (sha256
4811 (base32
4812 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
4813 (build-system perl-build-system)
4814 (native-inputs
4815 `(("perl-module-install" ,perl-module-install)
4816 ("perl-test-exception" ,perl-test-exception)))
4817 (propagated-inputs
4818 `(("perl-moose" ,perl-moose)))
4819 (home-page "http://search.cpan.org/dist/MooseX-Emulate-Class-Accessor-Fast")
4820 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
4821 (description "This module attempts to emulate the behavior of
4822 Class::Accessor::Fast as accurately as possible using the Moose attribute
4823 system. The public API of Class::Accessor::Fast is wholly supported, but the
4824 private methods are not.")
4825 (license (package-license perl))))
4826
4827 (define-public perl-moosex-getopt
4828 (package
4829 (name "perl-moosex-getopt")
4830 (version "0.65")
4831 (source
4832 (origin
4833 (method url-fetch)
4834 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4835 "MooseX-Getopt-" version ".tar.gz"))
4836 (sha256
4837 (base32
4838 "1nkzvbsiwldmpn6207ns7rinh860djnw098h6cnvywf429rjnz60"))))
4839 (build-system perl-build-system)
4840 (native-inputs
4841 `(("perl-module-build" ,perl-module-build)
4842 ("perl-test-deep" ,perl-test-deep)
4843 ("perl-test-fatal" ,perl-test-fatal)
4844 ("perl-test-requires" ,perl-test-requires)
4845 ("perl-test-trap" ,perl-test-trap)
4846 ("perl-test-warnings" ,perl-test-warnings)))
4847 (propagated-inputs
4848 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
4849 ("perl-moose" ,perl-moose)
4850 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
4851 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4852 (home-page "http://search.cpan.org/dist/MooseX-Getopt")
4853 (synopsis "Moose role for processing command line options")
4854 (description "This is a Moose role which provides an alternate constructor
4855 for creating objects using parameters passed in from the command line.")
4856 (license (package-license perl))))
4857
4858 (define-public perl-moosex-markasmethods
4859 (package
4860 (name "perl-moosex-markasmethods")
4861 (version "0.15")
4862 (source
4863 (origin
4864 (method url-fetch)
4865 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
4866 "MooseX-MarkAsMethods-" version ".tar.gz"))
4867 (sha256
4868 (base32
4869 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
4870 (build-system perl-build-system)
4871 (inputs
4872 `(("perl-moose" ,perl-moose)
4873 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4874 (home-page "http://search.cpan.org/dist/MooseX-MarkAsMethods")
4875 (synopsis "Mark overload code symbols as methods")
4876 (description "MooseX::MarkAsMethods allows one to easily mark certain
4877 functions as Moose methods. This will allow other packages such as
4878 namespace::autoclean to operate without blowing away your overloads. After
4879 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
4880 being methods, and class extension as well as composition from roles with
4881 overloads will \"just work\".")
4882 (license lgpl2.1)))
4883
4884 (define-public perl-moosex-methodattributes
4885 (package
4886 (name "perl-moosex-methodattributes")
4887 (version "0.29")
4888 (source
4889 (origin
4890 (method url-fetch)
4891 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4892 "MooseX-MethodAttributes-" version ".tar.gz"))
4893 (sha256
4894 (base32
4895 "1pz3i67gadfmgzj87m1xp2ilcg3yhppdylcng2h6c11dy0a06hdk"))))
4896 (build-system perl-build-system)
4897 (native-inputs
4898 `(("perl-module-build-tiny" ,perl-module-build-tiny)
4899 ("perl-test-fatal" ,perl-test-fatal)
4900 ("perl-test-requires" ,perl-test-requires)))
4901 (propagated-inputs
4902 `(("perl-moose" ,perl-moose)
4903 ("perl-moosex-types" ,perl-moosex-types)
4904 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4905 (home-page "http://search.cpan.org/dist/MooseX-MethodAttributes")
4906 (synopsis "Code attribute introspection")
4907 (description "This module allows code attributes of methods to be
4908 introspected using Moose meta method objects.")
4909 (license (package-license perl))))
4910
4911 (define-public perl-moosex-nonmoose
4912 (package
4913 (name "perl-moosex-nonmoose")
4914 (version "0.26")
4915 (source
4916 (origin
4917 (method url-fetch)
4918 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4919 "MooseX-NonMoose-" version ".tar.gz"))
4920 (sha256
4921 (base32
4922 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
4923 (build-system perl-build-system)
4924 (native-inputs
4925 `(("perl-moose" ,perl-moose)
4926 ("perl-test-fatal" ,perl-test-fatal)))
4927 (propagated-inputs
4928 `(("perl-list-moreutils" ,perl-list-moreutils)
4929 ("perl-module-runtime" ,perl-module-runtime)
4930 ("perl-moose" ,perl-moose)
4931 ("perl-try-tiny" ,perl-try-tiny)))
4932 (home-page "http://search.cpan.org/dist/MooseX-NonMoose")
4933 (synopsis "Subclassing of non-Moose classes")
4934 (description "MooseX::NonMoose allows for easily subclassing non-Moose
4935 classes with Moose, taking care of the details connected with doing this, such
4936 as setting up proper inheritance from Moose::Object and installing (and
4937 inlining, at make_immutable time) a constructor that makes sure things like
4938 BUILD methods are called. It tries to be as non-intrusive as possible.")
4939 (license (package-license perl))))
4940
4941 (define-public perl-moosex-params-validate
4942 (package
4943 (name "perl-moosex-params-validate")
4944 (version "0.19")
4945 (source
4946 (origin
4947 (method url-fetch)
4948 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4949 "MooseX-Params-Validate-" version ".tar.gz"))
4950 (sha256
4951 (base32
4952 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
4953 (build-system perl-build-system)
4954 (native-inputs
4955 `(("perl-moose" ,perl-moose)
4956 ("perl-test-fatal" ,perl-test-fatal)))
4957 (propagated-inputs
4958 `(("perl-devel-caller" ,perl-devel-caller)
4959 ("perl-moose" ,perl-moose)
4960 ("perl-params-validate" ,perl-params-validate)
4961 ("perl-sub-exporter" ,perl-sub-exporter)))
4962 (home-page "http://search.cpan.org/dist/MooseX-Params-Validate")
4963 (synopsis "Extension of Params::Validate using Moose's types")
4964 (description "This module fills a gap in Moose by adding method parameter
4965 validation to Moose.")
4966 (license (package-license perl))))
4967
4968 (define-public perl-moosex-relatedclassroles
4969 (package
4970 (name "perl-moosex-relatedclassroles")
4971 (version "0.004")
4972 (source
4973 (origin
4974 (method url-fetch)
4975 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
4976 "MooseX-RelatedClassRoles-" version ".tar.gz"))
4977 (sha256
4978 (base32
4979 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
4980 (build-system perl-build-system)
4981 (propagated-inputs
4982 `(("perl-moose" ,perl-moose)
4983 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
4984 (home-page "http://search.cpan.org/dist/MooseX-RelatedClassRoles")
4985 (synopsis "Apply roles to a related Perl class")
4986 (description "This module applies roles to make a subclass instead of
4987 manually setting up a subclass.")
4988 (license (package-license perl))))
4989
4990 (define-public perl-moosex-role-parameterized
4991 (package
4992 (name "perl-moosex-role-parameterized")
4993 (version "1.08")
4994 (source
4995 (origin
4996 (method url-fetch)
4997 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4998 "MooseX-Role-Parameterized-" version ".tar.gz"))
4999 (sha256
5000 (base32
5001 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
5002 (build-system perl-build-system)
5003 (native-inputs
5004 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5005 ("perl-module-build" ,perl-module-build)
5006 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
5007 ("perl-test-fatal" ,perl-test-fatal)
5008 ("perl-test-requires" ,perl-test-requires)))
5009 (propagated-inputs
5010 `(("perl-moose" ,perl-moose)
5011 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5012 (home-page "http://search.cpan.org/dist/MooseX-Role-Parameterized")
5013 (synopsis "Moose roles with composition parameters")
5014 (description "Because Moose roles serve many different masters, they
5015 usually provide only the least common denominator of functionality. To
5016 empower roles further, more configurability than -alias and -excludes is
5017 required. Perhaps your role needs to know which method to call when it is
5018 done processing, or what default value to use for its url attribute.
5019 Parameterized roles offer a solution to these (and other) kinds of problems.")
5020 (license (package-license perl))))
5021
5022 (define-public perl-moosex-role-withoverloading
5023 (package
5024 (name "perl-moosex-role-withoverloading")
5025 (version "0.16")
5026 (source
5027 (origin
5028 (method url-fetch)
5029 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5030 "MooseX-Role-WithOverloading-" version ".tar.gz"))
5031 (sha256
5032 (base32
5033 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
5034 (build-system perl-build-system)
5035 (propagated-inputs
5036 `(("perl-aliased" ,perl-aliased)
5037 ("perl-moose" ,perl-moose)
5038 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5039 (home-page "http://search.cpan.org/dist/MooseX-Role-WithOverloading")
5040 (synopsis "Roles which support overloading")
5041 (description "MooseX::Role::WithOverloading allows you to write a
5042 Moose::Role which defines overloaded operators and allows those overload
5043 methods to be composed into the classes/roles/instances it's compiled to,
5044 where plain Moose::Roles would lose the overloading.")
5045 (license (package-license perl))))
5046
5047 (define-public perl-moosex-semiaffordanceaccessor
5048 (package
5049 (name "perl-moosex-semiaffordanceaccessor")
5050 (version "0.10")
5051 (source
5052 (origin
5053 (method url-fetch)
5054 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5055 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
5056 (sha256
5057 (base32
5058 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
5059 (build-system perl-build-system)
5060 (propagated-inputs
5061 `(("perl-moose" ,perl-moose)))
5062 (home-page "http://search.cpan.org/dist/MooseX-SemiAffordanceAccessor")
5063 (synopsis "Name your accessors foo() and set_foo()")
5064 (description "This module does not provide any methods. Simply loading it
5065 changes the default naming policy for the loading class so that accessors are
5066 separated into get and set methods. The get methods have the same name as the
5067 accessor, while set methods are prefixed with \"_set_\".")
5068 (license artistic2.0)))
5069
5070 (define-public perl-moosex-strictconstructor
5071 (package
5072 (name "perl-moosex-strictconstructor")
5073 (version "0.19")
5074 (source
5075 (origin
5076 (method url-fetch)
5077 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5078 "MooseX-StrictConstructor-" version ".tar.gz"))
5079 (sha256
5080 (base32
5081 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
5082 (build-system perl-build-system)
5083 (native-inputs
5084 `(("perl-moose" ,perl-moose)
5085 ("perl-test-fatal" ,perl-test-fatal)))
5086 (propagated-inputs
5087 `(("perl-moose" ,perl-moose)
5088 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5089 (home-page "http://search.cpan.org/dist/MooseX-StrictConstructor")
5090 (synopsis "Strict object constructors for Moose")
5091 (description "Simply loading this module makes your constructors
5092 \"strict\". If your constructor is called with an attribute init argument
5093 that your class does not declare, then it calls Moose->throw_error().")
5094 (license artistic2.0)))
5095
5096 (define-public perl-moosex-traits-pluggable
5097 (package
5098 (name "perl-moosex-traits-pluggable")
5099 (version "0.12")
5100 (source
5101 (origin
5102 (method url-fetch)
5103 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
5104 "MooseX-Traits-Pluggable-" version ".tar.gz"))
5105 (sha256
5106 (base32
5107 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
5108 (build-system perl-build-system)
5109 (native-inputs
5110 `(("perl-moose" ,perl-moose)
5111 ("perl-test-exception" ,perl-test-exception)))
5112 (propagated-inputs
5113 `(("perl-class-load" ,perl-class-load)
5114 ("perl-list-moreutils" ,perl-list-moreutils)
5115 ("perl-moose" ,perl-moose)
5116 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5117 (home-page
5118 "http://search.cpan.org/dist/MooseX-Traits-Pluggable")
5119 (synopsis "Trait loading and resolution for Moose")
5120 (description "Adds support on top of MooseX::Traits for class precedence
5121 search for traits and some extra attributes.")
5122 (license (package-license perl))))
5123
5124 (define-public perl-moosex-types
5125 (package
5126 (name "perl-moosex-types")
5127 (version "0.45")
5128 (source
5129 (origin
5130 (method url-fetch)
5131 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5132 "MooseX-Types-" version ".tar.gz"))
5133 (sha256
5134 (base32
5135 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
5136 (build-system perl-build-system)
5137 (native-inputs
5138 `(("perl-module-build" ,perl-module-build)
5139 ("perl-test-fatal" ,perl-test-fatal)
5140 ("perl-test-requires" ,perl-test-requires)))
5141 (propagated-inputs
5142 `(("perl-carp-clan" ,perl-carp-clan)
5143 ("perl-moose" ,perl-moose)
5144 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5145 (home-page "http://search.cpan.org/dist/MooseX-Types")
5146 (synopsis "Organise your Moose types in libraries")
5147 (description "This package lets you declare types using short names, but
5148 behind the scenes it namespaces all your type declarations, effectively
5149 prevent name clashes between packages.")
5150 (license (package-license perl))))
5151
5152 (define-public perl-moosex-types-datetime
5153 (package
5154 (name "perl-moosex-types-datetime")
5155 (version "0.13")
5156 (source
5157 (origin
5158 (method url-fetch)
5159 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5160 "MooseX-Types-DateTime-" version ".tar.gz"))
5161 (sha256
5162 (base32
5163 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
5164 (build-system perl-build-system)
5165 (native-inputs
5166 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5167 ("perl-moose" ,perl-moose)
5168 ("perl-test-fatal" ,perl-test-fatal)
5169 ("perl-test-simple" ,perl-test-simple)))
5170 (propagated-inputs
5171 `(("perl-datetime" ,perl-datetime)
5172 ("perl-datetime-locale" ,perl-datetime-locale)
5173 ("perl-datetime-timezone" ,perl-datetime-timezone)
5174 ("perl-moose" ,perl-moose)
5175 ("perl-moosex-types" ,perl-moosex-types)
5176 ("perl-namespace-clean" ,perl-namespace-clean)))
5177 (home-page "http://search.cpan.org/dist/MooseX-Types-DateTime")
5178 (synopsis "DateTime related constraints and coercions for Moose")
5179 (description "This module packages several Moose::Util::TypeConstraints
5180 with coercions, designed to work with the DateTime suite of objects.")
5181 (license (package-license perl))))
5182
5183 (define-public perl-moosex-types-datetime-morecoercions
5184 (package
5185 (name "perl-moosex-types-datetime-morecoercions")
5186 (version "0.14")
5187 (source
5188 (origin
5189 (method url-fetch)
5190 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5191 "MooseX-Types-DateTime-MoreCoercions-"
5192 version ".tar.gz"))
5193 (sha256
5194 (base32
5195 "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
5196 (build-system perl-build-system)
5197 (native-inputs
5198 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5199 ("perl-test-fatal" ,perl-test-fatal)
5200 ("perl-test-simple" ,perl-test-simple)))
5201 (propagated-inputs
5202 `(("perl-datetime" ,perl-datetime)
5203 ("perl-datetimex-easy" ,perl-datetimex-easy)
5204 ("perl-moose" ,perl-moose)
5205 ("perl-moosex-types" ,perl-moosex-types)
5206 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
5207 ("perl-namespace-clean" ,perl-namespace-clean)
5208 ("perl-time-duration-parse" ,perl-time-duration-parse)))
5209 (home-page
5210 "http://search.cpan.org/dist/MooseX-Types-DateTime-MoreCoercions")
5211 (synopsis "Extensions to MooseX::Types::DateTime")
5212 (description "This module builds on MooseX::Types::DateTime to add
5213 additional custom types and coercions. Since it builds on an existing type,
5214 all coercions and constraints are inherited.")
5215 (license (package-license perl))))
5216
5217 (define-public perl-moosex-types-loadableclass
5218 (package
5219 (name "perl-moosex-types-loadableclass")
5220 (version "0.013")
5221 (source
5222 (origin
5223 (method url-fetch)
5224 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5225 "MooseX-Types-LoadableClass-" version ".tar.gz"))
5226 (sha256
5227 (base32
5228 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
5229 (build-system perl-build-system)
5230 (native-inputs
5231 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5232 ("perl-namespace-clean" ,perl-namespace-clean)
5233 ("perl-moose" ,perl-moose)
5234 ("perl-test-fatal" ,perl-test-fatal)
5235 ("perl-class-load" ,perl-class-load)))
5236 (propagated-inputs
5237 `(("perl-module-runtime" ,perl-module-runtime)
5238 ("perl-moosex-types" ,perl-moosex-types)
5239 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5240 (home-page "http://search.cpan.org/dist/MooseX-Types-LoadableClass")
5241 (synopsis "ClassName type constraints for Moose")
5242 (description "MooseX::Types::LoadableClass provides a ClassName type
5243 constraint with coercion to load the class.")
5244 (license (package-license perl))))
5245
5246 (define-public perl-moox
5247 (package
5248 (name "perl-moox")
5249 (version "0.101")
5250 (source
5251 (origin
5252 (method url-fetch)
5253 (uri (string-append
5254 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
5255 version
5256 ".tar.gz"))
5257 (sha256
5258 (base32
5259 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
5260 (build-system perl-build-system)
5261 (inputs
5262 `(("perl-data-optlist" ,perl-data-optlist)
5263 ("perl-import-into" ,perl-import-into)
5264 ("perl-module-runtime" ,perl-module-runtime)
5265 ("perl-moo" ,perl-moo)))
5266 (home-page "http://search.cpan.org/dist/MooX")
5267 (synopsis
5268 "Using Moo and MooX:: packages the most lazy way")
5269 (description "Contains the MooX and MooX::Role packages.")
5270 (license perl-license)))
5271
5272 (define-public perl-moox-handlesvia
5273 (package
5274 (name "perl-moox-handlesvia")
5275 (version "0.001008")
5276 (source
5277 (origin
5278 (method url-fetch)
5279 (uri (string-append
5280 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
5281 version
5282 ".tar.gz"))
5283 (sha256
5284 (base32
5285 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
5286 (build-system perl-build-system)
5287 (native-inputs
5288 `(("perl-moox-types-mooselike"
5289 ,perl-moox-types-mooselike)
5290 ("perl-test-exception" ,perl-test-exception)
5291 ("perl-test-fatal" ,perl-test-fatal)))
5292 (inputs
5293 `(("perl-class-method-modifiers"
5294 ,perl-class-method-modifiers)
5295 ("perl-module-runtime" ,perl-module-runtime)
5296 ("perl-moo" ,perl-moo)
5297 ("perl-role-tiny" ,perl-role-tiny)))
5298 (propagated-inputs
5299 `(("perl-data-perl" ,perl-data-perl)))
5300 (home-page
5301 "http://search.cpan.org/dist/MooX-HandlesVia")
5302 (synopsis "NativeTrait-like behavior for Moo")
5303 (description
5304 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
5305 attribute functionality. It provides a means of proxying functionality from
5306 an external class to the given atttribute.")
5307 (license perl-license)))
5308
5309 (define-public perl-moox-late
5310 (package
5311 (name "perl-moox-late")
5312 (version "0.015")
5313 (source
5314 (origin
5315 (method url-fetch)
5316 (uri (string-append
5317 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
5318 version
5319 ".tar.gz"))
5320 (sha256
5321 (base32
5322 "1gzvd9zws3v09sh0xx6srmw4jwi22fnrya4zcsc8dykn62pjclqp"))))
5323 (build-system perl-build-system)
5324 (native-inputs
5325 `(("perl-test-fatal" ,perl-test-fatal)
5326 ("perl-test-requires" ,perl-test-requires)))
5327 (inputs
5328 `(("perl-moo" ,perl-moo)
5329 ("perl-moox" ,perl-moox)
5330 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
5331 (propagated-inputs
5332 `(("perl-type-tiny" ,perl-type-tiny)))
5333 (home-page
5334 "http://search.cpan.org/dist/MooX-late")
5335 (synopsis "Easily translate Moose code to Moo")
5336 (description
5337 "MooX::late does the following:
5338 @enumerate
5339 @item Supports isa => $stringytype
5340 @item Supports does => $rolename
5341 @item Supports lazy_build => 1
5342 @item Exports blessed and confess functions to your namespace.
5343 @item Handles certain attribute traits
5344 Currently Hash, Array and Code are supported. This feature requires
5345 MooX::HandlesVia.
5346 @end enumerate")
5347 (license perl-license)))
5348
5349 (define-public perl-moox-types-mooselike
5350 (package
5351 (name "perl-moox-types-mooselike")
5352 (version "0.28")
5353 (source
5354 (origin
5355 (method url-fetch)
5356 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
5357 "MooX-Types-MooseLike-" version ".tar.gz"))
5358 (sha256
5359 (base32
5360 "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
5361 (build-system perl-build-system)
5362 (native-inputs
5363 `(("perl-moo" ,perl-moo)
5364 ("perl-test-fatal" ,perl-test-fatal)))
5365 (propagated-inputs
5366 `(("perl-module-runtime" ,perl-module-runtime)
5367 ("perl-strictures" ,perl-strictures)))
5368 (home-page "http://search.cpan.org/dist/MooX-Types-MooseLike")
5369 (synopsis "Moosish types and type builder")
5370 (description "MooX::Types::MooseLike provides a possibility to build your
5371 own set of Moose-like types. These custom types can then be used to describe
5372 fields in Moo-based classes.")
5373 (license (package-license perl))))
5374
5375 (define-public perl-mouse
5376 (package
5377 (name "perl-mouse")
5378 (version "2.4.9")
5379 (source (origin
5380 (method url-fetch)
5381 (uri (string-append
5382 "mirror://cpan/authors/id/S/SY/SYOHEX/Mouse-v"
5383 version
5384 ".tar.gz"))
5385 (sha256
5386 (base32
5387 "1y20sl97x1h4y1iid47hj0w1hb2887dchh4nfffgmqpyggkslh4n"))))
5388 (build-system perl-build-system)
5389 (native-inputs
5390 `(("perl-module-build" ,perl-module-build)
5391 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
5392 ("perl-test-exception" ,perl-test-exception)
5393 ("perl-test-fatal" ,perl-test-fatal)
5394 ("perl-test-leaktrace" ,perl-test-leaktrace)
5395 ("perl-test-output" ,perl-test-output)
5396 ("perl-test-requires" ,perl-test-requires)
5397 ("perl-try-tiny" ,perl-try-tiny)))
5398 (home-page "https://github.com/gfx/p5-Mouse")
5399 (synopsis "Fast Moose-compatible object system for perl5")
5400 (description
5401 "Mouse is a @code{Moose} compatible object system that implements a
5402 subset of the functionality for reduced startup time.")
5403 (license (package-license perl))))
5404
5405 (define-public perl-mousex-nativetraits
5406 (package
5407 (name "perl-mousex-nativetraits")
5408 (version "1.09")
5409 (source (origin
5410 (method url-fetch)
5411 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
5412 "MouseX-NativeTraits-" version ".tar.gz"))
5413 (sha256
5414 (base32
5415 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
5416 (build-system perl-build-system)
5417 (native-inputs
5418 `(("perl-any-moose" ,perl-any-moose)
5419 ("perl-module-install" ,perl-module-install)
5420 ("perl-test-fatal" ,perl-test-fatal)))
5421 (propagated-inputs
5422 `(("perl-mouse" ,perl-mouse)))
5423 (home-page "http://search.cpan.org/dist/MouseX-NativeTraits")
5424 (synopsis "Extend attribute interfaces for Mouse")
5425 (description
5426 "While @code{Mouse} attributes provide a way to name your accessors,
5427 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
5428 provides commonly used attribute helper methods for more specific types
5429 of data.")
5430 (license (package-license perl))))
5431
5432 (define-public perl-mozilla-ca
5433 (package
5434 (name "perl-mozilla-ca")
5435 (version "20160104")
5436 (source
5437 (origin
5438 (method url-fetch)
5439 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
5440 version ".tar.gz"))
5441 (sha256
5442 (base32
5443 "0aizn08lrdrgjz9vagkjmw2c7sxn46fzz521v9dbcqii4jd0d9r7"))))
5444 (build-system perl-build-system)
5445 (home-page "http://search.cpan.org/dist/Mozilla-CA")
5446 (synopsis "Mozilla's CA cert bundle in PEM format")
5447 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
5448 Certificate Authority certificates in a form that can be consumed by modules
5449 and libraries based on OpenSSL.")
5450 (license mpl2.0)))
5451
5452 (define-public perl-mro-compat
5453 (package
5454 (name "perl-mro-compat")
5455 (version "0.13")
5456 (source
5457 (origin
5458 (method url-fetch)
5459 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5460 "MRO-Compat-" version ".tar.gz"))
5461 (sha256
5462 (base32
5463 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
5464 (build-system perl-build-system)
5465 (home-page "http://search.cpan.org/dist/MRO-Compat")
5466 (synopsis "MRO interface compatibility for Perls < 5.9.5")
5467 (description "The \"mro\" namespace provides several utilities for dealing
5468 with method resolution order and method caching in general in Perl 5.9.5 and
5469 higher. This module provides those interfaces for earlier versions of
5470 Perl (back to 5.6.0).")
5471 (license (package-license perl))))
5472
5473 (define-public perl-namespace-autoclean
5474 (package
5475 (name "perl-namespace-autoclean")
5476 (version "0.28")
5477 (source
5478 (origin
5479 (method url-fetch)
5480 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5481 "namespace-autoclean-" version ".tar.gz"))
5482 (sha256
5483 (base32
5484 "0fbcq99yaix1aa99jl3v811dbw24il9jxnh5i2i23mddh4b0lhfd"))))
5485 (build-system perl-build-system)
5486 (native-inputs
5487 `(("perl-module-build" ,perl-module-build)
5488 ("perl-test-requires" ,perl-test-requires)))
5489 (propagated-inputs
5490 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
5491 ("perl-namespace-clean" ,perl-namespace-clean)
5492 ("perl-sub-identify" ,perl-sub-identify)))
5493 (home-page "http://search.cpan.org/dist/namespace-autoclean")
5494 (synopsis "Keep imports out of your namespace")
5495 (description "The namespace::autoclean pragma will remove all imported
5496 symbols at the end of the current package's compile cycle. Functions called
5497 in the package itself will still be bound by their name, but they won't show
5498 up as methods on your class or instances. It is very similar to
5499 namespace::clean, except it will clean all imported functions, no matter if
5500 you imported them before or after you used the pragma. It will also not touch
5501 anything that looks like a method.")
5502 (license (package-license perl))))
5503
5504 (define-public perl-namespace-clean
5505 (package
5506 (name "perl-namespace-clean")
5507 (version "0.25")
5508 (source
5509 (origin
5510 (method url-fetch)
5511 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
5512 "namespace-clean-" version ".tar.gz"))
5513 (sha256
5514 (base32
5515 "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
5516 (build-system perl-build-system)
5517 (propagated-inputs
5518 `(("perl-package-stash" ,perl-package-stash)
5519 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
5520 (home-page "http://search.cpan.org/dist/namespace-clean")
5521 (synopsis "Keep imports and functions out of your namespace")
5522 (description "The namespace::clean pragma will remove all previously
5523 declared or imported symbols at the end of the current package's compile
5524 cycle. Functions called in the package itself will still be bound by their
5525 name, but they won't show up as methods on your class or instances.")
5526 (license (package-license perl))))
5527
5528 (define-public perl-net-idn-encode
5529 (package
5530 (name "perl-net-idn-encode")
5531 (version "2.400")
5532 (source
5533 (origin
5534 (method url-fetch)
5535 (uri (string-append
5536 "mirror://cpan/authors/id/C/CF/CFAERBER/Net-IDN-Encode-"
5537 version
5538 ".tar.gz"))
5539 (sha256
5540 (base32
5541 "0a9knav5f9kjldrkxx1k47ivd3p23zkmi8aqgyhnxidhgasz1dlq"))))
5542 (build-system perl-build-system)
5543 (native-inputs
5544 `(("perl-module-build" ,perl-module-build)
5545 ("perl-test-nowarnings" ,perl-test-nowarnings)))
5546 (home-page
5547 "http://search.cpan.org/dist/Net-IDN-Encode")
5548 (synopsis
5549 "Internationalizing Domain Names in Applications (IDNA)")
5550 (description
5551 "Internationalized Domain Names (IDNs) use characters drawn from a large
5552 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
5553 represented using only the ASCII characters already allowed in so-called host
5554 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
5555
5556 Use this module if you just want to convert domain names (or email addresses),
5557 using whatever IDNA standard is the best choice at the moment.")
5558 (license perl-license)))
5559
5560 (define-public perl-net-statsd
5561 (package
5562 (name "perl-net-statsd")
5563 (version "0.12")
5564 (source
5565 (origin
5566 (method url-fetch)
5567 (uri (string-append
5568 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
5569 version
5570 ".tar.gz"))
5571 (sha256
5572 (base32
5573 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
5574 (build-system perl-build-system)
5575 (home-page
5576 "http://search.cpan.org/dist/Net-Statsd")
5577 (synopsis "Perl client for Etsy's statsd daemon")
5578 (description "This module implement a UDP client for the statsd statistics
5579 collector daemon in use at Etsy.com.")
5580 (license (package-license perl))))
5581
5582 (define-public perl-number-compare
5583 (package
5584 (name "perl-number-compare")
5585 (version "0.03")
5586 (source
5587 (origin
5588 (method url-fetch)
5589 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
5590 "Number-Compare-" version ".tar.gz"))
5591 (sha256
5592 (base32
5593 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
5594 (build-system perl-build-system)
5595 (home-page "http://search.cpan.org/dist/Number-Compare")
5596 (synopsis "Numeric comparisons")
5597 (description "Number::Compare compiles a simple comparison to an anonymous
5598 subroutine, which you can call with a value to be tested against.")
5599 (license (package-license perl))))
5600
5601 (define-public perl-object-signature
5602 (package
5603 (name "perl-object-signature")
5604 (version "1.07")
5605 (source
5606 (origin
5607 (method url-fetch)
5608 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
5609 "Object-Signature-" version ".tar.gz"))
5610 (sha256
5611 (base32
5612 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
5613 (build-system perl-build-system)
5614 (native-inputs
5615 `(("perl-module-install" ,perl-module-install)))
5616 (home-page "http://search.cpan.org/dist/Object-Signature")
5617 (synopsis "Generate cryptographic signatures for objects")
5618 (description "Object::Signature is an abstract base class that you can
5619 inherit from in order to allow your objects to generate unique cryptographic
5620 signatures.")
5621 (license (package-license perl))))
5622
5623 (define-public perl-ole-storage-lite
5624 (package
5625 (name "perl-ole-storage-lite")
5626 (version "0.19")
5627 (source
5628 (origin
5629 (method url-fetch)
5630 (uri (string-append
5631 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
5632 version
5633 ".tar.gz"))
5634 (sha256
5635 (base32
5636 "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"))))
5637 (build-system perl-build-system)
5638 (home-page "http://search.cpan.org/dist/OLE-Storage_Lite")
5639 (synopsis "Read and write OLE storage files")
5640 (description "This module allows you to read and write
5641 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
5642 technology to store hierarchical information such as links to other
5643 documents within a single file.")
5644 (license (package-license perl))))
5645
5646 (define-public perl-package-anon
5647 (package
5648 (name "perl-package-anon")
5649 (version "0.05")
5650 (source
5651 (origin
5652 (method url-fetch)
5653 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
5654 "Package-Anon-" version ".tar.gz"))
5655 (sha256
5656 (base32
5657 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
5658 (build-system perl-build-system)
5659 (propagated-inputs
5660 `(("perl-sub-exporter" ,perl-sub-exporter)
5661 ("perl-params-util" ,perl-params-util)))
5662 (home-page "http://search.cpan.org/dist/Package-Anon")
5663 (synopsis "Anonymous packages")
5664 (description "This module allows for anonymous packages that are
5665 independent of the main namespace and only available through an object
5666 instance, not by name.")
5667 (license (package-license perl))))
5668
5669 (define-public perl-package-deprecationmanager
5670 (package
5671 (name "perl-package-deprecationmanager")
5672 (version "0.17")
5673 (source
5674 (origin
5675 (method url-fetch)
5676 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5677 "Package-DeprecationManager-" version ".tar.gz"))
5678 (sha256
5679 (base32
5680 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
5681 (build-system perl-build-system)
5682 (native-inputs
5683 `(("perl-test-fatal" ,perl-test-fatal)
5684 ("perl-test-requires" ,perl-test-requires)
5685 ("perl-test-output" ,perl-test-output)))
5686 (propagated-inputs
5687 `(("perl-list-moreutils" ,perl-list-moreutils)
5688 ("perl-params-util" ,perl-params-util)
5689 ("perl-sub-install" ,perl-sub-install)))
5690 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
5691 (home-page "http://search.cpan.org/dist/Package-DeprecationManager")
5692 (synopsis "Manage deprecation warnings for your distribution")
5693 (description "This module allows you to manage a set of deprecations for
5694 one or more modules.")
5695 (license artistic2.0)))
5696
5697 (define-public perl-package-stash
5698 (package
5699 (name "perl-package-stash")
5700 (version "0.37")
5701 (source
5702 (origin
5703 (method url-fetch)
5704 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5705 "Package-Stash-" version ".tar.gz"))
5706 (sha256
5707 (base32
5708 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
5709 (build-system perl-build-system)
5710 (native-inputs
5711 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5712 ("perl-test-fatal" ,perl-test-fatal)
5713 ("perl-test-requires" ,perl-test-requires)
5714 ("perl-package-anon" ,perl-package-anon)))
5715 (propagated-inputs
5716 `(("perl-module-implementation" ,perl-module-implementation)
5717 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5718 ("perl-package-stash-xs" ,perl-package-stash-xs)))
5719 (home-page "http://search.cpan.org/dist/Package-Stash")
5720 (synopsis "Routines for manipulating stashes")
5721 (description "Manipulating stashes (Perl's symbol tables) is occasionally
5722 necessary, but incredibly messy, and easy to get wrong. This module hides all
5723 of that behind a simple API.")
5724 (license (package-license perl))))
5725
5726 (define-public perl-package-stash-xs
5727 (package
5728 (name "perl-package-stash-xs")
5729 (version "0.28")
5730 (source
5731 (origin
5732 (method url-fetch)
5733 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5734 "Package-Stash-XS-" version ".tar.gz"))
5735 (sha256
5736 (base32
5737 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
5738 (build-system perl-build-system)
5739 (native-inputs
5740 `(("perl-test-fatal" ,perl-test-fatal)
5741 ("perl-test-requires" ,perl-test-requires)
5742 ("perl-package-anon" ,perl-package-anon)))
5743 (home-page "http://search.cpan.org/dist/Package-Stash-XS")
5744 (synopsis "Faster implementation of the Package::Stash API")
5745 (description "This is a backend for Package::Stash, which provides the
5746 functionality in a way that's less buggy and much faster. It will be used by
5747 default if it's installed, and should be preferred in all environments with a
5748 compiler.")
5749 (license (package-license perl))))
5750
5751 (define-public perl-padwalker
5752 (package
5753 (name "perl-padwalker")
5754 (version "2.0")
5755 (source
5756 (origin
5757 (method url-fetch)
5758 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
5759 "PadWalker-" version ".tar.gz"))
5760 (sha256
5761 (base32
5762 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
5763 (build-system perl-build-system)
5764 (home-page "http://search.cpan.org/dist/PadWalker")
5765 (synopsis "Play with other peoples' lexical variables")
5766 (description "PadWalker is a module which allows you to inspect (and even
5767 change) lexical variables in any subroutine which called you. It will only
5768 show those variables which are in scope at the point of the call. PadWalker
5769 is particularly useful for debugging.")
5770 (license (package-license perl))))
5771
5772 (define-public perl-parallel-forkmanager
5773 (package
5774 (name "perl-parallel-forkmanager")
5775 (version "1.19")
5776 (source
5777 (origin
5778 (method url-fetch)
5779 (uri (string-append
5780 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
5781 version
5782 ".tar.gz"))
5783 (sha256
5784 (base32
5785 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
5786 (build-system perl-build-system)
5787 (native-inputs
5788 `(("perl-test-warn" ,perl-test-warn)))
5789 (home-page "http://search.cpan.org/dist/Parallel-ForkManager")
5790 (synopsis "Simple parallel processing fork manager")
5791 (description "@code{Parallel::ForkManager} is intended for use in
5792 operations that can be done in parallel where the number of
5793 processes to be forked off should be limited.")
5794 (license (package-license perl))))
5795
5796 (define-public perl-params-util
5797 (package
5798 (name "perl-params-util")
5799 (version "1.07")
5800 (source
5801 (origin
5802 (method url-fetch)
5803 (uri (string-append
5804 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
5805 version ".tar.gz"))
5806 (sha256
5807 (base32
5808 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
5809 (build-system perl-build-system)
5810 (home-page "http://search.cpan.org/dist/Params-Util")
5811 (synopsis "Simple, compact and correct param-checking functions")
5812 (description
5813 "Params::Util provides a basic set of importable functions that makes
5814 checking parameters easier.")
5815 (license (package-license perl))))
5816
5817 (define-public perl-params-validate
5818 (package
5819 (name "perl-params-validate")
5820 (version "1.26")
5821 (source
5822 (origin
5823 (method url-fetch)
5824 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5825 "Params-Validate-" version ".tar.gz"))
5826 (sha256
5827 (base32
5828 "1vbj78qd46ip09i06dsbb62jfwpzp4bg7yi617v98nvim77w66l2"))))
5829 (build-system perl-build-system)
5830 (native-inputs
5831 `(("perl-module-build" ,perl-module-build)
5832 ("perl-test-fatal" ,perl-test-fatal)
5833 ("perl-test-requires" ,perl-test-requires)))
5834 (propagated-inputs
5835 `(("perl-module-implementation" ,perl-module-implementation)))
5836 (home-page "http://search.cpan.org/dist/Params-Validate")
5837 (synopsis "Validate method/function parameters")
5838 (description "The Params::Validate module allows you to validate method or
5839 function call parameters to an arbitrary level of specificity.")
5840 (license artistic2.0)))
5841
5842 (define-public perl-params-validationcompiler
5843 (package
5844 (name "perl-params-validationcompiler")
5845 (version "0.24")
5846 (source
5847 (origin
5848 (method url-fetch)
5849 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5850 "Params-ValidationCompiler-" version ".tar.gz"))
5851 (sha256
5852 (base32
5853 "11s29wd7gci4c7gcksxw7pzxfzganvr8x4f1dsww4676p93kg5m8"))))
5854 (build-system perl-build-system)
5855 (native-inputs
5856 `(("perl-test-without-module" ,perl-test-without-module)
5857 ("perl-test2-bundle-extended" ,perl-test2-bundle-extended)
5858 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)))
5859 (propagated-inputs
5860 `(("perl-eval-closure" ,perl-eval-closure)
5861 ("perl-exception-class" ,perl-exception-class)
5862 ("perl-specio" ,perl-specio)))
5863 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
5864 (synopsis "Build an optimized subroutine parameter validator")
5865 (description "This module creates a customized, highly efficient
5866 parameter checking subroutine. It can handle named or positional
5867 parameters, and can return the parameters as key/value pairs or a list
5868 of values. In addition to type checks, it also supports parameter
5869 defaults, optional parameters, and extra \"slurpy\" parameters.")
5870 (license artistic2.0)))
5871
5872 (define-public perl-par-dist
5873 (package
5874 (name "perl-par-dist")
5875 (version "0.49")
5876 (source
5877 (origin
5878 (method url-fetch)
5879 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5880 "PAR-Dist-" version ".tar.gz"))
5881 (sha256
5882 (base32
5883 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
5884 (build-system perl-build-system)
5885 (home-page "http://search.cpan.org/dist/PAR-Dist")
5886 (synopsis "Create and manipulate PAR distributions")
5887 (description "PAR::Dist is a toolkit to create and manipulate PAR
5888 distributions.")
5889 (license (package-license perl))))
5890
5891 (define-public perl-parent
5892 (package
5893 (name "perl-parent")
5894 (version "0.228")
5895 (source
5896 (origin
5897 (method url-fetch)
5898 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
5899 "parent-" version ".tar.gz"))
5900 (sha256
5901 (base32
5902 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
5903 (build-system perl-build-system)
5904 (home-page "http://search.cpan.org/dist/parent")
5905 (synopsis "Establish an ISA relationship with base classes at compile time")
5906 (description "Allows you to both load one or more modules, while setting
5907 up inheritance from those modules at the same time.")
5908 (license (package-license perl))))
5909
5910 (define-public perl-path-class
5911 (package
5912 (name "perl-path-class")
5913 (version "0.35")
5914 (source
5915 (origin
5916 (method url-fetch)
5917 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
5918 "Path-Class-" version ".tar.gz"))
5919 (sha256
5920 (base32
5921 "1viaj8jyshcj135la0kgfgzalaw06xnbsg9h54jx09v1342v69lj"))))
5922 (build-system perl-build-system)
5923 (native-inputs `(("perl-module-build" ,perl-module-build)))
5924 (home-page "http://search.cpan.org/dist/Path-Class")
5925 (synopsis "Path specification manipulation")
5926 (description "Path::Class is a module for manipulation of file and
5927 directory specifications in a cross-platform manner.")
5928 (license (package-license perl))))
5929
5930 (define-public perl-path-tiny
5931 (package
5932 (name "perl-path-tiny")
5933 (version "0.096")
5934 (source (origin
5935 (method url-fetch)
5936 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
5937 "Path-Tiny-" version ".tar.gz"))
5938 (sha256
5939 (base32
5940 "08dmr6ijjg3dp7h9dxix0nmad0fw16c6qzs4qc0hdz500gd64sr2"))))
5941 (build-system perl-build-system)
5942 (arguments
5943 `(#:tests? #f)) ; Tests require additional test modules to be packaged
5944 ;; (native-inputs
5945 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
5946 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
5947 (inputs
5948 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
5949 (home-page "http://search.cpan.org/dist/Path-Tiny")
5950 (synopsis "File path utility")
5951 (description "This module provides a small, fast utility for working
5952 with file paths.")
5953 (license asl2.0)))
5954
5955 (define-public perl-perlio-utf8_strict
5956 (package
5957 (name "perl-perlio-utf8-strict")
5958 (version "0.006")
5959 (source (origin
5960 (method url-fetch)
5961 (uri (string-append
5962 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
5963 version ".tar.gz"))
5964 (sha256
5965 (base32
5966 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
5967 (build-system perl-build-system)
5968 (native-inputs
5969 `(("perl-test-exception" ,perl-test-exception)))
5970 (home-page
5971 "http://search.cpan.org/dist/PerlIO-utf8_strict")
5972 (synopsis "Fast and correct UTF-8 IO")
5973 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
5974 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
5975 for correctness.")
5976 (license (package-license perl))))
5977
5978 (define-public perl-pod-coverage
5979 (package
5980 (name "perl-pod-coverage")
5981 (version "0.23")
5982 (source
5983 (origin
5984 (method url-fetch)
5985 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
5986 "Pod-Coverage-" version ".tar.gz"))
5987 (sha256
5988 (base32
5989 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
5990 (build-system perl-build-system)
5991 (propagated-inputs
5992 `(("perl-devel-symdump" ,perl-devel-symdump)))
5993 (home-page "http://search.cpan.org/dist/Pod-Coverage")
5994 (synopsis "Check for comprehensive documentation of a module")
5995 (description "This module provides a mechanism for determining if the pod
5996 for a given module is comprehensive.")
5997 (license (package-license perl))))
5998
5999 (define-public perl-pod-simple
6000 (package
6001 (name "perl-pod-simple")
6002 (version "3.31")
6003 (source (origin
6004 (method url-fetch)
6005 (uri (string-append "mirror://cpan/authors/id/M/MA/MARCGREEN/"
6006 "Pod-Simple-" version ".tar.gz"))
6007 (sha256
6008 (base32
6009 "04705pcs31s71vpmnpfdy8ds0q700q4cs2dlyssyrdjbvx3ymq3l"))))
6010 (build-system perl-build-system)
6011 (home-page "http://search.cpan.org/dist/Pod-Simple/")
6012 (synopsis "Parsing library for text in Pod format")
6013 (description "Pod::Simple is a Perl library for parsing text in
6014 the Pod (plain old documentation) markup language that is typically
6015 used for writing documentation for Perl and for Perl modules.")
6016 (license (package-license perl))))
6017
6018 (define-public perl-posix-strftime-compiler
6019 (package
6020 (name "perl-posix-strftime-compiler")
6021 (version "0.41")
6022 (source
6023 (origin
6024 (method url-fetch)
6025 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
6026 "POSIX-strftime-Compiler-" version ".tar.gz"))
6027 (sha256
6028 (base32
6029 "0f9p3hx0vqx8zg5v24pz0s4zc8ln100c7c91ks681wq02phqj2v7"))))
6030 (build-system perl-build-system)
6031 (native-inputs `(("perl-module-build" ,perl-module-build)))
6032 (arguments `(#:tests? #f)) ;TODO: Timezone test failures
6033 (home-page "http://search.cpan.org/dist/POSIX-strftime-Compiler")
6034 (synopsis "GNU C library compatible strftime for loggers and servers")
6035 (description "POSIX::strftime::Compiler provides GNU C library compatible
6036 strftime(3). But this module is not affected by the system locale. This
6037 feature is useful when you want to write loggers, servers, and portable
6038 applications.")
6039 (license (package-license perl))))
6040
6041 (define-public perl-probe-perl
6042 (package
6043 (name "perl-probe-perl")
6044 (version "0.03")
6045 (source (origin
6046 (method url-fetch)
6047 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
6048 "Probe-Perl-" version ".tar.gz"))
6049 (sha256
6050 (base32
6051 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
6052 (build-system perl-build-system)
6053 (synopsis "Information about the currently running perl")
6054 (description
6055 "Probe::Perl provides methods for obtaining information about the
6056 currently running perl interpreter. It originally began life as code in the
6057 Module::Build project, but has been externalized here for general use.")
6058 (home-page (string-append "http://search.cpan.org/~kwilliams/"
6059 "Probe-Perl-" version))
6060 (license (package-license perl))))
6061
6062 (define-public perl-readonly
6063 (package
6064 (name "perl-readonly")
6065 (version "2.00")
6066 (source
6067 (origin
6068 (method url-fetch)
6069 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
6070 "Readonly-" version ".tar.gz"))
6071 (sha256
6072 (base32
6073 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
6074 (build-system perl-build-system)
6075 (native-inputs `(("perl-module-build" ,perl-module-build)))
6076 (home-page "http://search.cpan.org/dist/Readonly")
6077 (synopsis "Create read-only scalars, arrays, hashes")
6078 (description "This module provides a facility for creating non-modifiable
6079 variables in Perl. This is useful for configuration files, headers, etc. It
6080 can also be useful as a development and debugging tool for catching updates to
6081 variables that should not be changed.")
6082 (license (package-license perl))))
6083
6084 (define-public perl-ref-util-xs
6085 (package
6086 (name "perl-ref-util-xs")
6087 (version "0.116")
6088 (source
6089 (origin
6090 (method url-fetch)
6091 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
6092 "Ref-Util-XS-" version ".tar.gz"))
6093 (sha256
6094 (base32
6095 "0l5dzbd71iclv8fdjk7685rq6pbfiiydh0n70br6g9l9iy2smr6f"))))
6096 (build-system perl-build-system)
6097 (home-page "http://search.cpan.org/dist/Ref-Util-XS")
6098 (synopsis "XS implementation for Ref::Util")
6099 (description "@code{Ref::Util::XS} is the XS implementation of
6100 @code{Ref::Util}, which provides several functions to help identify references
6101 in a more convenient way than the usual approach of examining the return value
6102 of @code{ref}.")
6103 (license x11)))
6104
6105 (define-public perl-regexp-common
6106 (package
6107 (name "perl-regexp-common")
6108 (version "2017060201")
6109 (source (origin
6110 (method url-fetch)
6111 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
6112 "Regexp-Common-" version ".tar.gz"))
6113 (sha256
6114 (base32
6115 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
6116 (build-system perl-build-system)
6117 (synopsis "Provide commonly requested regular expressions")
6118 (description
6119 "This module exports a single hash (`%RE') that stores or generates
6120 commonly needed regular expressions. Patterns currently provided include:
6121 balanced parentheses and brackets, delimited text (with escapes), integers and
6122 floating-point numbers in any base (up to 36), comments in 44 languages,
6123 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
6124 codes.")
6125 (home-page (string-append "http://search.cpan.org/~abigail/"
6126 "Regexp-Common-" version))
6127 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
6128 (license (list (package-license perl) x11 bsd-3))))
6129
6130 (define-public perl-regexp-util
6131 (package
6132 (name "perl-regexp-util")
6133 (version "0.003")
6134 (source
6135 (origin
6136 (method url-fetch)
6137 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
6138 "Regexp-Util-" version ".tar.gz"))
6139 (sha256
6140 (base32
6141 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
6142 (build-system perl-build-system)
6143 (home-page "http://search.cpan.org/dist/Regexp-Util")
6144 (synopsis "Selection of general-utility regexp subroutines")
6145 (description "This package provides a selection of regular expression
6146 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
6147 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
6148 and @code{deserialize_regexp}.")
6149 (license (package-license perl))))
6150
6151 (define-public perl-role-tiny
6152 (package
6153 (name "perl-role-tiny")
6154 (version "1.003004")
6155 (source
6156 (origin
6157 (method url-fetch)
6158 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6159 "Role-Tiny-" version ".tar.gz"))
6160 (sha256
6161 (base32
6162 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
6163 (build-system perl-build-system)
6164 (native-inputs
6165 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
6166 ("perl-test-fatal" ,perl-test-fatal)))
6167 (propagated-inputs
6168 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
6169 (home-page "http://search.cpan.org/dist/Role-Tiny")
6170 (synopsis "Roles, as a slice of Moose")
6171 (description "Role::Tiny is a minimalist role composition tool.")
6172 (license (package-license perl))))
6173
6174 (define-public perl-safe-isa
6175 (package
6176 (name "perl-safe-isa")
6177 (version "1.000005")
6178 (source
6179 (origin
6180 (method url-fetch)
6181 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6182 "Safe-Isa-" version ".tar.gz"))
6183 (sha256
6184 (base32
6185 "1vib54cp64dy3ic4n73skadp1pl4gn8s9qpxmzvi078dm3mpnbcw"))))
6186 (build-system perl-build-system)
6187 (home-page "http://search.cpan.org/dist/Safe-Isa")
6188 (synopsis "Call isa, can, does, and DOES safely")
6189 (description "This module allows you to call isa, can, does, and DOES
6190 safely on things that may not be objects.")
6191 (license (package-license perl))))
6192
6193 (define-public perl-scope-guard
6194 (package
6195 (name "perl-scope-guard")
6196 (version "0.20")
6197 (source
6198 (origin
6199 (method url-fetch)
6200 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
6201 "Scope-Guard-" version ".tar.gz"))
6202 (sha256
6203 (base32
6204 "1lsagnz6pli035zvx5c1x4qm9fabi773vns86yd8lzfpldhfv3sv"))))
6205 (build-system perl-build-system)
6206 (home-page "http://search.cpan.org/dist/Scope-Guard")
6207 (synopsis "Lexically-scoped resource management")
6208 (description "This module provides a convenient way to perform cleanup or
6209 other forms of resource management at the end of a scope. It is particularly
6210 useful when dealing with exceptions: the Scope::Guard constructor takes a
6211 reference to a subroutine that is guaranteed to be called even if the thread
6212 of execution is aborted prematurely. This effectively allows lexically-scoped
6213 \"promises\" to be made that are automatically honoured by perl's garbage
6214 collector.")
6215 (license (package-license perl))))
6216
6217 (define-public perl-set-infinite
6218 (package
6219 (name "perl-set-infinite")
6220 (version "0.65")
6221 (source
6222 (origin
6223 (method url-fetch)
6224 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
6225 "Set-Infinite-" version ".tar.gz"))
6226 (sha256
6227 (base32
6228 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
6229 (build-system perl-build-system)
6230 (home-page "http://search.cpan.org/dist/Set-Infinite")
6231 (synopsis "Infinite sets")
6232 (description "Set::Infinite is a set theory module for infinite sets.")
6233 (license (package-license perl))))
6234
6235 (define-public perl-set-object
6236 (package
6237 (name "perl-set-object")
6238 (version "1.35")
6239 (source
6240 (origin
6241 (method url-fetch)
6242 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
6243 "Set-Object-" version ".tar.gz"))
6244 (sha256
6245 (base32
6246 "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
6247 (build-system perl-build-system)
6248 (propagated-inputs
6249 `(("perl-moose" ,perl-moose)
6250 ("perl-test-leaktrace" ,perl-test-leaktrace)))
6251 (home-page "http://search.cpan.org/dist/Set-Object")
6252 (synopsis "Unordered collections of Perl Objects")
6253 (description "Set::Object provides efficient sets, unordered collections
6254 of Perl objects without duplicates for scalars and references.")
6255 (license artistic2.0)))
6256
6257 (define-public perl-set-scalar
6258 (package
6259 (name "perl-set-scalar")
6260 (version "1.29")
6261 (source
6262 (origin
6263 (method url-fetch)
6264 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
6265 "Set-Scalar-" version ".tar.gz"))
6266 (sha256
6267 (base32
6268 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
6269 (build-system perl-build-system)
6270 (home-page "http://search.cpan.org/dist/Set-Scalar")
6271 (synopsis "Set operations for Perl")
6272 (description "The first priority of Set::Scalar is to be a convenient
6273 interface to sets (as in: unordered collections of Perl scalars). While not
6274 designed to be slow or big, neither has it been designed to be fast or
6275 compact.")
6276 (license (package-license perl))))
6277
6278 (define-public perl-sort-key
6279 (package
6280 (name "perl-sort-key")
6281 (version "1.33")
6282 (source
6283 (origin
6284 (method url-fetch)
6285 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
6286 version ".tar.gz"))
6287 (sha256
6288 (base32
6289 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
6290 (build-system perl-build-system)
6291 (home-page "http://search.cpan.org/dist/Sort-Key")
6292 (synopsis "Sort arrays by one or multiple calculated keys")
6293 (description "This Perl module provides various functions to quickly sort
6294 arrays by one or multiple calculated keys.")
6295 (license (package-license perl))))
6296
6297 (define-public perl-specio
6298 (package
6299 (name "perl-specio")
6300 (version "0.38")
6301 (source
6302 (origin
6303 (method url-fetch)
6304 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6305 "Specio-" version ".tar.gz"))
6306 (sha256
6307 (base32
6308 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
6309 (build-system perl-build-system)
6310 (propagated-inputs
6311 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
6312 ("perl-eval-closure" ,perl-eval-closure)
6313 ("perl-module-runtime" ,perl-module-runtime)
6314 ("perl-mro-compat" ,perl-mro-compat)
6315 ("perl-role-tiny" ,perl-role-tiny)
6316 ("perl-test-fatal" ,perl-test-fatal)
6317 ("perl-test-needs" ,perl-test-needs)))
6318 (home-page "http://search.cpan.org/dist/Specio/")
6319 (synopsis "Classes for representing type constraints and coercion")
6320 (description "The Specio distribution provides classes for representing type
6321 constraints and coercion, along with syntax sugar for declaring them. Note that
6322 this is not a proper type system for Perl. Nothing in this distribution will
6323 magically make the Perl interpreter start checking a value's type on assignment
6324 to a variable. In fact, there's no built-in way to apply a type to a variable at
6325 all. Instead, you can explicitly check a value against a type, and optionally
6326 coerce values to that type.")
6327 (license artistic2.0)))
6328
6329 (define-public perl-spiffy
6330 (package
6331 (name "perl-spiffy")
6332 (version "0.46")
6333 (source
6334 (origin
6335 (method url-fetch)
6336 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
6337 "Spiffy-" version ".tar.gz"))
6338 (sha256
6339 (base32
6340 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
6341 (build-system perl-build-system)
6342 (home-page "http://search.cpan.org/dist/Spiffy")
6343 (synopsis "Spiffy Perl Interface Framework For You")
6344 (description "Spiffy is a framework and methodology for doing object
6345 oriented (OO) programming in Perl. Spiffy combines the best parts of
6346 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
6347 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
6348 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
6349 other OO languages like Python, Ruby, Java and Perl 6.")
6350 (license (package-license perl))))
6351
6352 (define-public perl-stream-buffered
6353 (package
6354 (name "perl-stream-buffered")
6355 (version "0.03")
6356 (source
6357 (origin
6358 (method url-fetch)
6359 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6360 "Stream-Buffered-" version ".tar.gz"))
6361 (sha256
6362 (base32
6363 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
6364 (build-system perl-build-system)
6365 (home-page "http://search.cpan.org/dist/Stream-Buffered")
6366 (synopsis "Temporary buffer to save bytes")
6367 (description "Stream::Buffered is a buffer class to store arbitrary length
6368 of byte strings and then get a seekable filehandle once everything is
6369 buffered. It uses PerlIO and/or temporary file to save the buffer depending
6370 on the length of the size.")
6371 (license (package-license perl))))
6372
6373 (define-public perl-strictures
6374 (package
6375 (name "perl-strictures")
6376 (version "1.005005")
6377 (source
6378 (origin
6379 (method url-fetch)
6380 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6381 "strictures-" version ".tar.gz"))
6382 (sha256
6383 (base32
6384 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
6385 (build-system perl-build-system)
6386 (home-page "http://search.cpan.org/dist/strictures")
6387 (synopsis "Turn on strict and make all warnings fatal")
6388 (description "Strictures turns on strict and make all warnings fatal when
6389 run from within a source-controlled directory.")
6390 (license (package-license perl))))
6391
6392 (define-public perl-string-camelcase
6393 (package
6394 (name "perl-string-camelcase")
6395 (version "0.02")
6396 (source
6397 (origin
6398 (method url-fetch)
6399 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
6400 "String-CamelCase-" version ".tar.gz"))
6401 (sha256
6402 (base32
6403 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
6404 (build-system perl-build-system)
6405 (arguments
6406 `(#:phases
6407 (modify-phases %standard-phases
6408 (add-before 'configure 'set-perl-search-path
6409 (lambda _
6410 ;; Work around "dotless @INC" build failure.
6411 (setenv "PERL5LIB"
6412 (string-append (getcwd) ":"
6413 (getenv "PERL5LIB")))
6414 #t)))))
6415 (home-page "http://search.cpan.org/dist/String-CamelCase")
6416 (synopsis "Camelcase and de-camelcase")
6417 (description "This module may be used to convert from under_score text to
6418 CamelCase and back again.")
6419 (license (package-license perl))))
6420
6421 (define-public perl-string-rewriteprefix
6422 (package
6423 (name "perl-string-rewriteprefix")
6424 (version "0.007")
6425 (source
6426 (origin
6427 (method url-fetch)
6428 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
6429 "String-RewritePrefix-" version ".tar.gz"))
6430 (sha256
6431 (base32
6432 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
6433 (build-system perl-build-system)
6434 (propagated-inputs
6435 `(("perl-sub-exporter" ,perl-sub-exporter)))
6436 (home-page "http://search.cpan.org/dist/String-RewritePrefix")
6437 (synopsis "Rewrite strings based on a set of known prefixes")
6438 (description "This module allows you to rewrite strings based on a set of
6439 known prefixes.")
6440 (license (package-license perl))))
6441
6442 (define-public perl-string-print
6443 (package
6444 (name "perl-string-print")
6445 (version "0.15")
6446 (source (origin
6447 (method url-fetch)
6448 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
6449 "String-Print-" version ".tar.gz"))
6450 (sha256
6451 (base32
6452 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
6453 (build-system perl-build-system)
6454 (propagated-inputs
6455 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
6456 (home-page "http://search.cpan.org/dist/String-Print")
6457 (synopsis "String printing alternatives to printf")
6458 (description
6459 "This module inserts values into (translated) strings. It provides
6460 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
6461 a functional interface.")
6462 (license (package-license perl))))
6463
6464 (define-public perl-sub-exporter
6465 (package
6466 (name "perl-sub-exporter")
6467 (version "0.987")
6468 (source
6469 (origin
6470 (method url-fetch)
6471 (uri (string-append
6472 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
6473 version ".tar.gz"))
6474 (sha256
6475 (base32
6476 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
6477 (build-system perl-build-system)
6478 (propagated-inputs
6479 `(("perl-data-optlist" ,perl-data-optlist)
6480 ("perl-params-util" ,perl-params-util)))
6481 (home-page "http://search.cpan.org/dist/Sub-Exporter")
6482 (synopsis "Sophisticated exporter for custom-built routines")
6483 (description
6484 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
6485 custom-built routines.")
6486 (license (package-license perl))))
6487
6488 (define-public perl-sub-exporter-progressive
6489 (package
6490 (name "perl-sub-exporter-progressive")
6491 (version "0.001011")
6492 (source
6493 (origin
6494 (method url-fetch)
6495 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
6496 "Sub-Exporter-Progressive-" version ".tar.gz"))
6497 (sha256
6498 (base32
6499 "01kwzbqwdhvadpphnczid03nlyj0h4cxaq3m3v2401bckkkcc606"))))
6500 (build-system perl-build-system)
6501 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
6502 (home-page "http://search.cpan.org/dist/Sub-Exporter-Progressive")
6503 (synopsis "Only use Sub::Exporter if you need it")
6504 (description "Sub::Exporter is an incredibly powerful module, but with
6505 that power comes great responsibility, as well as some runtime penalties.
6506 This module is a \"Sub::Exporter\" wrapper that will let your users just use
6507 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
6508 if your users try to use \"Sub::Exporter\"'s more advanced features, like
6509 renaming exports, if they try to use them.")
6510 (license (package-license perl))))
6511
6512 (define-public perl-sub-identify
6513 (package
6514 (name "perl-sub-identify")
6515 (version "0.10")
6516 (source
6517 (origin
6518 (method url-fetch)
6519 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
6520 "Sub-Identify-" version ".tar.gz"))
6521 (sha256
6522 (base32
6523 "087fjcg6w576w47i1slj6mjfd3gl1b0airgddmn3prn0nff6nn2m"))))
6524 (build-system perl-build-system)
6525 (home-page "http://search.cpan.org/dist/Sub-Identify")
6526 (synopsis "Retrieve names of code references")
6527 (description "Sub::Identify allows you to retrieve the real name of code
6528 references.")
6529 (license (package-license perl))))
6530
6531 (define-public perl-sub-info
6532 (package
6533 (name "perl-sub-info")
6534 (version "0.002")
6535 (source
6536 (origin
6537 (method url-fetch)
6538 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
6539 version ".tar.gz"))
6540 (sha256
6541 (base32
6542 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
6543 (build-system perl-build-system)
6544 (propagated-inputs
6545 `(("perl-importer" ,perl-importer)))
6546 (home-page "http://search.cpan.org/dist/Sub-Info/")
6547 (synopsis "Tool to inspect subroutines")
6548 (description "This package provides tools for inspecting subroutines
6549 in Perl.")
6550 (license (package-license perl))))
6551
6552 (define-public perl-sub-install
6553 (package
6554 (name "perl-sub-install")
6555 (version "0.928")
6556 (source
6557 (origin
6558 (method url-fetch)
6559 (uri (string-append
6560 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
6561 version ".tar.gz"))
6562 (sha256
6563 (base32
6564 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
6565 (build-system perl-build-system)
6566 (home-page "http://search.cpan.org/dist/Sub-Install")
6567 (synopsis "Install subroutines into packages easily")
6568 (description
6569 "Sub::Install makes it easy to install subroutines into packages without
6570 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
6571 can see them.")
6572 (license (package-license perl))))
6573
6574 (define-public perl-sub-name
6575 (package
6576 (name "perl-sub-name")
6577 (version "0.21")
6578 (source
6579 (origin
6580 (method url-fetch)
6581 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6582 "Sub-Name-" version ".tar.gz"))
6583 (sha256
6584 (base32
6585 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
6586 (build-system perl-build-system)
6587 (native-inputs
6588 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
6589 (home-page "http://search.cpan.org/dist/Sub-Name")
6590 (synopsis "(Re)name a sub")
6591 (description "Assigns a new name to referenced sub. If package
6592 specification is omitted in the name, then the current package is used. The
6593 return value is the sub.")
6594 (license (package-license perl))))
6595
6596 (define-public perl-sub-uplevel
6597 (package
6598 (name "perl-sub-uplevel")
6599 (version "0.24")
6600 (source
6601 (origin
6602 (method url-fetch)
6603 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6604 "Sub-Uplevel-" version ".tar.gz"))
6605 (sha256
6606 (base32
6607 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
6608 (build-system perl-build-system)
6609 (home-page "http://search.cpan.org/dist/Sub-Uplevel")
6610 (synopsis "Apparently run a function in a higher stack frame")
6611 (description "Like Tcl's uplevel() function, but not quite so dangerous.
6612 The idea is just to fool caller(). All the really naughty bits of Tcl's
6613 uplevel() are avoided.")
6614 (license (package-license perl))))
6615
6616 (define-public perl-svg
6617 (package
6618 (name "perl-svg")
6619 (version "2.63")
6620 (source
6621 (origin
6622 (method url-fetch)
6623 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
6624 version ".tar.gz"))
6625 (sha256
6626 (base32
6627 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
6628 (build-system perl-build-system)
6629 (home-page "http://search.cpan.org/dist/SVG")
6630 (synopsis "Perl extension for generating SVG documents")
6631 (description "SVG is a Perl module which generates a nested data structure
6632 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
6633 Using SVG, you can generate SVG objects, embed other SVG instances into it,
6634 access the DOM object, create and access Javascript, and generate SMIL
6635 animation content.")
6636 (license (package-license perl))))
6637
6638 (define-public perl-switch
6639 (package
6640 (name "perl-switch")
6641 (version "2.17")
6642 (source
6643 (origin
6644 (method url-fetch)
6645 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
6646 version ".tar.gz"))
6647 (sha256
6648 (base32
6649 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
6650 (build-system perl-build-system)
6651 (home-page "http://search.cpan.org/dist/Switch")
6652 (synopsis "Switch statement for Perl")
6653 (description "Switch is a Perl module which implements a generalized case
6654 mechanism. The module augments the standard Perl syntax with two new
6655 statements: @code{switch} and @code{case}.")
6656 (license (package-license perl))))
6657
6658 (define-public perl-sys-cpu
6659 (package
6660 (name "perl-sys-cpu")
6661 (version "0.61")
6662 (source (origin
6663 (method url-fetch)
6664 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
6665 "Sys-CPU-" version ".tar.gz"))
6666 (sha256
6667 (base32
6668 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))))
6669 (build-system perl-build-system)
6670 (synopsis "Perl extension for getting CPU information")
6671 (description
6672 "Sys::CPU is a module for counting the number of CPUs on a system, and
6673 determining their type and clock speed.")
6674 (home-page (string-append "http://search.cpan.org/~mzsanford/"
6675 "Sys-CPU-" version))
6676 (license (package-license perl))))
6677
6678 (define-public perl-sys-hostname-long
6679 (package
6680 (name "perl-sys-hostname-long")
6681 (version "1.5")
6682 (source
6683 (origin
6684 (method url-fetch)
6685 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
6686 "Sys-Hostname-Long-" version ".tar.gz"))
6687 (sha256
6688 (base32
6689 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
6690 (build-system perl-build-system)
6691 (arguments `(#:tests? #f)) ;no `hostname' during build
6692 (home-page "http://search.cpan.org/dist/Sys-Hostname-Long")
6693 (synopsis "Get full hostname in Perl")
6694 (description "Sys::Hostname::Long tries very hard to get the full hostname
6695 of a system.")
6696 (license (package-license perl))))
6697
6698 (define-public perl-task-weaken
6699 (package
6700 (name "perl-task-weaken")
6701 (version "1.04")
6702 (source
6703 (origin
6704 (method url-fetch)
6705 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6706 "Task-Weaken-" version ".tar.gz"))
6707 (sha256
6708 (base32
6709 "1i7kd9v8fjsqyhr4rx4a1jv7n5vfjjm1v4agb24pizh0b72p3qk7"))))
6710 (build-system perl-build-system)
6711 (arguments
6712 '(#:phases (modify-phases %standard-phases
6713 (add-before 'configure 'set-search-path
6714 (lambda _
6715 ;; Work around "dotless @INC" build failure.
6716 (setenv "PERL5LIB"
6717 (string-append (getcwd) ":"
6718 (getenv "PERL5LIB")))
6719 #t)))))
6720 (home-page "http://search.cpan.org/dist/Task-Weaken")
6721 (synopsis "Ensure that a platform has weaken support")
6722 (description "One recurring problem in modules that use Scalar::Util's
6723 weaken function is that it is not present in the pure-perl variant. If
6724 Scalar::Util is not available at all, it will issue a normal dependency on the
6725 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
6726 module does not have weaken, the install will bail out altogether with a long
6727 error encouraging the user to seek support.")
6728 (license (package-license perl))))
6729
6730 (define-public perl-template-toolkit
6731 (package
6732 (name "perl-template-toolkit")
6733 (version "2.26")
6734 (source
6735 (origin
6736 (method url-fetch)
6737 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
6738 "Template-Toolkit-" version ".tar.gz"))
6739 (sha256
6740 (base32
6741 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
6742 (build-system perl-build-system)
6743 (propagated-inputs
6744 `(("perl-appconfig" ,perl-appconfig)
6745 ("perl-test-leaktrace" ,perl-test-leaktrace)))
6746 (home-page "http://search.cpan.org/dist/Template-Toolkit")
6747 (synopsis "Template processing system for Perl")
6748 (description "The Template Toolkit is a collection of modules which
6749 implement an extensible template processing system. It was originally
6750 designed and remains primarily useful for generating dynamic web content, but
6751 it can be used equally well for processing any other kind of text based
6752 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
6753 (license (package-license perl))))
6754
6755 (define-public perl-template-timer
6756 (package
6757 (name "perl-template-timer")
6758 (version "1.00")
6759 (source
6760 (origin
6761 (method url-fetch)
6762 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
6763 "Template-Timer-" version ".tar.gz"))
6764 (sha256
6765 (base32
6766 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
6767 (build-system perl-build-system)
6768 (propagated-inputs
6769 `(("perl-template-toolkit" ,perl-template-toolkit)))
6770 (home-page "http://search.cpan.org/dist/Template-Timer")
6771 (synopsis "Profiling for Template Toolkit")
6772 (description "Template::Timer provides inline profiling of the template
6773 processing in Perl code.")
6774 (license (list gpl3 artistic2.0))))
6775
6776 (define-public perl-term-encoding
6777 (package
6778 (name "perl-term-encoding")
6779 (version "0.02")
6780 (source
6781 (origin
6782 (method url-fetch)
6783 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
6784 "Term-Encoding-" version ".tar.gz"))
6785 (sha256
6786 (base32
6787 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
6788 (build-system perl-build-system)
6789 (native-inputs
6790 `(("perl-module-install" ,perl-module-install)))
6791 (home-page "http://search.cpan.org/dist/Term-Encoding")
6792 (synopsis "Detect encoding of the current terminal")
6793 (description "Term::Encoding is a simple module to detect the encoding of
6794 the current terminal expects in various ways.")
6795 (license (package-license perl))))
6796
6797 (define-public perl-term-progressbar
6798 (package
6799 (name "perl-term-progressbar")
6800 (version "2.17")
6801 (source
6802 (origin
6803 (method url-fetch)
6804 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
6805 "Term-ProgressBar-" version ".tar.gz"))
6806 (sha256
6807 (base32
6808 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
6809 (build-system perl-build-system)
6810 (native-inputs
6811 `(("perl-capture-tiny" ,perl-capture-tiny)
6812 ("perl-test-exception" ,perl-test-exception)))
6813 (propagated-inputs
6814 `(("perl-class-methodmaker" ,perl-class-methodmaker)
6815 ("perl-term-readkey" ,perl-term-readkey)))
6816 (home-page "http://search.cpan.org/dist/Term-ProgressBar")
6817 (synopsis "Progress meter on a standard terminal")
6818 (description "Term::ProgressBar provides a simple progress bar on the
6819 terminal, to let the user know that something is happening, roughly how much
6820 stuff has been done, and maybe an estimate at how long remains.")
6821 (license (package-license perl))))
6822
6823 (define-public perl-term-progressbar-quiet
6824 (package
6825 (name "perl-term-progressbar-quiet")
6826 (version "0.31")
6827 (source
6828 (origin
6829 (method url-fetch)
6830 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
6831 "Term-ProgressBar-Quiet-" version ".tar.gz"))
6832 (sha256
6833 (base32
6834 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
6835 (build-system perl-build-system)
6836 (propagated-inputs
6837 `(("perl-io-interactive" ,perl-io-interactive)
6838 ("perl-term-progressbar" ,perl-term-progressbar)
6839 ("perl-test-mockobject" ,perl-test-mockobject)))
6840 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Quiet")
6841 (synopsis "Progress meter if run interactively")
6842 (description "Term::ProgressBar is a wonderful module for showing progress
6843 bars on the terminal. This module acts very much like that module when it is
6844 run interactively. However, when it is not run interactively (for example, as
6845 a cron job) then it does not show the progress bar.")
6846 (license (package-license perl))))
6847
6848 (define-public perl-term-progressbar-simple
6849 (package
6850 (name "perl-term-progressbar-simple")
6851 (version "0.03")
6852 (source
6853 (origin
6854 (method url-fetch)
6855 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
6856 "Term-ProgressBar-Simple-" version ".tar.gz"))
6857 (sha256
6858 (base32
6859 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
6860 (build-system perl-build-system)
6861 (propagated-inputs
6862 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
6863 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Simple")
6864 (synopsis "Simple progress bars")
6865 (description "Term::ProgressBar::Simple tells you how much work has been
6866 done, how much is left to do, and estimate how long it will take.")
6867 (license (package-license perl))))
6868
6869 (define-public perl-term-readkey
6870 (package
6871 (name "perl-term-readkey")
6872 (version "2.37")
6873 (source
6874 (origin
6875 (method url-fetch)
6876 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
6877 "TermReadKey-" version ".tar.gz"))
6878 (sha256
6879 (base32
6880 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
6881 (build-system perl-build-system)
6882 (home-page "http://search.cpan.org/dist/TermReadKey")
6883 (synopsis "Simple terminal control")
6884 (description "This module, ReadKey, provides ioctl control for terminals
6885 so the input modes can be changed (thus allowing reads of a single character
6886 at a time), and also provides non-blocking reads of stdin, as well as several
6887 other terminal related features, including retrieval/modification of the
6888 screen size, and retrieval/modification of the control characters.")
6889 (license (package-license perl))))
6890
6891 (define-public perl-term-table
6892 (package
6893 (name "perl-term-table")
6894 (version "0.008")
6895 (source
6896 (origin
6897 (method url-fetch)
6898 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
6899 version ".tar.gz"))
6900 (sha256
6901 (base32
6902 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
6903 (build-system perl-build-system)
6904 (propagated-inputs
6905 `(("perl-importer" ,perl-importer)))
6906 (home-page "http://search.cpan.org/dist/Term-Table/")
6907 (synopsis "Format a header and rows into a table")
6908 (description "This module is able to generically format rows of data
6909 into tables.")
6910 (license (package-license perl))))
6911
6912 (define-public perl-test2-bundle-extended
6913 (package
6914 (name "perl-test2-bundle-extended")
6915 (version "0.000072")
6916 (source
6917 (origin
6918 (method url-fetch)
6919 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Test2-Suite-"
6920 version ".tar.gz"))
6921 (sha256
6922 (base32
6923 "0hgd6n29qjh1pwqvbglm2kb852yqshmixqqjhsr2kvvibdr58qpf"))))
6924 (build-system perl-build-system)
6925 (arguments
6926 '(#:phases
6927 (modify-phases %standard-phases
6928 (add-after 'unpack 'set-env
6929 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1"))))))
6930 (propagated-inputs
6931 `(("perl-importer" ,perl-importer)
6932 ("perl-term-table" ,perl-term-table)
6933 ("perl-sub-info" ,perl-sub-info)))
6934 (home-page "http://search.cpan.org/~exodist/Test2-Suite/lib/Test2/Bundle/Extended.pm")
6935 (synopsis "Full set of tools for Test2::Suite")
6936 (description "This package provides a rich set of tools, plugins, bundles,
6937 etc built upon the Test2 testing library.")
6938 (license (package-license perl))))
6939
6940 (define-public perl-test2-plugin-nowarnings
6941 (package
6942 (name "perl-test2-plugin-nowarnings")
6943 (version "0.06")
6944 (source
6945 (origin
6946 (method url-fetch)
6947 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/Test2-Plugin-NoWarnings-"
6948 version ".tar.gz"))
6949 (sha256
6950 (base32
6951 "002qk6qsm0l6r2kaxywvc38w0yf0mlavgywq8li076pn6kcw3242"))))
6952 (build-system perl-build-system)
6953 (propagated-inputs
6954 `(("perl-test2-bundle-extended" ,perl-test2-bundle-extended)))
6955 (home-page "http://search.cpan.org/dist/Test2-Plugin-NoWarnings/")
6956 (synopsis "Fail if tests warn")
6957 (description "Loading this plugin causes your tests to fail if there any
6958 warnings while they run. Each warning generates a new failing test and the
6959 warning content is outputted via diag.")
6960 (license (package-license perl))))
6961
6962 (define-public perl-test-base
6963 (package
6964 (name "perl-test-base")
6965 (version "0.88")
6966 (source
6967 (origin
6968 (method url-fetch)
6969 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
6970 "Test-Base-" version ".tar.gz"))
6971 (sha256
6972 (base32
6973 "0fch1cvivnszbnwhpfmwv1rin04j5xkj1n1ylfmlxg6bm72qqdjj"))))
6974 (build-system perl-build-system)
6975 (native-inputs
6976 `(("perl-algorithm-diff" ,perl-algorithm-diff)
6977 ("perl-text-diff" ,perl-text-diff)))
6978 (propagated-inputs
6979 `(("perl-spiffy" ,perl-spiffy)
6980 ("perl-test-deep" ,perl-test-deep)))
6981 (home-page "http://search.cpan.org/dist/Test-Base")
6982 (synopsis "Data-driven testing framework for Perl")
6983 (description "Test::Base gives a way to trivially write your own test
6984 framework base class. It concentrates on offering reusable data driven
6985 patterns, so that you can write tests with a minimum of code.")
6986 (license (package-license perl))))
6987
6988 (define-public perl-test-class
6989 (package
6990 (name "perl-test-class")
6991 (version "0.50")
6992 (source
6993 (origin
6994 (method url-fetch)
6995 (uri (string-append
6996 "https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Class-"
6997 version
6998 ".tar.gz"))
6999 (sha256
7000 (base32
7001 "0l0kk5jvxjkic2jkf1r7v41irb344aasnzr3f5ygjgxgiknm9489"))))
7002 (build-system perl-build-system)
7003 (native-inputs
7004 `(("perl-test-exception" ,perl-test-exception)))
7005 (inputs
7006 `(("perl-module-runtime" ,perl-module-runtime)
7007 ("perl-mro-compat" ,perl-mro-compat)
7008 ("perl-try-tiny" ,perl-try-tiny)))
7009 (home-page "http://search.cpan.org/dist/Test-Class")
7010 (synopsis "Easily create test classes in an xUnit/JUnit style")
7011 (description "@code{Test::Class} provides a simple way of creating classes
7012 and objects to test your code in an xUnit style.
7013
7014 Built using @code{Test::Builder}, it was designed to work with other
7015 @code{Test::Builder} based modules (@code{Test::More},
7016 @code{Test::Differences}, @code{Test::Exception}, etc.).")
7017 (license (package-license perl))))
7018
7019 (define-public perl-test-class-most
7020 (package
7021 (name "perl-test-class-most")
7022 (version "0.08")
7023 (source
7024 (origin
7025 (method url-fetch)
7026 (uri (string-append
7027 "mirror://cpan/authors/id/O/OV/OVID/Test-Class-Most-"
7028 version
7029 ".tar.gz"))
7030 (sha256
7031 (base32
7032 "1zvx9hil0mg0pnb8xfa4m0xgjpvh8s5gnbyprq3xwpdsdgcdwk33"))))
7033 (build-system perl-build-system)
7034 (native-inputs
7035 `(("perl-module-build" ,perl-module-build)))
7036 (inputs
7037 `(("perl-test-class" ,perl-test-class)
7038 ("perl-test-most" ,perl-test-most)
7039 ("perl-module-runtime" ,perl-module-runtime)
7040 ("perl-try-tiny" ,perl-try-tiny)
7041 ("perl-mro-compat" ,perl-mro-compat)))
7042 (home-page "http://search.cpan.org/dist/Test-Class-Most")
7043 (synopsis "Test classes the easy way")
7044 (description "@code{Test::Class::Most} provides some more convenience when
7045 using @code{Test::Class}.")
7046 (license (package-license perl))))
7047
7048 (define-public perl-test-cleannamespaces
7049 (package
7050 (name "perl-test-cleannamespaces")
7051 (version "0.22")
7052 (source
7053 (origin
7054 (method url-fetch)
7055 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7056 "Test-CleanNamespaces-" version ".tar.gz"))
7057 (sha256
7058 (base32
7059 "1jma95agqqy7iwdcl6jbg1waqz7mjqng4l046lpknhfxjhcj4al6"))))
7060 (build-system perl-build-system)
7061 (native-inputs
7062 `(("perl-file-pushd" ,perl-file-pushd)
7063 ("perl-test-requires" ,perl-test-requires)
7064 ("perl-test-deep" ,perl-test-deep)
7065 ("perl-test-warnings" ,perl-test-warnings)
7066 ("perl-test-tester" ,perl-test-tester)
7067 ("perl-test-needs" ,perl-test-needs)))
7068 (propagated-inputs
7069 `(("perl-namespace-clean" ,perl-namespace-clean)
7070 ("perl-package-stash" ,perl-package-stash)
7071 ("perl-sub-identify" ,perl-sub-identify)
7072 ("perl-sub-exporter" ,perl-sub-exporter)
7073 ("perl-file-find-rule" ,perl-file-find-rule)
7074 ("perl-file-find-rule-perl" ,perl-file-find-rule-perl)))
7075 (home-page "http://search.cpan.org/dist/Test-CleanNamespaces")
7076 (synopsis "Check for uncleaned imports")
7077 (description "This module lets you check your module's namespaces for
7078 imported functions you might have forgotten to remove with
7079 namespace::autoclean or namespace::clean and are therefore available to be
7080 called as methods, which usually isn't want you want.")
7081 (license (package-license perl))))
7082
7083 (define-public perl-test-cpan-meta
7084 (package
7085 (name "perl-test-cpan-meta")
7086 (version "0.25")
7087 (source
7088 (origin
7089 (method url-fetch)
7090 (uri (string-append
7091 "mirror://cpan/authors/id/B/BA/BARBIE/Test-CPAN-Meta-"
7092 version
7093 ".tar.gz"))
7094 (sha256
7095 (base32
7096 "1dcdbbdwdyhpldkhjzc9rvzlmb5jbil6fwh2x07nsfdwysf4ynzm"))))
7097 (build-system perl-build-system)
7098 (native-inputs
7099 `(("perl-test-cpan-meta-json" ,perl-test-cpan-meta-json)
7100 ("perl-test-pod" ,perl-test-pod)
7101 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7102 (home-page
7103 "http://search.cpan.org/dist/Test-CPAN-Meta")
7104 (synopsis "Validate your CPAN META.yml files")
7105 (description
7106 "This module was written to ensure that a META.yml file meets the
7107 specification.")
7108 (license artistic2.0)))
7109
7110 (define-public perl-test-cpan-meta-json
7111 (package
7112 (name "perl-test-cpan-meta-json")
7113 (version "0.16")
7114 (source
7115 (origin
7116 (method url-fetch)
7117 (uri (string-append
7118 "mirror://cpan/authors/id/B/BA/BARBIE/Test-CPAN-Meta-JSON-"
7119 version
7120 ".tar.gz"))
7121 (sha256
7122 (base32
7123 "1jg9ka50ixwq083wd4k12rhdjq87w0ihb34gd8jjn7gvvyd51b37"))))
7124 (build-system perl-build-system)
7125 (native-inputs
7126 `(("perl-test-pod" ,perl-test-pod)
7127 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7128 (inputs
7129 `(("perl-json" ,perl-json)))
7130 (home-page
7131 "http://search.cpan.org/dist/Test-CPAN-Meta-JSON")
7132 (synopsis "Validate your CPAN META.json files")
7133 (description
7134 "This module was written to ensure that a META.json file meets the
7135 specification.")
7136 (license artistic2.0)))
7137
7138 (define-public perl-test-deep
7139 (package
7140 (name "perl-test-deep")
7141 (version "1.120")
7142 (source (origin
7143 (method url-fetch)
7144 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7145 "Test-Deep-" version ".tar.gz"))
7146 (sha256
7147 (base32
7148 "1kdy06r0yg7zwarqglc9163vbfb0sfc4s6ld4pw5q7i9f7mghzi0"))))
7149 (build-system perl-build-system)
7150 (inputs `(("perl-test-tester" ,perl-test-tester)
7151 ("perl-test-nowarnings" ,perl-test-nowarnings)))
7152 (synopsis "Flexible deep comparison for the Test::Builder framework")
7153 (description
7154 "Test::Deep compares two structures by going through each level, ensuring
7155 that the values match, that arrays and hashes have the same elements and that
7156 references are blessed into the correct class. It also handles circular data
7157 structures without getting caught in an infinite loop.")
7158 (home-page "http://search.cpan.org/dist/Test-Deep")
7159 (license gpl1+))) ; or "Artistic License"
7160
7161 (define-public perl-test-differences
7162 (package
7163 (name "perl-test-differences")
7164 (version "0.63")
7165 (source
7166 (origin
7167 (method url-fetch)
7168 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
7169 "Test-Differences-" version ".tar.gz"))
7170 (sha256
7171 (base32
7172 "0rhs4q6qn64ji06ns7lwl6iiiw3mggvd9xk9nkiqvx1jihbplrbw"))))
7173 (build-system perl-build-system)
7174 (native-inputs
7175 `(("perl-module-build" ,perl-module-build)))
7176 (propagated-inputs
7177 `(("perl-text-diff" ,perl-text-diff)
7178 ("perl-capture-tiny" ,perl-capture-tiny)))
7179 (home-page "http://search.cpan.org/dist/Test-Differences")
7180 (synopsis "Test strings and data structures and show differences")
7181 (description "This module exports three test functions and four diff-style
7182 functions.")
7183 ;; See LICENSE section of Test/Differences.pm, which reads "... GNU public
7184 ;; license, any version, ..."
7185 (license gpl3+)))
7186
7187 (define-public perl-test-directory
7188 (package
7189 (name "perl-test-directory")
7190 (version "0.041")
7191 (source
7192 (origin
7193 (method url-fetch)
7194 (uri (string-append "mirror://cpan/authors/id/S/SA/SANBEG/"
7195 "Test-Directory-" version ".tar.gz"))
7196 (sha256
7197 (base32
7198 "1ncql08cizhicbxwd753b4czns8nlcnlw0zfjcfrbdd41x4j6hqr"))))
7199 (build-system perl-build-system)
7200 (native-inputs `(("perl-test-exception" ,perl-test-exception)))
7201 (home-page "http://search.cpan.org/dist/Test-Directory")
7202 (synopsis "Perl extension for maintaining test directories")
7203 (description "Testing code can involve making sure that files are created
7204 and deleted as expected. Doing this manually can be error prone, as it's easy
7205 to forget a file, or miss that some unexpected file was added. This module
7206 simplifies maintaining test directories by tracking their status as they are
7207 modified or tested with this API, making it simple to test both individual
7208 files, as well as to verify that there are no missing or unknown files.")
7209 (license (package-license perl))))
7210
7211 (define-public perl-test-eol
7212 (package
7213 (name "perl-test-eol")
7214 (version "2.00")
7215 (source
7216 (origin
7217 (method url-fetch)
7218 (uri (string-append
7219 "mirror://cpan/authors/id/E/ET/ETHER/Test-EOL-"
7220 version
7221 ".tar.gz"))
7222 (sha256
7223 (base32
7224 "0l3bxpsw0x7j9nclizcp53mnf9wny25dmg2iglfhzgnk0xfpwzwf"))))
7225 (build-system perl-build-system)
7226 (home-page
7227 "http://search.cpan.org/dist/Test-EOL")
7228 (synopsis
7229 "Check the correct line endings in your project")
7230 (description
7231 "@code{Test::EOL} lets you check for the presence of trailing whitespace
7232 and/or windows line endings in your perl code.")
7233 (license perl-license)))
7234
7235 (define-public perl-test-exception
7236 (package
7237 (name "perl-test-exception")
7238 (version "0.43")
7239 (source
7240 (origin
7241 (method url-fetch)
7242 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
7243 "Test-Exception-" version ".tar.gz"))
7244 (sha256
7245 (base32
7246 "0cxm7s4bg0xpxa6l6996a6iq3brr4j7p4hssnkc6dxv4fzq16sqm"))))
7247 (build-system perl-build-system)
7248 (native-inputs
7249 `(("perl-module-build" ,perl-module-build)))
7250 (propagated-inputs
7251 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
7252 (home-page "http://search.cpan.org/dist/Test-Exception")
7253 (synopsis "Test exception based code")
7254 (description "This module provides a few convenience methods for testing
7255 exception based code. It is built with Test::Builder and plays happily with
7256 Test::More and friends.")
7257 (license (package-license perl))))
7258
7259 (define-public perl-test-fatal
7260 (package
7261 (name "perl-test-fatal")
7262 (version "0.014")
7263 (source
7264 (origin
7265 (method url-fetch)
7266 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7267 "Test-Fatal-" version ".tar.gz"))
7268 (sha256
7269 (base32
7270 "1c6bs68mss4q7cyapkv2c0jn66i21050p0faxf3s3417gdffzp5w"))))
7271 (build-system perl-build-system)
7272 (propagated-inputs `(("perl-try-tiny" ,perl-try-tiny)))
7273 (home-page "http://search.cpan.org/dist/Test-Fatal")
7274 (synopsis "Simple helpers for testing code with exceptions")
7275 (description "Test::Fatal is an alternative to the popular
7276 Test::Exception. It does much less, but should allow greater flexibility in
7277 testing exception-throwing code with about the same amount of typing.")
7278 (license (package-license perl))))
7279
7280 (define-public perl-test-file-sharedir-dist
7281 (package
7282 (name "perl-test-file-sharedir-dist")
7283 (version "1.001002")
7284 (source
7285 (origin
7286 (method url-fetch)
7287 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
7288 "Test-File-ShareDir-" version ".tar.gz"))
7289 (sha256
7290 (base32
7291 "1bbs6cx69wcinq77gif4i4pmrj8a7lwb92sgvvxzrwmjnk5lfdmk"))))
7292 (build-system perl-build-system)
7293 (propagated-inputs
7294 `(("perl-class-tiny" ,perl-class-tiny)
7295 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
7296 ("perl-file-sharedir" ,perl-file-sharedir)
7297 ("perl-path-tiny" ,perl-path-tiny)
7298 ("perl-scope-guard" ,perl-scope-guard)
7299 ("perl-test-fatal" ,perl-test-fatal)))
7300 (home-page "https://github.com/kentnl/Test-File-ShareDir")
7301 (synopsis "Dist oriented ShareDir tester")
7302 (description "This module creates a Fake ShareDir for your modules
7303 for testing.")
7304 (license (package-license perl))))
7305
7306 (define-public perl-test-files
7307 (package
7308 (name "perl-test-files")
7309 (version "0.14")
7310 (source
7311 (origin
7312 (method url-fetch)
7313 (uri (string-append
7314 "mirror://cpan/authors/id/P/PH/PHILCROW/Test-Files-"
7315 version
7316 ".tar.gz"))
7317 (sha256
7318 (base32
7319 "1zn33yigznq7i1jr4yjr4lxvc6bn7znkbqdzj7slhc146pqapkln"))))
7320 (build-system perl-build-system)
7321 (propagated-inputs
7322 `(("perl-algorithm-diff" ,perl-algorithm-diff)
7323 ("perl-text-diff" ,perl-text-diff)))
7324 (home-page "http://search.cpan.org/dist/Test-Files")
7325 (synopsis "Ease software testing with files and directories")
7326 (description "This library provides functions to enable testing of files
7327 and directories. For instance, the @code{file_ok} helper can test whether the
7328 contents of a file is equal to a particular string.")
7329 (license (package-license perl))))
7330
7331 (define-public perl-test-harness
7332 (package
7333 (name "perl-test-harness")
7334 (version "3.39")
7335 (source
7336 (origin
7337 (method url-fetch)
7338 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
7339 "Test-Harness-" version ".tar.gz"))
7340 (sha256
7341 (base32
7342 "0chiqnzmna2mglm37nzxvn9qhq2j31iwz3i9isqjs7bf3k449gb9"))))
7343 (build-system perl-build-system)
7344 (arguments
7345 `(#:phases (alist-cons-before
7346 'check 'patch-test
7347 (lambda* (#:key inputs #:allow-other-keys)
7348 ;; This test looks for "#!/usr/bin/perl" in some source.
7349 ;; Patch what the test looks for.
7350 (substitute* "t/source.t"
7351 (("#!/usr/bin/perl")
7352 (string-append "#!" (assoc-ref inputs "perl")
7353 "/bin/perl"))))
7354 %standard-phases)))
7355 (home-page "http://search.cpan.org/dist/Test-Harness")
7356 (synopsis "Run Perl standard test scripts with statistics")
7357 (description "Simple test harness which allows tests to be run and results
7358 automatically aggregated and output to STDOUT.")
7359 (license (package-license perl))))
7360
7361 (define-public perl-test-leaktrace
7362 (package
7363 (name "perl-test-leaktrace")
7364 (version "0.16")
7365 (source
7366 (origin
7367 (method url-fetch)
7368 (uri (string-append "mirror://cpan/authors/id/L/LE/LEEJO/"
7369 "Test-LeakTrace-" version ".tar.gz"))
7370 (sha256
7371 (base32
7372 "00z4hcjra5nk700f3fgpy8fs036d7ry7glpn8g3wh7jzj7nrw22z"))))
7373 (build-system perl-build-system)
7374 (home-page "http://search.cpan.org/dist/Test-LeakTrace")
7375 (synopsis "Traces memory leaks in Perl")
7376 (description "Test::LeakTrace provides several functions that trace memory
7377 leaks. This module scans arenas, the memory allocation system, so it can
7378 detect any leaked SVs in given blocks.")
7379 (license (package-license perl))))
7380
7381 (define-public perl-test-longstring
7382 (package
7383 (name "perl-test-longstring")
7384 (version "0.17")
7385 (source
7386 (origin
7387 (method url-fetch)
7388 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
7389 "Test-LongString-" version ".tar.gz"))
7390 (sha256
7391 (base32
7392 "0kwp7rfr1i2amz4ckigkv13ah7jr30q6l5k4wk0vxl84myg39i5b"))))
7393 (build-system perl-build-system)
7394 (home-page "http://search.cpan.org/dist/Test-LongString")
7395 (synopsis "Tests strings for equality, with more helpful failures")
7396 (description "This module provides some drop-in replacements for the
7397 string comparison functions of Test::More, but which are more suitable when
7398 you test against long strings.")
7399 (license (package-license perl))))
7400
7401 (define-public perl-test-manifest
7402 (package
7403 (name "perl-test-manifest")
7404 (version "2.02")
7405 (source (origin
7406 (method url-fetch)
7407 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
7408 "Test-Manifest-" version ".tar.gz"))
7409 (sha256
7410 (base32
7411 "15ik52l9macrrfizf4y6wj71d4lx7w590h2dfajnkmbxmz786iq6"))))
7412 (build-system perl-build-system)
7413 (native-inputs
7414 `(("perl-test-pod" ,perl-test-pod)
7415 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7416 (home-page "http://search.cpan.org/dist/Test-Manifest")
7417 (synopsis "Interact with a t/test_manifest file")
7418 (description "@code{Test::Manifest} overrides the default test file order. Instead of
7419 running all of the t/*.t files in ASCII-betical order, it looks in the t/test_manifest
7420 file to find out which tests you want to run and the order in which you want to run them.
7421 It constructs the right value for the build system to do the right thing.")
7422 (license (package-license perl))))
7423
7424 (define-public perl-test-memory-cycle
7425 (package
7426 (name "perl-test-memory-cycle")
7427 (version "1.06")
7428 (source
7429 (origin
7430 (method url-fetch)
7431 (uri (string-append
7432 "mirror://cpan/authors/id/P/PE/PETDANCE/Test-Memory-Cycle-"
7433 version
7434 ".tar.gz"))
7435 (sha256
7436 (base32
7437 "00ijmgx1r3cxrcs1qa9rb2s4gbm3nsawd90drda89kb4r7yxslwx"))))
7438 (build-system perl-build-system)
7439 (inputs
7440 `(("perl-padwalker" ,perl-padwalker)))
7441 (propagated-inputs
7442 `(("perl-devel-cycle" ,perl-devel-cycle)))
7443 (home-page
7444 "http://search.cpan.org/dist/Test-Memory-Cycle")
7445 (synopsis
7446 "Verifies code hasn't left circular references")
7447 (description
7448 "@code{Test::Memory::Cycle} is built on top of @code{Devel::Cycle} to
7449 give you an easy way to check for these circular references.
7450
7451 @example
7452 use Test::Memory::Cycle;
7453
7454 my $object = new MyObject;
7455 # Do stuff with the object.
7456 memory_cycle_ok( $object );
7457 @end example")
7458 (license artistic2.0)))
7459
7460 (define-public perl-test-mockobject
7461 (package
7462 (name "perl-test-mockobject")
7463 (version "1.20150527")
7464 (source
7465 (origin
7466 (method url-fetch)
7467 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
7468 "Test-MockObject-" version ".tar.gz"))
7469 (sha256
7470 (base32
7471 "160xvhbpwqjaff4fgckvldknldzcbn1z3jvyzybs7cqlj1x3bwdd"))))
7472 (build-system perl-build-system)
7473 (native-inputs
7474 `(("perl-test-exception" ,perl-test-exception)
7475 ("perl-test-warn" ,perl-test-warn)))
7476 (propagated-inputs
7477 `(("perl-test-exception" ,perl-test-exception)
7478 ("perl-test-warn" ,perl-test-warn)
7479 ("perl-universal-can" ,perl-universal-can)
7480 ("perl-universal-isa" ,perl-universal-isa)))
7481 (arguments `(#:tests? #f)) ;TODO: tests require perl-cgi
7482 (home-page "http://search.cpan.org/dist/Test-MockObject")
7483 (synopsis "Emulate troublesome interfaces in Perl")
7484 (description "Test::MockObject allows you to create objects that conform
7485 to particular interfaces with very little code. You don't have to reimplement
7486 the behavior, just the input and the output.")
7487 (license (package-license perl))))
7488
7489 (define-public perl-test-mocktime
7490 (package
7491 (name "perl-test-mocktime")
7492 (version "0.13")
7493 (source
7494 (origin
7495 (method url-fetch)
7496 (uri (string-append "mirror://cpan/authors/id/D/DD/DDICK/"
7497 "Test-MockTime-" version ".tar.gz"))
7498 (sha256
7499 (base32
7500 "0yrqmjg33akannwz2f99rfm7dvvxpzsdj23lsvlvfi4qslrlqfvw"))))
7501 (build-system perl-build-system)
7502 (home-page "http://search.cpan.org/dist/Test-MockTime")
7503 (synopsis "Replaces actual time with simulated time")
7504 (description "This module was created to enable test suites to test code
7505 at specific points in time. Specifically it overrides localtime, gmtime and
7506 time at compile time and then relies on the user supplying a mock time via
7507 set_relative_time, set_absolute_time or set_fixed_time to alter future calls
7508 to gmtime,time or localtime.")
7509 (license (package-license perl))))
7510
7511 (define-public perl-test-most
7512 (package
7513 (name "perl-test-most")
7514 (version "0.34")
7515 (source
7516 (origin
7517 (method url-fetch)
7518 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
7519 "Test-Most-" version ".tar.gz"))
7520 (sha256
7521 (base32
7522 "0i72aih3pakm8gh73wx1n4dwq8lbx6dvxhla46gsapszws6hr0n2"))))
7523 (build-system perl-build-system)
7524 (propagated-inputs
7525 `(("perl-test-differences" ,perl-test-differences)
7526 ("perl-test-warn" ,perl-test-warn)
7527 ("perl-exception-class" ,perl-exception-class)
7528 ("perl-test-deep" ,perl-test-deep)
7529 ("perl-test-exception" ,perl-test-exception)))
7530 (home-page "http://search.cpan.org/dist/Test-Most")
7531 (synopsis "Most commonly needed test functions and features")
7532 (description "This module provides the most commonly used testing
7533 functions, along with automatically turning on strict and warning and gives a
7534 bit more fine-grained control over test suites.")
7535 (license (package-license perl))))
7536
7537 (define-public perl-test-needs
7538 (package
7539 (name "perl-test-needs")
7540 (version "0.002005")
7541 (source
7542 (origin
7543 (method url-fetch)
7544 (uri (string-append
7545 "mirror://cpan/authors/id/H/HA/HAARG/Test-Needs-"
7546 version
7547 ".tar.gz"))
7548 (sha256
7549 (base32
7550 "16gkgpmr9hvkz382iaqd3500269lk2d44fqaw3dsrvc66nc36kss"))))
7551 (build-system perl-build-system)
7552 (home-page
7553 "http://search.cpan.org/dist/Test-Needs")
7554 (synopsis
7555 "Skip tests when modules not available")
7556 (description "@code{Test::Needs} allows you to skip test scripts if
7557 modules are not available. The requested modules will be loaded, and
7558 optionally have their versions checked. If the module is missing, the test
7559 script will be skipped. Modules that are found but fail to compile will exit
7560 with an error rather than skip.
7561
7562 If used in a subtest, the remainder of the subtest will be skipped.")
7563 (license (package-license perl))))
7564
7565 (define-public perl-test-notabs
7566 (package
7567 (name "perl-test-notabs")
7568 (version "2.00")
7569 (source
7570 (origin
7571 (method url-fetch)
7572 (uri (string-append
7573 "mirror://cpan/authors/id/E/ET/ETHER/Test-NoTabs-"
7574 version
7575 ".tar.gz"))
7576 (sha256
7577 (base32
7578 "127kpl1va267qar2ia4c22xb96jby2jqnda3sj5pjgmxg8si26cg"))))
7579 (build-system perl-build-system)
7580 (home-page
7581 "http://search.cpan.org/dist/Test-NoTabs")
7582 (synopsis
7583 "Check the presence of tabs in your project")
7584 (description
7585 "@code{Test::NoTabs} lets you check the presence of tabs in your perl
7586 code.")
7587 (license perl-license)))
7588
7589 (define-public perl-test-nowarnings
7590 (package
7591 (name "perl-test-nowarnings")
7592 (version "1.04")
7593 (source (origin
7594 (method url-fetch)
7595 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
7596 "Test-NoWarnings-" version ".tar.gz"))
7597 (sha256
7598 (base32
7599 "0v385ch0hzz9naqwdw2az3zdqi15gka76pmiwlgsy6diiijmg2k3"))))
7600 (build-system perl-build-system)
7601 (inputs `(("perl-test-tester" ,perl-test-tester)))
7602 (synopsis "Ensure no warnings are produced while testing")
7603 (description
7604 "This modules causes any warnings during testing to be captured and
7605 stored. It automatically adds an extra test that will run when your script
7606 ends to check that there were no warnings. If there were any warnings, the
7607 test will fail and output diagnostics of where, when and what the warning was,
7608 including a stack trace of what was going on when it occurred.")
7609 (home-page (string-append "http://search.cpan.org/~adamk/"
7610 "Test-NoWarnings-" version))
7611 (license lgpl2.1)))
7612
7613 (define-public perl-test-number-delta
7614 (package
7615 (name "perl-test-number-delta")
7616 (version "1.06")
7617 (source (origin
7618 (method url-fetch)
7619 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7620 "Test-Number-Delta-" version ".tar.gz"))
7621 (sha256
7622 (base32
7623 "0jfhzhpzkc23mkrlbnv085ykpfncmy99hvppbzjnrpvgks8k0m2k"))))
7624 (build-system perl-build-system)
7625 (home-page "http://search.cpan.org/dist/Test-Number-Delta")
7626 (synopsis
7627 "Compare the difference between numbers against a given tolerance")
7628 (description
7629 "At some point or another, most programmers find they need to compare
7630 floating-point numbers for equality. The typical idiom is to test if the
7631 absolute value of the difference of the numbers is within a desired tolerance,
7632 usually called epsilon. This module provides such a function for use with
7633 @code{Test::More}.")
7634 (license asl2.0)))
7635
7636 (define-public perl-test-output
7637 (package
7638 (name "perl-test-output")
7639 (version "1.03")
7640 (source (origin
7641 (method url-fetch)
7642 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
7643 "Test-Output-" version ".tar.gz"))
7644 (sha256
7645 (base32
7646 "12991jnzj4cbw9whhprmqvnzd1ayii84g2mh8vxbjngwqrjsy41i"))))
7647 (build-system perl-build-system)
7648 (propagated-inputs
7649 `(("perl-capture-tiny" ,perl-capture-tiny)
7650 ("perl-test-tester" ,perl-test-tester)
7651 ("perl-sub-exporter" ,perl-sub-exporter)))
7652 (synopsis "Utilities to test STDOUT and STDERR messages")
7653 (description
7654 "Test::Output provides a simple interface for testing output sent to
7655 STDOUT or STDERR. A number of different utilities are included to try and be
7656 as flexible as possible to the tester.")
7657 (home-page (string-append "http://search.cpan.org/~bdfoy/"
7658 "Test-Output-" version))
7659 (license (package-license perl))))
7660
7661 (define-public perl-test-pod
7662 (package
7663 (name "perl-test-pod")
7664 (version "1.48")
7665 (source
7666 (origin
7667 (method url-fetch)
7668 (uri (string-append "mirror://cpan/authors/id/D/DW/DWHEELER/"
7669 "Test-Pod-" version ".tar.gz"))
7670 (sha256
7671 (base32
7672 "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"))))
7673 (build-system perl-build-system)
7674 (native-inputs `(("perl-module-build" ,perl-module-build)))
7675 (home-page "http://search.cpan.org/dist/Test-Pod")
7676 (synopsis "Check for POD errors in files")
7677 (description "Check POD files for errors or warnings in a test file, using
7678 Pod::Simple to do the heavy lifting.")
7679 (license (package-license perl))))
7680
7681 (define-public perl-test-pod-coverage
7682 (package
7683 (name "perl-test-pod-coverage")
7684 (version "1.10")
7685 (source
7686 (origin
7687 (method url-fetch)
7688 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
7689 "Test-Pod-Coverage-" version ".tar.gz"))
7690 (sha256
7691 (base32
7692 "1m203mhgfilz7iqc8mxaw4lw02fz391mni3n25sfx7nryylwrja8"))))
7693 (build-system perl-build-system)
7694 (propagated-inputs
7695 `(("perl-pod-coverage" ,perl-pod-coverage)))
7696 (home-page "http://search.cpan.org/dist/Test-Pod-Coverage")
7697 (synopsis "Check for pod coverage")
7698 (description "This module adds a test to your Perl distribution which
7699 checks for pod coverage of all appropriate files.")
7700 (license artistic2.0)))
7701
7702 (define-public perl-test-requires
7703 (package
7704 (name "perl-test-requires")
7705 (version "0.08")
7706 (source
7707 (origin
7708 (method url-fetch)
7709 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
7710 "Test-Requires-" version ".tar.gz"))
7711 (sha256
7712 (base32
7713 "08c29m0dn34384mmmpqqlbb899zpbkkc01c2lsp31mch1frv9cg7"))))
7714 (build-system perl-build-system)
7715 (home-page "http://search.cpan.org/dist/Test-Requires")
7716 (synopsis "Checks to see if the module can be loaded")
7717 (description "Test::Requires checks to see if the module can be loaded.
7718 If this fails, then rather than failing tests this skips all tests.")
7719 (license (package-license perl))))
7720
7721 (define-public perl-test-script
7722 (package
7723 (name "perl-test-script")
7724 (version "1.20")
7725 (source (origin
7726 (method url-fetch)
7727 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
7728 "Test-Script-" version ".tar.gz"))
7729 (sha256
7730 (base32
7731 "1msavbi6przkxq3npm90nv925v58iym9jrk677wn46x19whwzwzm"))))
7732 (build-system perl-build-system)
7733 (propagated-inputs
7734 `(("perl-capture-tiny" ,perl-capture-tiny)
7735 ("perl-probe-perl" ,perl-probe-perl)))
7736 (synopsis "Basic cross-platform tests for scripts")
7737 (description
7738 "The intent of the Test::Script module is to provide a series of basic
7739 tests for 80% of the testing you will need to do for scripts in the script (or
7740 bin as is also commonly used) paths of your Perl distribution.")
7741 (home-page "http://search.cpan.org/dist/Test-Script")
7742 (license (package-license perl))))
7743
7744 (define-public perl-test-sharedfork
7745 (package
7746 (name "perl-test-sharedfork")
7747 (version "0.29")
7748 (source
7749 (origin
7750 (method url-fetch)
7751 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
7752 "Test-SharedFork-" version ".tar.gz"))
7753 (sha256
7754 (base32
7755 "0vlak10q4gcf0ch0rfcb9lvddav6r8h15iipzbkbgf9mrj47gbv3"))))
7756 (build-system perl-build-system)
7757 (native-inputs
7758 `(("perl-test-requires" ,perl-test-requires)))
7759 (home-page "http://search.cpan.org/dist/Test-SharedFork")
7760 (synopsis "Fork test in Perl")
7761 (description "Test::SharedFork is a utility module for Test::Builder. It
7762 makes fork(2) safe to use in test cases.")
7763 (license (package-license perl))))
7764
7765 (define-public perl-test-simple
7766 (package
7767 (name "perl-test-simple")
7768 (version "1.302078")
7769 (source (origin
7770 (method url-fetch)
7771 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
7772 "Test-Simple-" version ".tar.gz"))
7773 (sha256
7774 (base32
7775 "05acl24kmz3dgr2nayy162yaf0kz92h1j5vkiavyv6mdh2lz6ixb"))))
7776 (build-system perl-build-system)
7777 (synopsis "Basic utilities for writing tests")
7778 (description
7779 "Test::Simple contains basic utilities for writing tests.")
7780 (home-page (string-append "http://search.cpan.org/~exodist/"
7781 "Test-Simple-" version))
7782 (license (package-license perl))))
7783
7784 (define-public perl-test-tester
7785 (package
7786 (name "perl-test-tester")
7787 (version "0.109")
7788 (source (origin
7789 (method url-fetch)
7790 (uri (string-append "mirror://cpan/authors/id/F/FD/FDALY/"
7791 "Test-Tester-" version ".tar.gz"))
7792 (sha256
7793 (base32
7794 "0m9n28z09kq455r5nydj1bnr85lvmbfpcbjdkjfbpmfb5xgciiyk"))))
7795 (build-system perl-build-system)
7796 (synopsis "Simplify running Test::Builder tests")
7797 (description
7798 "Test::Tester allows testing of test modules based on Test::Builder with
7799 a minimum of effort.")
7800 (home-page (string-append "http://search.cpan.org/~fdaly/"
7801 "Test-Tester-" version))
7802 ;; "Under the same license as Perl itself"
7803 (license (package-license perl))))
7804
7805 (define-public perl-test-trap
7806 (package
7807 (name "perl-test-trap")
7808 (version "0.3.2")
7809 (source
7810 (origin
7811 (method url-fetch)
7812 (uri (string-append "mirror://cpan/authors/id/E/EB/EBHANSSEN/"
7813 "Test-Trap-v" version ".tar.gz"))
7814 (sha256
7815 (base32
7816 "0jq54pkm4s61gk8gzxglix1ff9s0m9vi6bpfv7f63lb9qq4r76rr"))))
7817 (build-system perl-build-system)
7818 (native-inputs
7819 `(("perl-module-build" ,perl-module-build)
7820 ("perl-test-simple" ,perl-test-simple)))
7821 (propagated-inputs
7822 `(("perl-test-tester" ,perl-test-tester)
7823 ("perl-data-dump" ,perl-data-dump)))
7824 (home-page "http://search.cpan.org/dist/Test-Trap")
7825 (synopsis "Trap exit codes, exceptions, output, and so on")
7826 (description "This module is primarily (but not exclusively) for use in
7827 test scripts: A block eval configurable and extensible but by default trapping
7828 STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return values
7829 from boxed blocks of test code.")
7830 (license (package-license perl))))
7831
7832 (define-public perl-test-utf8
7833 (package
7834 (name "perl-test-utf8")
7835 (version "1.01")
7836 (source
7837 (origin
7838 (method url-fetch)
7839 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKF/"
7840 "Test-utf8-" version ".tar.gz"))
7841 (sha256
7842 (base32
7843 "0yhvf735v334qqvp9zg7i66qyk6r4cbk5s2psv93d3fdd4bindzg"))))
7844 (build-system perl-build-system)
7845 (native-inputs
7846 `(("perl-module-install" ,perl-module-install)))
7847 (home-page "http://search.cpan.org/dist/Test-utf8")
7848 (synopsis "UTF-8 testing in Perl")
7849 (description "This module is a collection of tests useful for dealing with
7850 UTF-8 strings in Perl. This module has two types of tests: The validity tests
7851 check if a string is valid and not corrupt, whereas the characteristics tests
7852 will check that string has a given set of characteristics.")
7853 (license (package-license perl))))
7854
7855 (define-public perl-test-warn
7856 (package
7857 (name "perl-test-warn")
7858 (version "0.30")
7859 (source
7860 (origin
7861 (method url-fetch)
7862 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
7863 "Test-Warn-" version ".tar.gz"))
7864 (sha256
7865 (base32
7866 "0haf2ii7br5z0psmkvlvmx2z2q9qz1c70gx0969r378qjidmb5w1"))))
7867 (build-system perl-build-system)
7868 (propagated-inputs
7869 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
7870 (home-page "http://search.cpan.org/dist/Test-Warn")
7871 (synopsis "Perl extension to test methods for warnings")
7872 (description "This module provides a few convenience methods for testing
7873 warning based code.")
7874 (license (package-license perl))))
7875
7876 (define-public perl-test-warnings
7877 (package
7878 (name "perl-test-warnings")
7879 (version "0.026")
7880 (source
7881 (origin
7882 (method url-fetch)
7883 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7884 "Test-Warnings-" version ".tar.gz"))
7885 (sha256
7886 (base32
7887 "024srkwjckp15dxkni9lb1hc8bg4xwc52zz0iich8rv1nnqnhaxf"))))
7888 (build-system perl-build-system)
7889 (home-page "http://search.cpan.org/dist/Test-Warnings")
7890 (synopsis "Test for warnings and the lack of them")
7891 (description "This module is intended to be used as a drop-in replacement
7892 for Test::NoWarnings. It also adds an extra test, but runs this test before
7893 done_testing calculates the test count, rather than after. It does this by
7894 hooking into done_testing as well as via an END block. You can declare a
7895 plan, or not, and things will still Just Work.")
7896 (license (package-license perl))))
7897
7898 (define-public perl-test-without-module
7899 (package
7900 (name "perl-test-without-module")
7901 (version "0.18")
7902 (source
7903 (origin
7904 (method url-fetch)
7905 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
7906 "Test-Without-Module-" version ".tar.gz"))
7907 (sha256
7908 (base32
7909 "0zwc2dk5srd02j4p049w77m89iw5nbff381rmhcbaz8x2w5kdhz2"))))
7910 (build-system perl-build-system)
7911 (home-page "http://search.cpan.org/dist/Test-Without-Module")
7912 (synopsis "Test fallback behaviour in absence of modules")
7913 (description "This module allows you to deliberately hide modules from a
7914 program even though they are installed. This is mostly useful for testing
7915 modules that have a fallback when a certain dependency module is not
7916 installed.")
7917 (license (package-license perl))))
7918
7919 (define-public perl-test-writevariants
7920 (package
7921 (name "perl-test-writevariants")
7922 (version "0.010")
7923 (source
7924 (origin
7925 (method url-fetch)
7926 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7927 "Test-WriteVariants-" version ".tar.gz"))
7928 (sha256
7929 (base32
7930 "0kklp05fj98yiq8znyfx9lx1vmjay2ypfb868qdwv3kf93m5zjwr"))))
7931 (build-system perl-build-system)
7932 (native-inputs
7933 `(("perl-test-most" ,perl-test-most)
7934 ("perl-test-directory" ,perl-test-directory)))
7935 (propagated-inputs
7936 `(("perl-data-tumbler" ,perl-data-tumbler)
7937 ("perl-file-homedir" ,perl-file-homedir)
7938 ("perl-module-pluggable" ,perl-module-pluggable)))
7939 (home-page "http://search.cpan.org/dist/Test-WriteVariants")
7940 (synopsis "Dynamic generation of tests")
7941 (description "The Test::WriteVariants module provides for the dynamic
7942 generation of tests in nested combinations of contexts.")
7943 (license (package-license perl)))) ;See LICENSE
7944
7945 (define-public perl-test-yaml
7946 (package
7947 (name "perl-test-yaml")
7948 (version "1.05")
7949 (source
7950 (origin
7951 (method url-fetch)
7952 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7953 "Test-YAML-" version ".tar.gz"))
7954 (sha256
7955 (base32
7956 "079nayc0fp2fwjv8s2yr069bdffln699j6z3lqr5dpx1v2qg82ck"))))
7957 (build-system perl-build-system)
7958 (propagated-inputs
7959 `(("perl-test-base" ,perl-test-base)))
7960 (home-page "http://search.cpan.org/dist/Test-YAML")
7961 (synopsis "Testing module for YAML implementations")
7962 (description "Test::YAML is a subclass of Test::Base with YAML specific
7963 support.")
7964 (license (package-license perl))))
7965
7966 (define-public perl-text-aligner
7967 (package
7968 (name "perl-text-aligner")
7969 (version "0.12")
7970 (source
7971 (origin
7972 (method url-fetch)
7973 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
7974 "Text-Aligner-" version ".tar.gz"))
7975 (sha256
7976 (base32
7977 "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
7978 (build-system perl-build-system)
7979 (native-inputs `(("perl-module-build" ,perl-module-build)))
7980 (home-page "http://search.cpan.org/dist/Text-Aligner")
7981 (synopsis "Align text")
7982 (description "Text::Aligner exports a single function, align(), which is
7983 used to justify strings to various alignment styles.")
7984 (license x11)))
7985
7986 (define-public perl-text-balanced
7987 (package
7988 (name "perl-text-balanced")
7989 (version "2.02")
7990 (source
7991 (origin
7992 (method url-fetch)
7993 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
7994 "Text-Balanced-" version ".tar.gz"))
7995 (sha256
7996 (base32
7997 "1d3mba2sjpp044h16pkf231cksa34ripaz6rmgxp0ygpl917az57"))))
7998 (build-system perl-build-system)
7999 (home-page "http://search.cpan.org/dist/Text-Balanced")
8000 (synopsis "Extract delimited text sequences from strings")
8001 (description "The Text::Balanced module can be used to extract delimited
8002 text sequences from strings.")
8003 (license (package-license perl))))
8004
8005 (define-public perl-text-csv
8006 (package
8007 (name "perl-text-csv")
8008 (version "1.33")
8009 (source
8010 (origin
8011 (method url-fetch)
8012 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
8013 "Text-CSV-" version ".tar.gz"))
8014 (sha256
8015 (base32
8016 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
8017 (build-system perl-build-system)
8018 (home-page "http://search.cpan.org/dist/Text-CSV")
8019 (synopsis "Manipulate comma-separated values")
8020 (description "Text::CSV provides facilities for the composition and
8021 decomposition of comma-separated values. An instance of the Text::CSV class
8022 can combine fields into a CSV string and parse a CSV string into fields.")
8023 (license (package-license perl))))
8024
8025 (define-public perl-text-csv-xs
8026 (package
8027 (name "perl-text-csv-xs")
8028 (version "1.25")
8029 (source
8030 (origin
8031 (method url-fetch)
8032 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
8033 "Text-CSV_XS-" version ".tgz"))
8034 (sha256
8035 (base32
8036 "06zlfbqrwbl0g2g3bhk6046yy5pf2rz80fzcp8aj47rnswz2yx5k"))))
8037 (build-system perl-build-system)
8038 (home-page "http://search.cpan.org/dist/Text-CSV_XS")
8039 (synopsis "Rountines for manipulating CSV files")
8040 (description "@code{Text::CSV_XS} provides facilities for the composition
8041 and decomposition of comma-separated values. An instance of the
8042 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
8043 CSV string into fields. The module accepts either strings or files as input
8044 and support the use of user-specified characters for delimiters, separators,
8045 and escapes.")
8046 (license (package-license perl))))
8047
8048 (define-public perl-text-diff
8049 (package
8050 (name "perl-text-diff")
8051 (version "1.44")
8052 (source
8053 (origin
8054 (method url-fetch)
8055 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8056 "Text-Diff-" version ".tar.gz"))
8057 (sha256
8058 (base32
8059 "041v92zla2acdc433f47giridf6p820sdczs7x5d71fhsyza1xsp"))))
8060 (build-system perl-build-system)
8061 (propagated-inputs
8062 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
8063 (home-page "http://search.cpan.org/dist/Text-Diff")
8064 (synopsis "Perform diffs on files and record sets")
8065 (description "Text::Diff provides a basic set of services akin to the GNU
8066 diff utility. It is not anywhere near as feature complete as GNU diff, but it
8067 is better integrated with Perl and available on all platforms. It is often
8068 faster than shelling out to a system's diff executable for small files, and
8069 generally slower on larger files.")
8070 (license (package-license perl))))
8071
8072 (define-public perl-text-glob
8073 (package
8074 (name "perl-text-glob")
8075 (version "0.09")
8076 (source
8077 (origin
8078 (method url-fetch)
8079 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8080 "Text-Glob-" version ".tar.gz"))
8081 (sha256
8082 (base32
8083 "0lr76wrsj8wcxrq4wi8z1640w4dmdbkznp06q744rg3g0bd238d5"))))
8084 (build-system perl-build-system)
8085 (native-inputs `(("perl-module-build" ,perl-module-build)))
8086 (home-page "http://search.cpan.org/dist/Text-Glob")
8087 (synopsis "Match globbing patterns against text")
8088 (description "Text::Glob implements glob(3) style matching that can be
8089 used to match against text, rather than fetching names from a file system. If
8090 you want to do full file globbing use the File::Glob module instead.")
8091 (license (package-license perl))))
8092
8093 (define-public perl-text-neattemplate
8094 (package
8095 (name "perl-text-neattemplate")
8096 (version "0.1101")
8097 (source
8098 (origin
8099 (method url-fetch)
8100 (uri (string-append
8101 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
8102 "Text-NeatTemplate-" version ".tar.gz"))
8103 (sha256
8104 (base32
8105 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
8106 (build-system perl-build-system)
8107 (native-inputs
8108 `(("perl-module-build" ,perl-module-build)))
8109 (home-page
8110 "http://search.cpan.org/dist/Text-NeatTemplate")
8111 (synopsis "Fast, middleweight template engine")
8112 (description
8113 "Text::NeatTemplate provides a simple, middleweight but fast
8114 template engine, for when you need speed rather than complex features,
8115 yet need more features than simple variable substitution.")
8116 (license (package-license perl))))
8117
8118 (define-public perl-text-roman
8119 (package
8120 (name "perl-text-roman")
8121 (version "3.5")
8122 (source
8123 (origin
8124 (method url-fetch)
8125 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
8126 version ".tar.gz"))
8127 (sha256
8128 (base32
8129 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
8130 (build-system perl-build-system)
8131 (home-page "http://search.cpan.org/dist/Text-Roman")
8132 (synopsis "Convert between Roman and Arabic algorisms")
8133 (description "This package provides functions to convert between Roman and
8134 Arabic algorisms. It supports both conventional Roman algorisms (which range
8135 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
8136 algorism to indicate multiplication by 1000.")
8137 (license (package-license perl))))
8138
8139 (define-public perl-text-simpletable
8140 (package
8141 (name "perl-text-simpletable")
8142 (version "2.03")
8143 (source
8144 (origin
8145 (method url-fetch)
8146 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
8147 "Text-SimpleTable-" version ".tar.gz"))
8148 (sha256
8149 (base32
8150 "15hpry9jwrf1vbjyk21s65rllxrdvp2fdzzv9gsvczggby2yyzfs"))))
8151 (build-system perl-build-system)
8152 (home-page "http://search.cpan.org/dist/Text-SimpleTable")
8153 (synopsis "Simple ASCII tables")
8154 (description "Text::SimpleTable draws simple ASCII tables.")
8155 (license artistic2.0)))
8156
8157 (define-public perl-text-table
8158 (package
8159 (name "perl-text-table")
8160 (version "1.130")
8161 (source
8162 (origin
8163 (method url-fetch)
8164 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8165 "Text-Table-" version ".tar.gz"))
8166 (sha256
8167 (base32
8168 "02c8v38k639r23dgxwgvsy4myjjzvgdb238kpiffsiz25ab3xp5j"))))
8169 (build-system perl-build-system)
8170 (native-inputs
8171 `(("perl-module-build" ,perl-module-build)))
8172 (propagated-inputs
8173 `(("perl-text-aligner" ,perl-text-aligner)))
8174 (home-page "http://search.cpan.org/dist/Text-Table")
8175 (synopsis "Organize Data in Tables")
8176 (description "Text::Table renders plaintext tables.")
8177 (license x11)))
8178
8179 (define-public perl-text-template
8180 (package
8181 (name "perl-text-template")
8182 (version "1.47")
8183 (source
8184 (origin
8185 (method url-fetch)
8186 (uri (string-append
8187 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
8188 version
8189 ".tar.gz"))
8190 (sha256
8191 (base32
8192 "1z781cgz7wbn80lf3kqr2ad0pg6g1wlnim0822h8liw28k3l5msh"))))
8193 (build-system perl-build-system)
8194 (home-page
8195 "http://search.cpan.org/dist/Text-Template")
8196 (synopsis
8197 "Expand template text with embedded Perl")
8198 (description
8199 "This is a library for generating letters, building HTML pages, or
8200 filling in templates generally. A template is a piece of text that has little
8201 Perl programs embedded in it here and there. When you fill in a template, you
8202 evaluate the little programs and replace them with their values.")
8203 (license perl-license)))
8204
8205 (define-public perl-text-unidecode
8206 (package
8207 (name "perl-text-unidecode")
8208 (version "1.23")
8209 (source
8210 (origin
8211 (method url-fetch)
8212 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
8213 "Text-Unidecode-" version ".tar.gz"))
8214 (sha256
8215 (base32
8216 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
8217 (build-system perl-build-system)
8218 (home-page "http://search.cpan.org/dist/Text-Unidecode")
8219 (synopsis "Provide plain ASCII transliterations of Unicode text")
8220 (description "Text::Unidecode provides a function, unidecode(...) that
8221 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
8222 universally displayable characters between 0x00 and 0x7F). The representation
8223 is almost always an attempt at transliteration-- i.e., conveying, in Roman
8224 letters, the pronunciation expressed by the text in some other writing
8225 system.")
8226 (license (package-license perl))))
8227
8228 (define-public perl-throwable
8229 (package
8230 (name "perl-throwable")
8231 (version "0.200012")
8232 (source
8233 (origin
8234 (method url-fetch)
8235 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8236 "Throwable-" version ".tar.gz"))
8237 (sha256
8238 (base32
8239 "0cy8kza9pd9y5m7k5385asf4xqm54vdqnqm0am10z6j2mrxwr527"))))
8240 (build-system perl-build-system)
8241 (native-inputs
8242 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
8243 (propagated-inputs
8244 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8245 ("perl-module-runtime" ,perl-module-runtime)
8246 ("perl-moo" ,perl-moo)))
8247 (home-page "http://search.cpan.org/dist/Throwable")
8248 (synopsis "Role for classes that can be thrown")
8249 (description "Throwable is a role for classes that are meant to be thrown
8250 as exceptions to standard program flow.")
8251 (license (package-license perl))))
8252
8253 (define-public perltidy
8254 (package
8255 (name "perltidy")
8256 (version "20160302")
8257 (source (origin
8258 (method url-fetch)
8259 (uri (string-append "mirror://sourceforge/perltidy/" version
8260 "/Perl-Tidy-" version ".tar.gz"))
8261 (sha256
8262 (base32
8263 "19yw63yh5s3pq7k3nkw6nsamg5b8vvwyhgbizslgxg0mqgc4xl3d"))))
8264 (build-system perl-build-system)
8265 (home-page "http://perltidy.sourceforge.net/")
8266 (synopsis "Perl script tidier")
8267 (description "This package contains a Perl script which indents and
8268 reformats Perl scripts to make them easier to read. The formatting can be
8269 controlled with command line parameters. The default parameter settings
8270 approximately follow the suggestions in the Perl Style Guide.")
8271 (license gpl2+)))
8272
8273 (define-public perl-tie-cycle
8274 (package
8275 (name "perl-tie-cycle")
8276 (version "1.221")
8277 (source
8278 (origin
8279 (method url-fetch)
8280 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
8281 version ".tar.gz"))
8282 (sha256
8283 (base32
8284 "10g6kirf6jfaldckg98y4pl87vrm7grqlg6ymb7a9vhrznyn7qn6"))))
8285 (build-system perl-build-system)
8286 (home-page "http://search.cpan.org/dist/Tie-Cycle")
8287 (synopsis "Cycle through a list of values")
8288 (description "You use @code{Tie::Cycle} to go through a list over and over
8289 again. Once you get to the end of the list, you go back to the beginning.")
8290 (license (package-license perl))))
8291
8292 (define-public perl-tie-ixhash
8293 (package
8294 (name "perl-tie-ixhash")
8295 (version "1.23")
8296 (source
8297 (origin
8298 (method url-fetch)
8299 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
8300 "Tie-IxHash-" version ".tar.gz"))
8301 (sha256
8302 (base32
8303 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
8304 (build-system perl-build-system)
8305 (native-inputs `(("perl-module-build" ,perl-module-build)))
8306 (home-page "http://search.cpan.org/dist/Tie-IxHash")
8307 (synopsis "Ordered associative arrays for Perl")
8308 (description "This Perl module implements Perl hashes that preserve the
8309 order in which the hash elements were added. The order is not affected when
8310 values corresponding to existing keys in the IxHash are changed. The elements
8311 can also be set to any arbitrary supplied order. The familiar perl array
8312 operations can also be performed on the IxHash.")
8313 (license (package-license perl))))
8314
8315 (define-public perl-tie-toobject
8316 (package
8317 (name "perl-tie-toobject")
8318 (version "0.03")
8319 (source
8320 (origin
8321 (method url-fetch)
8322 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
8323 "Tie-ToObject-" version ".tar.gz"))
8324 (sha256
8325 (base32
8326 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
8327 (build-system perl-build-system)
8328 (propagated-inputs
8329 `(("perl-test-simple" ,perl-test-simple)))
8330 (home-page "http://search.cpan.org/dist/Tie-ToObject")
8331 (synopsis "Tie to an existing Perl object")
8332 (description "This class provides a tie constructor that returns the
8333 object it was given as it's first argument. This way side effects of calling
8334 $object->TIEHASH are avoided.")
8335 (license (package-license perl))))
8336
8337 (define-public perl-time-duration
8338 (package
8339 (name "perl-time-duration")
8340 (version "1.1")
8341 (source
8342 (origin
8343 (method url-fetch)
8344 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
8345 "Time-Duration-" version ".tar.gz"))
8346 (sha256
8347 (base32
8348 "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
8349 (build-system perl-build-system)
8350 (native-inputs
8351 `(("perl-module-install" ,perl-module-install)
8352 ("perl-test-pod" ,perl-test-pod)
8353 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8354 (home-page "http://search.cpan.org/dist/Time-Duration")
8355 (synopsis "English expression of durations")
8356 (description "This module provides functions for expressing durations in
8357 rounded or exact terms.")
8358 (license (package-license perl))))
8359
8360 (define-public perl-time-duration-parse
8361 (package
8362 (name "perl-time-duration-parse")
8363 (version "0.13")
8364 (source
8365 (origin
8366 (method url-fetch)
8367 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8368 "Time-Duration-Parse-" version ".tar.gz"))
8369 (sha256
8370 (base32
8371 "0affdzhsiy7dr6dzj2p6m9lynmjh53k31bprfsfa21pz8551hjj1"))))
8372 (build-system perl-build-system)
8373 (native-inputs
8374 `(("perl-time-duration" ,perl-time-duration)))
8375 (propagated-inputs
8376 `(("perl-exporter-lite" ,perl-exporter-lite)))
8377 (home-page "http://search.cpan.org/dist/Time-Duration-Parse")
8378 (synopsis "Parse time duration strings")
8379 (description "Time::Duration::Parse is a module to parse human readable
8380 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
8381 (license (package-license perl))))
8382
8383 (define-public perl-time-local
8384 (package
8385 (name "perl-time-local")
8386 (version "1.2300")
8387 (source
8388 (origin
8389 (method url-fetch)
8390 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8391 "Time-Local-" version ".tar.gz"))
8392 (sha256
8393 (base32
8394 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
8395 (build-system perl-build-system)
8396 (home-page "http://search.cpan.org/dist/Time-Local")
8397 (synopsis "Efficiently compute time from local and GMT time")
8398 (description "This module provides functions that are the inverse of
8399 built-in perl functions localtime() and gmtime(). They accept a date as a
8400 six-element array, and return the corresponding time(2) value in seconds since
8401 the system epoch.")
8402 (license (package-license perl))))
8403
8404 (define-public perl-timedate
8405 (package
8406 (name "perl-timedate")
8407 (version "2.30")
8408 (source
8409 (origin
8410 (method url-fetch)
8411 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
8412 "TimeDate-" version ".tar.gz"))
8413 (sha256
8414 (base32
8415 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
8416 (build-system perl-build-system)
8417 (home-page "http://search.cpan.org/dist/TimeDate")
8418 (synopsis "Date parsing/formatting subroutines")
8419 (description "This module provides routines for parsing date string into
8420 time values and formatting dates into ASCII strings.")
8421 (license (package-license perl))))
8422
8423 (define-public perl-time-mock
8424 (package
8425 (name "perl-time-mock")
8426 (version "v0.0.2")
8427 (source
8428 (origin
8429 (method url-fetch)
8430 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
8431 "Time-Mock-" version ".tar.gz"))
8432 (sha256
8433 (base32
8434 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
8435 (build-system perl-build-system)
8436 (native-inputs
8437 `(("perl-module-build" ,perl-module-build)))
8438 (propagated-inputs
8439 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
8440 (home-page "http://search.cpan.org/dist/Time-Mock")
8441 (synopsis "Shift and scale time")
8442 (description "This module allows you to speed up your sleep(), alarm(),
8443 and time() calls.")
8444 (license (package-license perl))))
8445
8446 (define-public perl-tree-simple
8447 (package
8448 (name "perl-tree-simple")
8449 (version "1.25")
8450 (source
8451 (origin
8452 (method url-fetch)
8453 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8454 "Tree-Simple-" version ".tgz"))
8455 (sha256
8456 (base32
8457 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
8458 (build-system perl-build-system)
8459 (native-inputs
8460 `(("perl-module-build" ,perl-module-build)
8461 ("perl-test-exception" ,perl-test-exception)))
8462 (propagated-inputs
8463 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
8464 (home-page "http://search.cpan.org/dist/Tree-Simple")
8465 (synopsis "Simple tree object")
8466 (description "This module in a fully object-oriented implementation of a
8467 simple n-ary tree.")
8468 (license (package-license perl))))
8469
8470 (define-public perl-tree-simple-visitorfactory
8471 (package
8472 (name "perl-tree-simple-visitorfactory")
8473 (version "0.12")
8474 (source
8475 (origin
8476 (method url-fetch)
8477 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8478 "Tree-Simple-VisitorFactory-" version ".tgz"))
8479 (sha256
8480 (base32
8481 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
8482 (build-system perl-build-system)
8483 (native-inputs
8484 `(("perl-module-build" ,perl-module-build)
8485 ("perl-test-exception" ,perl-test-exception)))
8486 (propagated-inputs
8487 `(("perl-tree-simple" ,perl-tree-simple)
8488 ("perl-base" ,perl-base)))
8489 (home-page "http://search.cpan.org/dist/Tree-Simple-VisitorFactory")
8490 (synopsis "Factory object for dispensing Visitor objects")
8491 (description "This module is a factory for dispensing
8492 Tree::Simple::Visitor::* objects.")
8493 (license (package-license perl))))
8494
8495 (define-public perl-try-tiny
8496 (package
8497 (name "perl-try-tiny")
8498 (version "0.22")
8499 (source
8500 (origin
8501 (method url-fetch)
8502 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8503 "Try-Tiny-" version ".tar.gz"))
8504 (sha256
8505 (base32
8506 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
8507 (build-system perl-build-system)
8508 (home-page "http://search.cpan.org/dist/Try-Tiny")
8509 (synopsis "Minimal try/catch with proper preservation of $@@")
8510 (description "This module provides bare bones try/catch/finally statements
8511 that are designed to minimize common mistakes with eval blocks, and nothing
8512 else.")
8513 (license x11)))
8514
8515 (define-public perl-type-tie
8516 (package
8517 (name "perl-type-tie")
8518 (version "0.009")
8519 (source
8520 (origin
8521 (method url-fetch)
8522 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8523 "Type-Tie-" version ".tar.gz"))
8524 (sha256
8525 (base32
8526 "1wv32kd7gx4kfyvzs13y029f49qbbji991wawvarac7rlz09wpan"))))
8527 (build-system perl-build-system)
8528 (native-inputs
8529 `(("perl-test-fatal" ,perl-test-fatal)
8530 ("perl-test-requires" ,perl-test-requires)))
8531 (propagated-inputs
8532 `(("perl-exporter-tiny" ,perl-exporter-tiny)
8533 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
8534 (home-page "http://search.cpan.org/dist/Type-Tie")
8535 (synopsis "Tie a variable to a type constraint")
8536 (description "This module exports a single function: @code{ttie}. It ties
8537 a variable to a type constraint, ensuring that whatever values stored in the
8538 variable will conform to the type constraint. If the type constraint has
8539 coercions, these will be used if necessary to ensure values assigned to the
8540 variable conform.")
8541 (license (package-license perl))))
8542
8543 (define-public perl-type-tiny
8544 (package
8545 (name "perl-type-tiny")
8546 (version "1.002001")
8547 (source
8548 (origin
8549 (method url-fetch)
8550 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8551 "Type-Tiny-" version ".tar.gz"))
8552 (sha256
8553 (base32
8554 "1p8krim8kvw123nady96fagi8sk2pj1z8jkr4r8n45ihyamfxjck"))))
8555 (build-system perl-build-system)
8556 (native-inputs
8557 `(("perl-test-warnings" ,perl-test-warnings)))
8558 (propagated-inputs
8559 `(("perl-devel-lexalias" ,perl-devel-lexalias)
8560 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
8561 ("perl-exporter-tiny" ,perl-exporter-tiny)
8562 ("perl-moo" ,perl-moo)
8563 ("perl-moose" ,perl-moose)
8564 ("perl-mouse" ,perl-mouse)
8565 ("perl-ref-util-xs" ,perl-ref-util-xs)
8566 ("perl-regexp-util" ,perl-regexp-util)
8567 ("perl-type-tie" ,perl-type-tie)))
8568 (home-page "http://search.cpan.org/dist/Type-Tiny")
8569 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
8570 (description "@code{Type::Tiny} is a small class for writing type
8571 constraints, inspired by Moose's type constraint API. It has only one
8572 non-core dependency (and even that is simply a module that was previously
8573 distributed as part of @code{Type::Tiny} but has since been spun off), and can
8574 be used with Moose, Mouse and Moo (or none of the above).")
8575 (license (package-license perl))))
8576
8577 (define-public perl-types-serialiser
8578 (package
8579 (name "perl-types-serialiser")
8580 (version "1.0")
8581 (source
8582 (origin
8583 (method url-fetch)
8584 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
8585 "Types-Serialiser-" version ".tar.gz"))
8586 (sha256
8587 (base32
8588 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
8589 (build-system perl-build-system)
8590 (propagated-inputs
8591 `(("perl-common-sense" ,perl-common-sense)))
8592 (home-page "http://search.cpan.org/dist/Types-Serialiser")
8593 (synopsis "Data types for common serialisation formats")
8594 (description "This module provides some extra datatypes that are used by
8595 common serialisation formats such as JSON or CBOR.")
8596 (license (package-license perl))))
8597
8598 (define-public perl-unicode-normalize
8599 (package
8600 (name "perl-unicode-normalize")
8601 (version "1.25")
8602 (source
8603 (origin
8604 (method url-fetch)
8605 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8606 "Unicode-Normalize-" version ".tar.gz"))
8607 (sha256
8608 (base32
8609 "0v04bcyjfcfap4kfpc8q3ikq3j7s68nym4ckw3iasmmksdskmcq0"))))
8610 (build-system perl-build-system)
8611 (arguments
8612 '(#:phases (modify-phases %standard-phases
8613 (add-before 'configure 'set-search-path
8614 (lambda _
8615 ;; Work around "dotless @INC" build failure.
8616 (setenv "PERL5LIB"
8617 (string-append (getcwd) ":"
8618 (getenv "PERL5LIB")))
8619 #t)))))
8620 (home-page "http://search.cpan.org/dist/Unicode-Normalize")
8621 (synopsis "Unicode normalization forms")
8622 (description "This Perl module provides Unicode normalization forms.")
8623 (license (package-license perl))))
8624
8625 (define-public perl-unicode-collate
8626 (package
8627 (name "perl-unicode-collate")
8628 (version "1.18")
8629 (source
8630 (origin
8631 (method url-fetch)
8632 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
8633 "Unicode-Collate-" version ".tar.gz"))
8634 (sha256
8635 (base32
8636 "1lq4p3mqqljhhy8wyiyahris33j4m5qfzpi6iacmcqjzw5g4afbm"))))
8637 (build-system perl-build-system)
8638 (arguments
8639 `(#:phases
8640 (modify-phases %standard-phases
8641 (add-before 'configure 'set-perl-search-path
8642 (lambda _
8643 ;; Work around "dotless @INC" build failure.
8644 (setenv "PERL5LIB"
8645 (string-append (getcwd) ":"
8646 (getenv "PERL5LIB")))
8647 #t)))))
8648 (propagated-inputs
8649 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
8650 (home-page "http://search.cpan.org/dist/Unicode-Collate")
8651 (synopsis "Unicode collation algorithm")
8652 (description "This package provides tools for sorting and comparing
8653 Unicode data.")
8654 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
8655 ;; license.
8656 (license (list (package-license perl) expat))))
8657
8658 (define-public perl-unicode-linebreak
8659 (package
8660 (name "perl-unicode-linebreak")
8661 (version "2016.003")
8662 (source (origin
8663 (method url-fetch)
8664 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
8665 "Unicode-LineBreak-" version ".tar.gz"))
8666 (sha256
8667 (base32
8668 "096wf5x99swx7l7yd8pm2aw50g596nf50rkq7250zjcc1acjskp6"))))
8669 (build-system perl-build-system)
8670 (propagated-inputs
8671 `(("perl-mime-charset" ,perl-mime-charset)))
8672 (home-page "http://search.cpan.org/dist/Unicode-LineBreak")
8673 (synopsis "Unicode line breaking algorithm")
8674 (description
8675 "@code{Unicode::LineBreak} implements the line breaking algorithm
8676 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
8677 defined by Annex #11 is used to determine breaking positions.")
8678 (license (package-license perl))))
8679
8680 (define-public perl-unicode-utf8
8681 (package
8682 (name "perl-unicode-utf8")
8683 (version "0.62")
8684 (source (origin
8685 (method url-fetch)
8686 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
8687 "Unicode-UTF8-" version ".tar.gz"))
8688 (sha256
8689 (base32
8690 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
8691 (build-system perl-build-system)
8692 (native-inputs
8693 `(("perl-test-fatal" ,perl-test-fatal)
8694 ("perl-test-leaktrace" ,perl-test-leaktrace)
8695 ("perl-variable-magic" ,perl-variable-magic)
8696 ("perl-test-pod" ,perl-test-pod)))
8697 (home-page "http://search.cpan.org/dist/Unicode-UTF8")
8698 (synopsis "Encoding and decoding of UTF-8 encoding form")
8699 (description
8700 "This module provides functions to encode and decode UTF-8 encoding form
8701 as specified by Unicode and ISO/IEC 10646:2011.")
8702 (license (package-license perl))))
8703
8704 (define-public perl-universal-can
8705 (package
8706 (name "perl-universal-can")
8707 (version "1.20140328")
8708 (source
8709 (origin
8710 (method url-fetch)
8711 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
8712 "UNIVERSAL-can-" version ".tar.gz"))
8713 (sha256
8714 (base32
8715 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
8716 (build-system perl-build-system)
8717 (home-page "http://search.cpan.org/dist/UNIVERSAL-can")
8718 (synopsis "UNIVERSAL::can() reimplementation")
8719 (description "This module attempts to work around people calling
8720 UNIVERSAL::can() as a function, which it is not.")
8721 (license (package-license perl))))
8722
8723 (define-public perl-universal-isa
8724 (package
8725 (name "perl-universal-isa")
8726 (version "1.20140927")
8727 (source
8728 (origin
8729 (method url-fetch)
8730 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8731 "UNIVERSAL-isa-" version ".tar.gz"))
8732 (sha256
8733 (base32
8734 "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
8735 (build-system perl-build-system)
8736 (native-inputs
8737 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
8738 (home-page "http://search.cpan.org/dist/UNIVERSAL-isa")
8739 (synopsis "UNIVERSAL::isa() reimplementation")
8740 (description "This module attempts to recover from people calling
8741 UNIVERSAL::isa as a function.")
8742 (license (package-license perl))))
8743
8744 (define-public perl-variable-magic
8745 (package
8746 (name "perl-variable-magic")
8747 (version "0.61")
8748 (source
8749 (origin
8750 (method url-fetch)
8751 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
8752 "Variable-Magic-" version ".tar.gz"))
8753 (sha256
8754 (base32
8755 "1mx6z36c3wk61x6lag6kyws5g1cba68cw20vrb92wan7ahpfkbxq"))))
8756 (build-system perl-build-system)
8757 (home-page "http://search.cpan.org/dist/Variable-Magic")
8758 (synopsis "Associate user-defined magic to variables from Perl")
8759 (description "Magic is Perl's way of enhancing variables. This mechanism
8760 lets the user add extra data to any variable and hook syntactical
8761 operations (such as access, assignment or destruction) that can be applied to
8762 it. With this module, you can add your own magic to any variable without
8763 having to write a single line of XS.")
8764 (license (package-license perl))))
8765
8766 (define-public perl-xml-writer
8767 (package
8768 (name "perl-xml-writer")
8769 (version "0.625")
8770 (source
8771 (origin
8772 (method url-fetch)
8773 (uri (string-append
8774 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
8775 version
8776 ".tar.gz"))
8777 (sha256
8778 (base32
8779 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
8780 (build-system perl-build-system)
8781 (home-page "http://search.cpan.org/dist/XML-Writer")
8782 (synopsis "Easily generate well-formed, namespace-aware XML")
8783 (description "@code{XML::Writer} is a simple Perl module for writing XML
8784 documents: it takes care of constructing markup and escaping data correctly.
8785 By default, it also performs a significant amount of well-formedness checking
8786 on the output to make certain (for example) that start and end tags match,
8787 that there is exactly one document element, and that there are not duplicate
8788 attribute names.")
8789 ;; Redistribution and use in source and compiled forms, with or without
8790 ;; modification, are permitted under any circumstances. No warranty.
8791 (license public-domain)))
8792
8793 (define-public perl-xs-object-magic
8794 (package
8795 (name "perl-xs-object-magic")
8796 (version "0.04")
8797 (source (origin
8798 (method url-fetch)
8799 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
8800 "XS-Object-Magic-" version ".tar.gz"))
8801 (sha256
8802 (base32
8803 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
8804 (build-system perl-build-system)
8805 (native-inputs
8806 `(("perl-extutils-depends" ,perl-extutils-depends)
8807 ("perl-module-install" ,perl-module-install)
8808 ("perl-test-fatal" ,perl-test-fatal)))
8809 (home-page "http://search.cpan.org/dist/XS-Object-Magic")
8810 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
8811 (description
8812 "This way of associating structs with Perl space objects is designed to
8813 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
8814 (structs can be associated with any data type) and opaque (the C pointer is
8815 neither visible nor modifiable from Perl space).")
8816 (license (package-license perl))))
8817
8818 (define-public perl-yaml
8819 (package
8820 (name "perl-yaml")
8821 (version "1.23")
8822 (source
8823 (origin
8824 (method url-fetch)
8825 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
8826 "YAML-" version ".tar.gz"))
8827 (sha256
8828 (base32
8829 "0kf8mllrgnrmlvjijxc6srjj1y9i8rik5jpjvm8jh4yx70h9gn1a"))))
8830 (build-system perl-build-system)
8831 (native-inputs
8832 `(("perl-test-yaml" ,perl-test-yaml)))
8833 (home-page "http://search.cpan.org/dist/YAML")
8834 (synopsis "YAML for Perl")
8835 (description "The YAML.pm module implements a YAML Loader and Dumper based
8836 on the YAML 1.0 specification.")
8837 (license (package-license perl))))
8838
8839 (define-public perl-yaml-libyaml
8840 (package
8841 (name "perl-yaml-libyaml")
8842 (version "0.65")
8843 (source
8844 (origin
8845 (method url-fetch)
8846 (uri (string-append
8847 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
8848 version
8849 ".tar.gz"))
8850 (sha256
8851 (base32
8852 "0izhvz8f29x1f50hhwfgm0iq1lz7apjjvg77lmky949jr07hnwfv"))))
8853 (build-system perl-build-system)
8854 (home-page
8855 "http://search.cpan.org/dist/YAML-LibYAML")
8856 (synopsis
8857 "Perl YAML Serialization using XS and libyaml")
8858 (description
8859 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
8860 best YAML support to date.")
8861 (license perl-license)))
8862
8863 (define-public perl-yaml-tiny
8864 (package
8865 (name "perl-yaml-tiny")
8866 (version "1.66")
8867 (source
8868 (origin
8869 (method url-fetch)
8870 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8871 "YAML-Tiny-" version ".tar.gz"))
8872 (sha256
8873 (base32
8874 "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
8875 (build-system perl-build-system)
8876 (native-inputs
8877 `(("perl-json-maybexs" ,perl-json-maybexs)
8878 ("perl-module-build-tiny" ,perl-module-build-tiny)))
8879 (arguments
8880 `(#:tests? #f)) ;requires Test::More >= 0.99
8881 (home-page "http://search.cpan.org/dist/YAML-Tiny")
8882 (synopsis "Read/Write YAML files")
8883 (description "YAML::Tiny is a perl class for reading and writing
8884 YAML-style files, written with as little code as possible, reducing load time
8885 and memory overhead.")
8886 (license (package-license perl))))
8887
8888 (define-public perl-parse-yapp
8889 (package
8890 (name "perl-parse-yapp")
8891 (version "1.2")
8892 (source
8893 (origin
8894 (method url-fetch)
8895 (uri (string-append
8896 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
8897 version
8898 ".tar.gz"))
8899 (sha256
8900 (base32
8901 "16p4qgqg28cy76ylcf4wq1r693gqpx8xq0w32b3564i67h49zljb"))))
8902 (build-system perl-build-system)
8903 (home-page "http://search.cpan.org/dist/Parse-Yapp")
8904 (synopsis "Generate and use LALR parsers")
8905 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
8906 grammars to generate Perl object oriented parser modules.")
8907 (license (package-license perl))))
8908
8909 \f
8910 ;;; Some packaged modules need versions of core modules that are newer than
8911 ;;; those in our perl 5.16.1.
8912
8913 (define-public perl-cpan-meta
8914 (package
8915 (name "perl-cpan-meta")
8916 (version "2.143240")
8917 (source
8918 (origin
8919 (method url-fetch)
8920 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8921 "CPAN-Meta-" version ".tar.gz"))
8922 (sha256
8923 (base32
8924 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
8925 (build-system perl-build-system)
8926 (propagated-inputs
8927 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
8928 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
8929 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
8930 (home-page "http://search.cpan.org/dist/CPAN-Meta")
8931 (synopsis "Distribution metadata for a CPAN dist")
8932 (description "Software distributions released to the CPAN include a
8933 META.json or, for older distributions, META.yml, which describes the
8934 distribution, its contents, and the requirements for building and installing
8935 the distribution. The data structure stored in the META.json file is
8936 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
8937 represent this distribution metadata (or distmeta), along with some helpful
8938 methods for interrogating that data.")
8939 (license (package-license perl))))
8940
8941 (define-public perl-cpan-meta-requirements
8942 (package
8943 (name "perl-cpan-meta-requirements")
8944 (version "2.140")
8945 (source
8946 (origin
8947 (method url-fetch)
8948 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8949 "CPAN-Meta-Requirements-" version ".tar.gz"))
8950 (sha256
8951 (base32
8952 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
8953 (build-system perl-build-system)
8954 (home-page "http://search.cpan.org/dist/CPAN-Meta-Requirements")
8955 (synopsis "Set of version requirements for a CPAN dist")
8956 (description "A CPAN::Meta::Requirements object models a set of version
8957 constraints like those specified in the META.yml or META.json files in CPAN
8958 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
8959 adding more and more constraints, and will reduce them to the simplest
8960 representation.")
8961 (license (package-license perl))))
8962
8963 (define-public perl-cpan-meta-yaml
8964 (package
8965 (name "perl-cpan-meta-yaml")
8966 (version "0.018")
8967 (source
8968 (origin
8969 (method url-fetch)
8970 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8971 "CPAN-Meta-YAML-" version ".tar.gz"))
8972 (sha256
8973 (base32
8974 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
8975 (build-system perl-build-system)
8976 (arguments
8977 `(#:tests? #f)) ;Tests require Test::More >= 0.99
8978 (home-page "http://search.cpan.org/dist/CPAN-Meta-YAML")
8979 (synopsis "Read and write a subset of YAML for CPAN Meta files")
8980 (description "This module implements a subset of the YAML specification
8981 for use in reading and writing CPAN metadata files like META.yml and
8982 MYMETA.yml.")
8983 (license (package-license perl))))
8984
8985 (define-public perl-module-build
8986 (package
8987 (name "perl-module-build")
8988 (version "0.4220")
8989 (source
8990 (origin
8991 (method url-fetch)
8992 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
8993 "Module-Build-" version ".tar.gz"))
8994 (sha256
8995 (base32
8996 "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
8997 (build-system perl-build-system)
8998 (propagated-inputs
8999 `(("perl-cpan-meta" ,perl-cpan-meta)))
9000 (home-page "http://search.cpan.org/dist/Module-Build")
9001 (synopsis "Build and install Perl modules")
9002 (description "@code{Module::Build} is a system for building, testing, and
9003 installing Perl modules; it used to be part of Perl itself until version 5.22,
9004 which dropped it. It is meant to be an alternative to
9005 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
9006 through subclassing in a much more straightforward way than with
9007 @code{MakeMaker}. It also does not require a @command{make} on your
9008 system---most of the @code{Module::Build} code is pure-Perl.")
9009 (license (package-license perl))))
9010
9011 (define-public perl-parse-cpan-meta
9012 (package
9013 (name "perl-parse-cpan-meta")
9014 (version "2.150010")
9015 (source
9016 (origin
9017 (method url-fetch)
9018 ;; This module is now known as CPAN::Meta on CPAN.
9019 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9020 "CPAN-Meta-" version ".tar.gz"))
9021 (sha256
9022 (base32
9023 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
9024 (build-system perl-build-system)
9025 (propagated-inputs
9026 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
9027 (home-page "http://search.cpan.org/dist/Parse-CPAN-Meta")
9028 (synopsis "Parse META.yml and META.json CPAN metadata files")
9029 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
9030 files, using JSON::PP and/or CPAN::Meta::YAML.")
9031 (license (package-license perl))))
9032
9033 (define-public perl-scalar-list-utils
9034 (package
9035 (name "perl-scalar-list-utils")
9036 (version "1.47")
9037 (source
9038 (origin
9039 (method url-fetch)
9040 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
9041 "Scalar-List-Utils-" version ".tar.gz"))
9042 (sha256
9043 (base32
9044 "1qgg6zxqwziva5j1k5gjks4xmhmgklm551ni3zb74sd9f9rk90y4"))))
9045 (build-system perl-build-system)
9046 (home-page "http://search.cpan.org/dist/Scalar-List-Utils")
9047 (synopsis "Common Scalar and List utility subroutines")
9048 (description "This package contains a selection of subroutines that people
9049 have expressed would be nice to have in the perl core, but the usage would not
9050 really be high enough to warrant the use of a keyword, and the size so small
9051 such that being individual extensions would be wasteful.")
9052 (license (package-license perl))))
9053
9054 (define-public perl-shell-command
9055 (package
9056 (name "perl-shell-command")
9057 (version "0.06")
9058 (source
9059 (origin
9060 (method url-fetch)
9061 (uri (string-append
9062 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
9063 version
9064 ".tar.gz"))
9065 (sha256
9066 (base32
9067 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
9068 (build-system perl-build-system)
9069 (home-page
9070 "http://search.cpan.org/dist/Shell-Command")
9071 (synopsis
9072 "Cross-platform functions emulating common shell commands")
9073 (description
9074 "Shell::Command is a thin wrapper around ExtUtils::Command.")
9075 (license (package-license perl))))
9076
9077 ;;; END: Core module overrides
9078
9079 (define-public perl-file-find-object
9080 (package
9081 (name "perl-file-find-object")
9082 (version "v0.2.13")
9083 (source
9084 (origin
9085 (method url-fetch)
9086 (uri (string-append
9087 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
9088 version
9089 ".tar.gz"))
9090 (sha256
9091 (base32
9092 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
9093 (build-system perl-build-system)
9094 (native-inputs
9095 `(("perl-module-build" ,perl-module-build)))
9096 (inputs
9097 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
9098 (home-page
9099 "http://search.cpan.org/dist/File-Find-Object")
9100 (synopsis
9101 "Object-oriented File::Find replacement in Perl")
9102 (description "File::Find::Object is an object-oriented
9103 File::Find replacement in Perl.")
9104 (license artistic2.0)))
9105
9106 (define-public perl-file-find-object-rule
9107 (package
9108 (name "perl-file-find-object-rule")
9109 (version "0.0305")
9110 (source
9111 (origin
9112 (method url-fetch)
9113 (uri (string-append
9114 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
9115 version
9116 ".tar.gz"))
9117 (sha256
9118 (base32
9119 "0hs4n3w99q4ylkhg3qhzcwkxqn7zblfj1zjdgl06ca30afkk4cv6"))))
9120 (build-system perl-build-system)
9121 (native-inputs
9122 `(("perl-module-build" ,perl-module-build)))
9123 (inputs
9124 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
9125 ("perl-file-find-object" ,perl-file-find-object)
9126 ("perl-number-compare" ,perl-number-compare)
9127 ("perl-text-glob" ,perl-text-glob)))
9128 (home-page
9129 "http://search.cpan.org/dist/File-Find-Object-Rule")
9130 (synopsis
9131 "Alternative interface to File::Find::Object")
9132 (description "File::Find::Object::Rule is an alternative Perl
9133 interface to File::Find::Object.")
9134 (license (package-license perl))))
9135
9136 (define-public perl-test-trailingspace
9137 (package
9138 (name "perl-test-trailingspace")
9139 (version "0.0300")
9140 (source
9141 (origin
9142 (method url-fetch)
9143 (uri (string-append
9144 "mirror://cpan/authors/id/S/SH/SHLOMIF/Test-TrailingSpace-"
9145 version
9146 ".tar.gz"))
9147 (sha256
9148 (base32
9149 "01slmrcjfq38mpdg3hlb7lnnbgsqbn26958y3hzx0zwrif40pigr"))))
9150 (build-system perl-build-system)
9151 (native-inputs
9152 `(("perl-module-build" ,perl-module-build)
9153 ("perl-file-find-object" ,perl-file-find-object)
9154 ("perl-class-xsaccessor" ,perl-class-xsaccessor)))
9155 (inputs
9156 `(("perl-file-find-object-rule" ,perl-file-find-object-rule)
9157 ("perl-text-glob" ,perl-text-glob)
9158 ("perl-number-compare" ,perl-number-compare)))
9159 (home-page
9160 "http://search.cpan.org/dist/Test-TrailingSpace")
9161 (synopsis
9162 "Test for trailing space in Perl source files")
9163 (description "Test::TrailingSpace tests for trailing spaces
9164 in Perl source files.")
9165 (license x11)))