gnu: Update URLs for sourceforge.net.
[jackhill/guix/guix.git] / gnu / packages / perl.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015 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 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Coypright © 2016 ng0 <ng0@we.make.ritual.n0.is>
11 ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
12 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
13 ;;;
14 ;;; This file is part of GNU Guix.
15 ;;;
16 ;;; GNU Guix is free software; you can redistribute it and/or modify it
17 ;;; under the terms of the GNU General Public License as published by
18 ;;; the Free Software Foundation; either version 3 of the License, or (at
19 ;;; your option) any later version.
20 ;;;
21 ;;; GNU Guix is distributed in the hope that it will be useful, but
22 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;;; GNU General Public License for more details.
25 ;;;
26 ;;; You should have received a copy of the GNU General Public License
27 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
28
29 (define-module (gnu packages perl)
30 #:use-module (guix licenses)
31 #:use-module (gnu packages)
32 #:use-module (guix packages)
33 #:use-module (guix download)
34 #:use-module (guix build-system gnu)
35 #:use-module (guix build-system perl))
36
37 ;;;
38 ;;; Please: Try to add new module packages in alphabetic order.
39 ;;;
40
41 \f
42 (define-public perl
43 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
44 (package
45 (name "perl")
46 (version "5.22.1")
47 (source (origin
48 (method url-fetch)
49 (uri (string-append "http://www.cpan.org/src/5.0/perl-"
50 version ".tar.gz"))
51 (sha256
52 (base32
53 "09wg24w5syyafyv87l6z8pxwz4bjgcdj996bx5844k6m9445sirb"))
54 (patches (search-patches
55 "perl-no-sys-dirs.patch"
56 "perl-autosplit-default-time.patch"
57 "perl-source-date-epoch.patch"
58 "perl-deterministic-ordering.patch"
59 "perl-no-build-time.patch"
60 "perl-CVE-2015-8607.patch"
61 "perl-CVE-2016-2381.patch"))))
62 (build-system gnu-build-system)
63 (arguments
64 '(#:tests? #f
65 #:phases
66 (modify-phases %standard-phases
67 (replace
68 'configure
69 (lambda* (#:key inputs outputs #:allow-other-keys)
70 (let ((out (assoc-ref outputs "out"))
71 (libc (assoc-ref inputs "libc")))
72 ;; Use the right path for `pwd'.
73 (substitute* "dist/PathTools/Cwd.pm"
74 (("/bin/pwd")
75 (which "pwd")))
76
77 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
78 ;; <bits/string3.h>.
79 (substitute* "cflags.SH"
80 (("-std=c89")
81 "-std=gnu89"))
82
83 (zero?
84 (system* "./Configure"
85 (string-append "-Dprefix=" out)
86 (string-append "-Dman1dir=" out "/share/man/man1")
87 (string-append "-Dman3dir=" out "/share/man/man3")
88 "-de" "-Dcc=gcc"
89 "-Uinstallusrbinperl"
90 "-Dinstallstyle=lib/perl5"
91 "-Duseshrplib"
92 (string-append "-Dlocincpth=" libc "/include")
93 (string-append "-Dloclibpth=" libc "/lib")
94
95 ;; Force the library search path to contain only libc
96 ;; because it is recorded in Config.pm and
97 ;; Config_heavy.pl; we don't want to keep a reference
98 ;; to everything that's in $LIBRARY_PATH at build
99 ;; time (Binutils, bzip2, file, etc.)
100 (string-append "-Dlibpth=" libc "/lib")
101 (string-append "-Dplibpth=" libc "/lib"))))))
102
103 (add-before
104 'strip 'make-shared-objects-writable
105 (lambda* (#:key outputs #:allow-other-keys)
106 ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them
107 ;; writable so that 'strip' actually strips them.
108 (let* ((out (assoc-ref outputs "out"))
109 (lib (string-append out "/lib")))
110 (for-each (lambda (dso)
111 (chmod dso #o755))
112 (find-files lib "\\.so$"))))))))
113 (native-search-paths (list (search-path-specification
114 (variable "PERL5LIB")
115 (files '("lib/perl5/site_perl")))))
116 (synopsis "Implementation of the Perl programming language")
117 (description
118 "Perl 5 is a highly capable, feature-rich programming language with over
119 24 years of development.")
120 (home-page "http://www.perl.org/")
121 (license gpl1+))) ; or "Artistic"
122
123 (define-public perl-algorithm-c3
124 (package
125 (name "perl-algorithm-c3")
126 (version "0.10")
127 (source
128 (origin
129 (method url-fetch)
130 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
131 "Algorithm-C3-" version ".tar.gz"))
132 (sha256
133 (base32
134 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
135 (build-system perl-build-system)
136 (home-page "http://search.cpan.org/dist/Algorithm-C3")
137 (synopsis "Module for merging hierarchies using the C3 algorithm")
138 (description "This module implements the C3 algorithm, which aims to
139 provide a sane method resolution order under multiple inheritance.")
140 (license (package-license perl))))
141
142 (define-public perl-algorithm-diff
143 (package
144 (name "perl-algorithm-diff")
145 (version "1.1903")
146 (source
147 (origin
148 (method url-fetch)
149 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
150 "Algorithm-Diff-" version ".tar.gz"))
151 (sha256
152 (base32
153 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
154 (build-system perl-build-system)
155 (home-page "http://search.cpan.org/dist/Algorithm-Diff")
156 (synopsis "Compute differences between two files or lists")
157 (description "This is a module for computing the difference between two
158 files, two strings, or any other two lists of things. It uses an intelligent
159 algorithm similar to (or identical to) the one used by the Unix \"diff\"
160 program. It is guaranteed to find the *smallest possible* set of
161 differences.")
162 (license (package-license perl))))
163
164 (define-public perl-aliased
165 (package
166 (name "perl-aliased")
167 (version "0.34")
168 (source
169 (origin
170 (method url-fetch)
171 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
172 "aliased-" version ".tar.gz"))
173 (sha256
174 (base32
175 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
176 (build-system perl-build-system)
177 (native-inputs `(("perl-module-build" ,perl-module-build)))
178 (home-page "http://search.cpan.org/dist/aliased")
179 (synopsis "Use shorter versions of class names")
180 (description "The alias module loads the class you specify and exports
181 into your namespace a subroutine that returns the class name. You can
182 explicitly alias the class to another name or, if you prefer, you can do so
183 implicitly.")
184 (license (package-license perl))))
185
186 (define-public perl-appconfig
187 (package
188 (name "perl-appconfig")
189 (version "1.71")
190 (source
191 (origin
192 (method url-fetch)
193 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
194 "AppConfig-" version ".tar.gz"))
195 (sha256
196 (base32
197 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
198 (build-system perl-build-system)
199 (native-inputs
200 `(("perl-test-pod" ,perl-test-pod)))
201 (home-page "http://search.cpan.org/dist/AppConfig")
202 (synopsis "Configuration files and command line parsing")
203 (description "AppConfig is a bundle of Perl5 modules for reading
204 configuration files and parsing command line arguments.")
205 (license (package-license perl))))
206
207 (define-public perl-archive-zip
208 (package
209 (name "perl-archive-zip")
210 (version "1.30")
211 (source
212 (origin
213 (method url-fetch)
214 (uri (string-append
215 "mirror://cpan/authors/id/A/AD/ADAMK/Archive-Zip-"
216 version ".tar.gz"))
217 (sha256
218 (base32
219 "0633zah5z9njiqnvy3vh42fjymncmil1jdfb7d18w8xpfzzp5d7q"))))
220 (build-system perl-build-system)
221 (synopsis "Perl API to zip files")
222 (description "The Archive::Zip module allows a Perl program to create,
223 manipulate, read, and write Zip archive files.")
224 (home-page "http://search.cpan.org/~phred/Archive-Zip-1.37/lib/Archive/Zip.pm")
225 (license (package-license perl))))
226
227 (define-public perl-base
228 (package
229 (name "perl-base")
230 (version "2.18")
231 (source
232 (origin
233 (method url-fetch)
234 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
235 "base-" version ".tar.gz"))
236 (sha256
237 (base32
238 "01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
239 (build-system perl-build-system)
240 (home-page "http://search.cpan.org/dist/base")
241 (synopsis "Establish an ISA relationship with base classes at compile time")
242 (description "Allows you to both load one or more modules, while setting
243 up inheritance from those modules at the same time. Unless you are using the
244 fields pragma, consider this module discouraged in favor of the lighter-weight
245 parent.")
246 (license (package-license perl)))) ;See README
247
248 (define-public perl-b-hooks-endofscope
249 (package
250 (name "perl-b-hooks-endofscope")
251 (version "0.13")
252 (source
253 (origin
254 (method url-fetch)
255 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
256 "B-Hooks-EndOfScope-" version ".tar.gz"))
257 (sha256
258 (base32
259 "1f5d0lbkwf23dfjn60g6fynmjhy5rxdyxcpdfb07srm73qpg2zpi"))))
260 (build-system perl-build-system)
261 (propagated-inputs
262 `(("perl-module-runtime" ,perl-module-runtime)
263 ("perl-module-implementation" ,perl-module-implementation)
264 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
265 ("perl-variable-magic" ,perl-variable-magic)))
266 (home-page "http://search.cpan.org/dist/B-Hooks-EndOfScope")
267 (synopsis "Execute code after a scope finished compilation")
268 (description "This module allows you to execute code when perl finished
269 compiling the surrounding scope.")
270 (license (package-license perl))))
271
272 (define-public perl-benchmark-timer
273 (package
274 (name "perl-benchmark-timer")
275 (version "0.7102")
276 (source (origin
277 (method url-fetch)
278 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
279 "Benchmark-Timer-" version ".tar.gz"))
280 (sha256
281 (base32
282 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
283 (build-system perl-build-system)
284 ;; The optional input module Statistics::PointEstimation (from
285 ;; Statistics-TTest) lists no license.
286 (synopsis "Benchmarking with statistical confidence")
287 (description
288 "The Benchmark::Timer class allows you to time portions of code
289 conveniently, as well as benchmark code by allowing timings of repeated
290 trials. It is perfect for when you need more precise information about the
291 running time of portions of your code than the Benchmark module will give you,
292 but don't want to go all out and profile your code.")
293 (home-page (string-append "http://search.cpan.org/~dcoppit/"
294 "Benchmark-Timer-" version))
295 (license gpl2)))
296
297 (define-public perl-bit-vector
298 (package
299 (name "perl-bit-vector")
300 (version "7.4")
301 (source
302 (origin
303 (method url-fetch)
304 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
305 "Bit-Vector-" version ".tar.gz"))
306 (sha256
307 (base32
308 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
309 (build-system perl-build-system)
310 (propagated-inputs
311 `(("perl-carp-clan" ,perl-carp-clan)))
312 (home-page "http://search.cpan.org/dist/Bit-Vector")
313 (synopsis "Bit vector library")
314 (description "Bit::Vector is an efficient C library which allows you to
315 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
316 matrices, all of arbitrary sizes. The package also includes an
317 object-oriented Perl module for accessing the C library from Perl, and
318 optionally features overloaded operators for maximum ease of use. The C
319 library can nevertheless be used stand-alone, without Perl.")
320 (license (list (package-license perl) lgpl2.0+))))
321
322 (define-public perl-boolean
323 (package
324 (name "perl-boolean")
325 (version "0.45")
326 (source
327 (origin
328 (method url-fetch)
329 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
330 "boolean-" version ".tar.gz"))
331 (sha256
332 (base32
333 "18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"))))
334 (build-system perl-build-system)
335 (home-page "http://search.cpan.org/dist/boolean")
336 (synopsis "Boolean support for Perl")
337 (description "This module provides basic Boolean support, by defining two
338 special objects: true and false.")
339 (license (package-license perl))))
340
341 (define-public perl-cache-cache
342 (package
343 (name "perl-cache-cache")
344 (version "1.08")
345 (source (origin
346 (method url-fetch)
347 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
348 "Cache-Cache-" version ".tar.gz"))
349 (sha256
350 (base32
351 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
352 (build-system perl-build-system)
353 (propagated-inputs
354 `(("perl-digest-sha1" ,perl-digest-sha1)
355 ("perl-error" ,perl-error)
356 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
357 (home-page "http://search.cpan.org/dist/Cache-Cache")
358 (synopsis "Cache interface for Perl")
359 (description "The Cache modules are designed to assist a developer in
360 persisting data for a specified period of time. Often these modules are used
361 in web applications to store data locally to save repeated and redundant
362 expensive calls to remote machines or databases. People have also been known
363 to use Cache::Cache for its straightforward interface in sharing data between
364 runs of an application or invocations of a CGI-style script or simply as an
365 easy to use abstraction of the filesystem or shared memory.")
366 (license (package-license perl))))
367
368 (define-public perl-cache-fastmmap
369 (package
370 (name "perl-cache-fastmmap")
371 (version "1.40")
372 (source
373 (origin
374 (method url-fetch)
375 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
376 "Cache-FastMmap-" version ".tar.gz"))
377 (sha256
378 (base32
379 "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
380 (build-system perl-build-system)
381 (home-page "http://search.cpan.org/dist/Cache-FastMmap")
382 (synopsis "Shared memory interprocess cache via mmap")
383 (description "A shared memory cache through an mmap'ed file. It's core is
384 written in C for performance. It uses fcntl locking to ensure multiple
385 processes can safely access the cache at the same time. It uses a basic LRU
386 algorithm to keep the most used entries in the cache.")
387 (license (package-license perl))))
388
389 (define-public perl-capture-tiny
390 (package
391 (name "perl-capture-tiny")
392 (version "0.28")
393 (source
394 (origin
395 (method url-fetch)
396 (uri (string-append
397 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
398 version ".tar.gz"))
399 (sha256
400 (base32
401 "117gmwipql1y5xnw9jil3lhdsrf2wsm9wjdzqj66x971n3fwm573"))))
402 (build-system perl-build-system)
403 (home-page "http://search.cpan.org/dist/Capture-Tiny")
404 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
405 (description
406 "Capture::Tiny provides a simple, portable way to capture almost anything
407 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
408 code or from an external program. Optionally, output can be teed so that it
409 is captured while being passed through to the original file handles.")
410 (license asl2.0)))
411
412 (define-public perl-carp-assert
413 (package
414 (name "perl-carp-assert")
415 (version "0.21")
416 (source
417 (origin
418 (method url-fetch)
419 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
420 "Carp-Assert-" version ".tar.gz"))
421 (sha256
422 (base32
423 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
424 (build-system perl-build-system)
425 (home-page "http://search.cpan.org/dist/Carp-Assert")
426 (synopsis "Executable comments for Perl")
427 (description "Carp::Assert is intended for a purpose like the ANSI C
428 library assert.h.")
429 (license (package-license perl))))
430
431 (define-public perl-carp-assert-more
432 (package
433 (name "perl-carp-assert-more")
434 (version "1.14")
435 (source
436 (origin
437 (method url-fetch)
438 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
439 "Carp-Assert-More-" version ".tar.gz"))
440 (sha256
441 (base32
442 "0cq7qk4qbhqppm4raby5k24b5mx5qjgy1884nrddhxillnzlq01z"))))
443 (build-system perl-build-system)
444 (native-inputs
445 `(("perl-test-exception" ,perl-test-exception)))
446 (propagated-inputs
447 `(("perl-carp-assert" ,perl-carp-assert)))
448 (home-page "http://search.cpan.org/dist/Carp-Assert-More")
449 (synopsis "Convenience wrappers around Carp::Assert")
450 (description "Carp::Assert::More is a set of handy assertion functions for
451 Perl.")
452 (license artistic2.0)))
453
454 (define-public perl-carp-clan
455 (package
456 (name "perl-carp-clan")
457 (version "6.04")
458 (source
459 (origin
460 (method url-fetch)
461 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
462 "Carp-Clan-" version ".tar.gz"))
463 (sha256
464 (base32
465 "1v71k8s1pi16l5y579gnrg372c6pdvy6qqm6iddm8h1dx7n16bjl"))))
466 (build-system perl-build-system)
467 (native-inputs
468 `(("perl-test-exception" ,perl-test-exception)))
469 (home-page "http://search.cpan.org/dist/Carp-Clan")
470 (synopsis "Report errors from a \"clan\" of modules")
471 (description "This module allows errors from a clan (or family) of modules
472 to appear to originate from the caller of the clan. This is necessary in
473 cases where the clan modules are not classes derived from each other, and thus
474 the Carp.pm module doesn't help.")
475 (license (package-license perl))))
476
477 (define-public perl-class-accessor
478 (package
479 (name "perl-class-accessor")
480 (version "0.34")
481 (source
482 (origin
483 (method url-fetch)
484 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
485 "Class-Accessor-" version ".tar.gz"))
486 (sha256
487 (base32
488 "1z6fqg0yz8gay15r1iasslv8f1n1mzjkrhs47fvbj3rqz36y1cfd"))))
489 (build-system perl-build-system)
490 (native-inputs
491 `(("perl-sub-name" ,perl-sub-name)))
492 (propagated-inputs
493 `(("perl-base" ,perl-base)))
494 (home-page "http://search.cpan.org/dist/Class-Accessor")
495 (synopsis "Automated accessor generation")
496 (description "This module automagically generates accessors/mutators for
497 your class.")
498 (license (package-license perl))))
499
500 (define-public perl-class-accessor-chained
501 (package
502 (name "perl-class-accessor-chained")
503 (version "0.01")
504 (source
505 (origin
506 (method url-fetch)
507 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
508 "Class-Accessor-Chained-" version ".tar.gz"))
509 (sha256
510 (base32
511 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
512 (build-system perl-build-system)
513 (native-inputs
514 `(("perl-module-build" ,perl-module-build)))
515 (propagated-inputs
516 `(("perl-class-accessor" ,perl-class-accessor)))
517 (home-page "http://search.cpan.org/dist/Class-Accessor-Chained")
518 (synopsis "Faster, but less expandable, chained accessors")
519 (description "A chained accessor is one that always returns the object
520 when called with parameters (to set), and the value of the field when called
521 with no arguments. This module subclasses Class::Accessor in order to provide
522 the same mk_accessors interface.")
523 (license (package-license perl))))
524
525 (define-public perl-class-accessor-grouped
526 (package
527 (name "perl-class-accessor-grouped")
528 (version "0.10012")
529 (source
530 (origin
531 (method url-fetch)
532 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
533 "Class-Accessor-Grouped-" version ".tar.gz"))
534 (sha256
535 (base32
536 "1zp74yv023q3macrf4rv3i82z8pkffqyhh7xk9xg8fbr63ikwqf4"))))
537 (build-system perl-build-system)
538 (native-inputs
539 `(("perl-test-exception" ,perl-test-exception)))
540 (propagated-inputs
541 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
542 ("perl-module-runtime" ,perl-module-runtime)
543 ("perl-sub-name" ,perl-sub-name)))
544 (home-page "http://search.cpan.org/dist/Class-Accessor-Grouped")
545 (synopsis "Build groups of accessors")
546 (description "This class lets you build groups of accessors that will call
547 different getters and setters.")
548 (license (package-license perl))))
549
550 (define-public perl-class-c3
551 (package
552 (name "perl-class-c3")
553 (version "0.27")
554 (source
555 (origin
556 (method url-fetch)
557 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
558 "Class-C3-" version ".tar.gz"))
559 (sha256
560 (base32
561 "185jdpr4applrkvh71ks9ildx5kdymhqr4hilsqxwqny1wr56qss"))))
562 (build-system perl-build-system)
563 (propagated-inputs
564 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
565 (home-page "http://search.cpan.org/dist/Class-C3")
566 (synopsis "Pragma to use the C3 method resolution order algorithm")
567 (description "This is pragma to change Perl 5's standard method resolution
568 order from depth-first left-to-right (a.k.a - pre-order) to the more
569 sophisticated C3 method resolution order.")
570 (license (package-license perl))))
571
572 (define-public perl-class-c3-adopt-next
573 (package
574 (name "perl-class-c3-adopt-next")
575 (version "0.13")
576 (source
577 (origin
578 (method url-fetch)
579 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
580 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
581 (sha256
582 (base32
583 "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
584 (build-system perl-build-system)
585 (native-inputs
586 `(("perl-test-exception" ,perl-test-exception)))
587 (propagated-inputs
588 `(("perl-list-moreutils" ,perl-list-moreutils)
589 ("perl-mro-compat" ,perl-mro-compat)))
590 (home-page "http://search.cpan.org/dist/Class-C3-Adopt-NEXT")
591 (synopsis "Drop-in replacement for NEXT")
592 (description "This module is intended as a drop-in replacement for NEXT,
593 supporting the same interface, but using Class::C3 to do the hard work.")
594 (license (package-license perl))))
595
596 (define-public perl-class-c3-componentised
597 (package
598 (name "perl-class-c3-componentised")
599 (version "1.001000")
600 (source
601 (origin
602 (method url-fetch)
603 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
604 "Class-C3-Componentised-" version ".tar.gz"))
605 (sha256
606 (base32
607 "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
608 (build-system perl-build-system)
609 (native-inputs
610 `(("perl-test-exception" ,perl-test-exception)))
611 (propagated-inputs
612 `(("perl-class-c3" ,perl-class-c3)
613 ("perl-class-inspector" ,perl-class-inspector)
614 ("perl-mro-compat" ,perl-mro-compat)))
615 (home-page "http://search.cpan.org/dist/Class-C3-Componentised")
616 (synopsis "Load mix-ins or components to your C3-based class")
617 (description "This module will inject base classes to your module using
618 the Class::C3 method resolution order.")
619 (license (package-license perl))))
620
621 (define-public perl-class-data-inheritable
622 (package
623 (name "perl-class-data-inheritable")
624 (version "0.08")
625 (source
626 (origin
627 (method url-fetch)
628 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
629 "Class-Data-Inheritable-" version ".tar.gz"))
630 (sha256
631 (base32
632 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
633 (build-system perl-build-system)
634 (home-page "http://search.cpan.org/dist/Class-Data-Inheritable")
635 (synopsis "Inheritable, overridable class data")
636 (description "Class::Data::Inheritable is for creating accessor/mutators
637 to class data. That is, if you want to store something about your class as a
638 whole (instead of about a single object). This data is then inherited by your
639 subclasses and can be overridden.")
640 (license (package-license perl))))
641
642 (define-public perl-class-date
643 (package
644 (name "perl-class-date")
645 (version "1.1.15")
646 (source
647 (origin
648 (method url-fetch)
649 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
650 "Class-Date-" version ".tar.gz"))
651 (sha256
652 (base32
653 "0dd707sq8ix2dqbnp7ga77ba69r3vsn0cd6scnkn13s0gm2g4b00"))))
654 (build-system perl-build-system)
655 (arguments `(#:tests? #f)) ;timezone tests in chroot
656 (home-page "http://search.cpan.org/dist/Class-Date")
657 (synopsis "Class for easy date and time manipulation")
658 (description "This module provides a general-purpose date and datetime
659 type for perl.")
660 (license (package-license perl))))
661
662 (define-public perl-class-factory-util
663 (package
664 (name "perl-class-factory-util")
665 (version "1.7")
666 (source
667 (origin
668 (method url-fetch)
669 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
670 "Class-Factory-Util-" version ".tar.gz"))
671 (sha256
672 (base32
673 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
674 (build-system perl-build-system)
675 (native-inputs `(("perl-module-build" ,perl-module-build)))
676 (home-page "http://search.cpan.org/dist/Class-Factory-Util")
677 (synopsis "Utility methods for factory classes")
678 (description "This module exports methods useful for factory classes.")
679 (license (package-license perl))))
680
681 (define-public perl-class-inspector
682 (package
683 (name "perl-class-inspector")
684 (version "1.28")
685 (source
686 (origin
687 (method url-fetch)
688 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
689 "Class-Inspector-" version ".tar.gz"))
690 (sha256
691 (base32
692 "04iij8dbcgaim7g109frpyf7mh4ydsd8zh53r53chk0zxnivg91w"))))
693 (build-system perl-build-system)
694 (home-page "http://search.cpan.org/dist/Class-Inspector")
695 (synopsis "Get information about a class and its structure")
696 (description "Class::Inspector allows you to get information about a
697 loaded class.")
698 (license (package-license perl))))
699
700 (define-public perl-class-load
701 (package
702 (name "perl-class-load")
703 (version "0.22")
704 (source
705 (origin
706 (method url-fetch)
707 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
708 "Class-Load-" version ".tar.gz"))
709 (sha256
710 (base32
711 "049i285yj8hwgzj7nncjbs2bhxvpdk88wmx1d0nh0rdmh5hdnlmy"))))
712 (build-system perl-build-system)
713 (native-inputs
714 `(("perl-module-build-tiny" ,perl-module-build-tiny)
715 ("perl-test-fatal" ,perl-test-fatal)
716 ("perl-test-requires" ,perl-test-requires)))
717 (propagated-inputs
718 `(("perl-package-stash" ,perl-package-stash)
719 ("perl-data-optlist" ,perl-data-optlist)
720 ("perl-namespace-clean" ,perl-namespace-clean)
721 ("perl-module-runtime" ,perl-module-runtime)
722 ("perl-module-implementation" ,perl-module-implementation)))
723 (home-page "http://search.cpan.org/dist/Class-Load")
724 (synopsis "Working (require \"Class::Name\") and more")
725 (description "\"require EXPR\" only accepts Class/Name.pm style module
726 names, not Class::Name. For that, this module provides \"load_class
727 'Class::Name'\".")
728 (license (package-license perl))))
729
730 (define-public perl-class-load-xs
731 (package
732 (name "perl-class-load-xs")
733 (version "0.09")
734 (source
735 (origin
736 (method url-fetch)
737 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
738 "Class-Load-XS-" version ".tar.gz"))
739 (sha256
740 (base32
741 "1aivalms81s3a2cj053ncgnmkpgl7vspna8ajlkqir7rdn8kpv5v"))))
742 (build-system perl-build-system)
743 (native-inputs
744 `(("perl-test-fatal" ,perl-test-fatal)
745 ("perl-test-requires" ,perl-test-requires)))
746 (inputs `(("perl-class-load" ,perl-class-load)))
747 (home-page "http://search.cpan.org/dist/Class-Load-XS")
748 (synopsis "XS implementation of parts of Class::Load")
749 (description "This module provides an XS implementation for portions of
750 Class::Load.")
751 (license artistic2.0)))
752
753 (define-public perl-class-methodmaker
754 (package
755 (name "perl-class-methodmaker")
756 (version "2.24")
757 (source
758 (origin
759 (method url-fetch)
760 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
761 "class-methodmaker/Class-MethodMaker-"
762 version ".tar.gz"))
763 (sha256
764 (base32
765 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
766 (build-system perl-build-system)
767 (home-page "http://search.cpan.org/dist/Class-MethodMaker")
768 (synopsis "Create generic methods for OO Perl")
769 (description "This module solves the problem of having to continually
770 write accessor methods for your objects that perform standard tasks.")
771 (license (package-license perl))))
772
773 (define-public perl-class-method-modifiers
774 (package
775 (name "perl-class-method-modifiers")
776 (version "2.11")
777 (source
778 (origin
779 (method url-fetch)
780 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
781 "Class-Method-Modifiers-" version ".tar.gz"))
782 (sha256
783 (base32
784 "14nk2gin9cjwpysakli7f0gs4q1w220sn73xzv35rhlspngrggyy"))))
785 (build-system perl-build-system)
786 (native-inputs
787 `(("perl-test-fatal" ,perl-test-fatal)
788 ("perl-test-requires" ,perl-test-requires)))
789 (home-page "http://search.cpan.org/dist/Class-Method-Modifiers")
790 (synopsis "Moose-like method modifiers")
791 (description "Class::Method::Modifiers provides three modifiers: 'before',
792 'around', and 'after'. 'before' and 'after' are run just before and after the
793 method they modify, but can not really affect that original method. 'around'
794 is run in place of the original method, with a hook to easily call that
795 original method.")
796 (license (package-license perl))))
797
798 (define-public perl-class-singleton
799 (package
800 (name "perl-class-singleton")
801 (version "1.5")
802 (source
803 (origin
804 (method url-fetch)
805 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
806 "Class-Singleton-" version ".tar.gz"))
807 (sha256
808 (base32
809 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
810 (build-system perl-build-system)
811 (home-page "http://search.cpan.org/dist/Class-Singleton")
812 (synopsis "Implementation of a singleton class for Perl")
813 (description "This module implements a Singleton class from which other
814 classes can be derived. By itself, the Class::Singleton module does very
815 little other than manage the instantiation of a single object.")
816 (license (package-license perl))))
817
818 (define-public perl-class-tiny
819 (package
820 (name "perl-class-tiny")
821 (version "1.000")
822 (source
823 (origin
824 (method url-fetch)
825 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
826 "Class-Tiny-" version ".tar.gz"))
827 (sha256
828 (base32
829 "0jll90byj0nl16hwpf28k54i4n53jidjsj1bnlbx72v0n56qfpb2"))))
830 (build-system perl-build-system)
831 (home-page "http://search.cpan.org/dist/Class-Tiny")
832 (synopsis "Minimalist class construction")
833 (description "This module offers a minimalist class construction kit. It
834 uses no non-core modules for any recent Perl.")
835 (license asl2.0)))
836
837 (define-public perl-class-unload
838 (package
839 (name "perl-class-unload")
840 (version "0.08")
841 (source
842 (origin
843 (method url-fetch)
844 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
845 "Class-Unload-" version ".tar.gz"))
846 (sha256
847 (base32
848 "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
849 (build-system perl-build-system)
850 (propagated-inputs
851 `(("perl-class-inspector" ,perl-class-inspector)))
852 (home-page "http://search.cpan.org/dist/Class-Unload")
853 (synopsis "Unload a class")
854 (description "Class:Unload unloads a given class by clearing out its
855 symbol table and removing it from %INC.")
856 (license (package-license perl))))
857
858 (define-public perl-class-xsaccessor
859 (package
860 (name "perl-class-xsaccessor")
861 (version "1.19")
862 (source
863 (origin
864 (method url-fetch)
865 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
866 "Class-XSAccessor-" version ".tar.gz"))
867 (sha256
868 (base32
869 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
870 (build-system perl-build-system)
871 (home-page "http://search.cpan.org/dist/Class-XSAccessor")
872 (synopsis "Generate fast XS accessors without runtime compilation")
873 (description "Class::XSAccessor implements fast read, write, and
874 read/write accessors in XS. Additionally, it can provide predicates such as
875 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
876 object. It only works with objects that are implemented as ordinary hashes.
877 Class::XSAccessor::Array implements the same interface for objects that use
878 arrays for their internal representation.")
879 (license (package-license perl))))
880
881 (define-public perl-clone
882 (package
883 (name "perl-clone")
884 (version "0.37")
885 (source (origin
886 (method url-fetch)
887 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
888 "Clone-" version ".tar.gz"))
889 (sha256
890 (base32
891 "17fdhxpzrq2nwim3zkcrz4m9gjixp0i886yz54ysrshxy3k53wnr"))))
892 (build-system perl-build-system)
893 (synopsis "Recursively copy Perl datatypes")
894 (description
895 "This module provides a clone() method which makes recursive copies of
896 nested hash, array, scalar and reference types, including tied variables and
897 objects.")
898 (home-page (string-append "http://search.cpan.org/~garu/"
899 "Clone-" version))
900 (license (package-license perl))))
901
902 (define-public perl-common-sense
903 (package
904 (name "perl-common-sense")
905 (version "3.73")
906 (source
907 (origin
908 (method url-fetch)
909 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
910 "common-sense-" version ".tar.gz"))
911 (sha256
912 (base32
913 "047xwgpn5611zrhk4c8vk9pzcbk1q7n3q0lfiwhhq7k4fbjca441"))))
914 (build-system perl-build-system)
915 (home-page "http://search.cpan.org/dist/common-sense")
916 (synopsis "Sane defaults for Perl programs")
917 (description "This module implements some sane defaults for Perl programs,
918 as defined by two typical specimens of Perl coders.")
919 (license (package-license perl))))
920
921 (define-public perl-config-any
922 (package
923 (name "perl-config-any")
924 (version "0.24")
925 (source
926 (origin
927 (method url-fetch)
928 (uri (string-append "mirror://cpan/authors/id/B/BR/BRICAS/"
929 "Config-Any-" version ".tar.gz"))
930 (sha256
931 (base32
932 "06n6jn3q3xhk57icwip0ihzqixxav6sgp6rrb35hahj1z748y3vi"))))
933 (build-system perl-build-system)
934 (propagated-inputs
935 `(("perl-module-pluggable" ,perl-module-pluggable)))
936 (home-page "http://search.cpan.org/dist/Config-Any")
937 (synopsis "Load configuration from different file formats")
938 (description "Config::Any provides a facility for Perl applications and
939 libraries to load configuration data from multiple different file formats. It
940 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
941 (license (package-license perl))))
942
943 (define-public perl-config-autoconf
944 (package
945 (name "perl-config-autoconf")
946 (version "0.309")
947 (source
948 (origin
949 (method url-fetch)
950 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
951 "Config-AutoConf-" version ".tar.gz"))
952 (sha256
953 (base32
954 "1nqc7calfny12dwfhz7ylsvx55nf69kirdc5dbyvh3sjsqj8yvdq"))))
955 (build-system perl-build-system)
956 (propagated-inputs
957 `(("perl-capture-tiny" ,perl-capture-tiny)))
958 (home-page "http://search.cpan.org/dist/Config-AutoConf")
959 (synopsis "Module to implement some AutoConf macros in Perl")
960 (description "Config::AutoConf is intended to provide the same
961 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
962 (license (package-license perl))))
963
964 (define-public perl-config-general
965 (package
966 (name "perl-config-general")
967 (version "2.56")
968 (source
969 (origin
970 (method url-fetch)
971 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
972 "Config-General-" version ".tar.gz"))
973 (sha256
974 (base32
975 "0szxxaihz71pr0r2jp9wvbrfc3hrsxi9xrd9vnyrxlrax8sci5h9"))))
976 (build-system perl-build-system)
977 (home-page "http://search.cpan.org/dist/Config-General")
978 (synopsis "Generic Config Module")
979 (description "This module opens a config file and parses its contents for
980 you. The format of config files supported by Config::General is inspired by
981 the well known Apache config format and is 100% compatible with Apache
982 configs, but you can also just use simple name/value pairs in your config
983 files. In addition to the capabilities of an Apache config file it supports
984 some enhancements such as here-documents, C-style comments, and multiline
985 options.")
986 (license (package-license perl))))
987
988 (define-public perl-config-ini
989 (package
990 (name "perl-config-ini")
991 (version "0.025")
992 (source (origin
993 (method url-fetch)
994 (uri (string-append
995 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
996 version ".tar.gz"))
997 (sha256
998 (base32
999 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1000 (build-system perl-build-system)
1001 (inputs
1002 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1003 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1004 ("perl-sub-exporter" ,perl-sub-exporter)))
1005 (home-page "http://search.cpan.org/dist/Config-INI")
1006 (synopsis "Simple .ini-file format reader and writer")
1007 (description "@code{Config::INI} is a module that facilates the reading
1008 and writing of @code{.ini}-style configuration files.")
1009 (license (package-license perl))))
1010
1011 (define-public perl-context-preserve
1012 (package
1013 (name "perl-context-preserve")
1014 (version "0.01")
1015 (source
1016 (origin
1017 (method url-fetch)
1018 (uri (string-append "mirror://cpan/authors/id/J/JR/JROCKWAY/"
1019 "Context-Preserve-" version ".tar.gz"))
1020 (sha256
1021 (base32
1022 "0gssillawjknqks81x7fg7w2x94bnyklgd8ry2pr1k6ifkjhwz46"))))
1023 (build-system perl-build-system)
1024 (native-inputs
1025 `(("perl-test-exception" ,perl-test-exception)
1026 ("perl-test-simple" ,perl-test-simple)))
1027 (home-page "http://search.cpan.org/dist/Context-Preserve")
1028 (synopsis "Preserve context during subroutine call")
1029 (description "This module runs code after a subroutine call, preserving
1030 the context the subroutine would have seen if it were the last statement in
1031 the caller.")
1032 (license (package-license perl))))
1033
1034 (define-public perl-cpan-meta-check
1035 (package
1036 (name "perl-cpan-meta-check")
1037 (version "0.009")
1038 (source
1039 (origin
1040 (method url-fetch)
1041 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1042 "CPAN-Meta-Check-" version ".tar.gz"))
1043 (sha256
1044 (base32
1045 "0qbk5dwvhd78qgq5x6nim2n0l78pylvlklpbrm56w9yss6pl6bgb"))))
1046 (build-system perl-build-system)
1047 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1048 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1049 (home-page "http://search.cpan.org/dist/CPAN-Meta-Check")
1050 (synopsis "Verify requirements in a CPAN::Meta object")
1051 (description "This module verifies if requirements described in a
1052 CPAN::Meta object are present.")
1053 (license (package-license perl))))
1054
1055 (define-public perl-cpanel-json-xs
1056 (package
1057 (name "perl-cpanel-json-xs")
1058 (version "3.0114")
1059 (source
1060 (origin
1061 (method url-fetch)
1062 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1063 "Cpanel-JSON-XS-" version ".tar.gz"))
1064 (sha256
1065 (base32
1066 "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71"))))
1067 (build-system perl-build-system)
1068 (propagated-inputs
1069 `(("perl-common-sense" ,perl-common-sense)))
1070 (home-page "http://search.cpan.org/dist/Cpanel-JSON-XS")
1071 (synopsis "JSON::XS for Cpanel")
1072 (description "This module converts Perl data structures to JSON and vice
1073 versa.")
1074 (license (package-license perl))))
1075
1076 (define-public perl-crypt-randpasswd
1077 (package
1078 (name "perl-crypt-randpasswd")
1079 (version "0.06")
1080 (source
1081 (origin
1082 (method url-fetch)
1083 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1084 "Crypt-RandPasswd-" version ".tar.gz"))
1085 (sha256
1086 (base32
1087 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1088 (build-system perl-build-system)
1089 (home-page "http://search.cpan.org/dist/Crypt-RandPasswd")
1090 (synopsis "Random password generator")
1091 (description "Crypt::RandPasswd provides three functions that can be used
1092 to generate random passwords, constructed from words, letters, or characters.
1093 This code is a Perl implementation of the Automated Password Generator
1094 standard, like the program described in \"A Random Word Generator For
1095 Pronounceable Passwords\". This code is a re-engineering of the program
1096 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1097 Password Generator\".")
1098 (license (package-license perl))))
1099
1100 (define-public perl-czplib
1101 (package
1102 (name "perl-czplib")
1103 (version "1.0.5")
1104 (source
1105 (origin
1106 (method url-fetch)
1107 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1108 version ".tgz"))
1109 (sha256
1110 (base32
1111 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1112 (modules '((guix build utils)))
1113 (snippet
1114 '(begin
1115 ;; Remove .git directory
1116 (delete-file-recursively ".git")
1117 #t))))
1118 (build-system perl-build-system)
1119 (arguments
1120 `(#:phases
1121 (modify-phases %standard-phases
1122 (delete 'configure)
1123 (delete 'build)
1124 (replace
1125 'install
1126 (lambda* (#:key outputs #:allow-other-keys)
1127 (copy-recursively "."
1128 (string-append (assoc-ref outputs "out")
1129 "/plib/perl5/site_perl/"
1130 ,(package-version perl)
1131 "/czplib/"))
1132 #t)))))
1133 (home-page "http://sourceforge.net/projects/czplib/")
1134 (synopsis "Library for genomic analysis")
1135 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1136 functions and data structures for processing and analysing genomic and
1137 bioinformatics data.")
1138 (license gpl3+)))
1139
1140 (define-public perl-data-dump
1141 (package
1142 (name "perl-data-dump")
1143 (version "1.22")
1144 (source
1145 (origin
1146 (method url-fetch)
1147 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1148 "Data-Dump-" version ".tar.gz"))
1149 (sha256
1150 (base32
1151 "1ciqlwsy1q35s94dry9bjy1pwanbq6b7q4rhxm9z8prgkzbslg2k"))))
1152 (build-system perl-build-system)
1153 (home-page "http://search.cpan.org/dist/Data-Dump")
1154 (synopsis "Pretty printing of data structures")
1155 (description "This module provide functions that takes a list of values as
1156 their argument and produces a string as its result. The string contains Perl
1157 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1158 (license (package-license perl))))
1159
1160 (define-public perl-data-dumper-concise
1161 (package
1162 (name "perl-data-dumper-concise")
1163 (version "2.022")
1164 (source
1165 (origin
1166 (method url-fetch)
1167 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
1168 "Data-Dumper-Concise-" version ".tar.gz"))
1169 (sha256
1170 (base32
1171 "0z7vxgk1f2kw2zpiimdsyf7jq9f4s5dhh3dlimq5yrirypnk03sc"))))
1172 (build-system perl-build-system)
1173 (home-page "http://search.cpan.org/dist/Data-Dumper-Concise")
1174 (synopsis "Concise data dumper")
1175 (description "Data::Dumper::Concise provides a dumper with Less
1176 indentation and newlines plus sub deparsing.")
1177 (license (package-license perl))))
1178
1179 (define-public perl-data-optlist
1180 (package
1181 (name "perl-data-optlist")
1182 (version "0.109")
1183 (source
1184 (origin
1185 (method url-fetch)
1186 (uri (string-append
1187 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1188 version ".tar.gz"))
1189 (sha256
1190 (base32
1191 "1j44rm2spprlq3bc80cxni3dzs3gfjiqv1qc9q7820n1qj0wgmqw"))))
1192 (build-system perl-build-system)
1193 (propagated-inputs
1194 `(("perl-sub-install" ,perl-sub-install)
1195 ("perl-params-util" ,perl-params-util)))
1196 (home-page "http://search.cpan.org/dist/Data-OptList")
1197 (synopsis "Parse and validate simple name/value option pairs")
1198 (description
1199 "Data::OptList provides a simple syntax for name/value option pairs.")
1200 (license (package-license perl))))
1201
1202 (define-public perl-data-page
1203 (package
1204 (name "perl-data-page")
1205 (version "2.02")
1206 (source
1207 (origin
1208 (method url-fetch)
1209 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
1210 "Data-Page-" version ".tar.gz"))
1211 (sha256
1212 (base32
1213 "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1214 (build-system perl-build-system)
1215 (native-inputs
1216 `(("perl-module-build" ,perl-module-build)
1217 ("perl-test-exception" ,perl-test-exception)))
1218 (propagated-inputs
1219 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1220 (home-page "http://search.cpan.org/dist/Data-Page")
1221 (synopsis "Help when paging through sets of results")
1222 (description "When searching through large amounts of data, it is often
1223 the case that a result set is returned that is larger than we want to display
1224 on one page. This results in wanting to page through various pages of data.
1225 The maths behind this is unfortunately fiddly, hence this module.")
1226 (license (package-license perl))))
1227
1228 (define-public perl-data-stag
1229 (package
1230 (name "perl-data-stag")
1231 (version "0.14")
1232 (source
1233 (origin
1234 (method url-fetch)
1235 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
1236 "Data-Stag-" version ".tar.gz"))
1237 (sha256
1238 (base32
1239 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
1240 (build-system perl-build-system)
1241 (propagated-inputs
1242 `(("perl-io-string" ,perl-io-string)))
1243 (home-page "http://search.cpan.org/dist/Data-Stag")
1244 (synopsis "Structured tags datastructures")
1245 (description
1246 "This module is for manipulating data as hierarchical tag/value
1247 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
1248 be represented as nested arrays, which have the advantage of being native to
1249 Perl.")
1250 (license (package-license perl))))
1251
1252 (define-public perl-data-stream-bulk
1253 (package
1254 (name "perl-data-stream-bulk")
1255 (version "0.11")
1256 (source
1257 (origin
1258 (method url-fetch)
1259 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1260 "Data-Stream-Bulk-" version ".tar.gz"))
1261 (sha256
1262 (base32
1263 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
1264 (build-system perl-build-system)
1265 (native-inputs
1266 `(("perl-test-requires" ,perl-test-requires)))
1267 (propagated-inputs
1268 `(("perl-moose" ,perl-moose)
1269 ("perl-namespace-clean" ,perl-namespace-clean)
1270 ("perl-path-class" ,perl-path-class)
1271 ("perl-sub-exporter" ,perl-sub-exporter)))
1272 (home-page "http://search.cpan.org/dist/Data-Stream-Bulk")
1273 (synopsis "N at a time iteration API")
1274 (description "This module tries to find middle ground between one at a
1275 time and all at once processing of data sets. The purpose of this module is
1276 to avoid the overhead of implementing an iterative api when this isn't
1277 necessary, without breaking forward compatibility in case that becomes
1278 necessary later on.")
1279 (license (package-license perl))))
1280
1281 (define-public perl-data-tumbler
1282 (package
1283 (name "perl-data-tumbler")
1284 (version "0.008")
1285 (source
1286 (origin
1287 (method url-fetch)
1288 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1289 "Data-Tumbler-" version ".tar.gz"))
1290 (sha256
1291 (base32
1292 "13kww2xj30rkk8w9h50h4blypdb689zgils0zyah587kip0z6509"))))
1293 (build-system perl-build-system)
1294 (native-inputs
1295 `(("perl-test-most" ,perl-test-most)))
1296 (propagated-inputs
1297 `(("perl-file-homedir" ,perl-file-homedir)))
1298 (home-page "http://search.cpan.org/dist/Data-Tumbler")
1299 (synopsis "Dynamic generation of nested combinations of variants")
1300 (description "Data::Tumbler - Dynamic generation of nested combinations of
1301 variants.")
1302 (license (package-license perl))))
1303
1304 (define-public perl-data-visitor
1305 (package
1306 (name "perl-data-visitor")
1307 (version "0.30")
1308 (source
1309 (origin
1310 (method url-fetch)
1311 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1312 "Data-Visitor-" version ".tar.gz"))
1313 (sha256
1314 (base32
1315 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
1316 (build-system perl-build-system)
1317 (native-inputs
1318 `(("perl-test-requires" ,perl-test-requires)))
1319 (propagated-inputs
1320 `(("perl-class-load" ,perl-class-load)
1321 ("perl-moose" ,perl-moose)
1322 ("perl-namespace-clean" ,perl-namespace-clean)
1323 ("perl-task-weaken" ,perl-task-weaken)
1324 ("perl-tie-toobject" ,perl-tie-toobject)))
1325 (home-page "http://search.cpan.org/dist/Data-Visitor")
1326 (synopsis "Visitor style traversal of Perl data structures")
1327 (description "This module is a simple visitor implementation for Perl
1328 values. It has a main dispatcher method, visit, which takes a single perl
1329 value and then calls the methods appropriate for that value. It can
1330 recursively map (cloning as necessary) or just traverse most structures, with
1331 support for per-object behavior, circular structures, visiting tied
1332 structures, and all ref types (hashes, arrays, scalars, code, globs).")
1333 (license (package-license perl))))
1334
1335 (define-public perl-date-calc
1336 (package
1337 (name "perl-date-calc")
1338 (version "6.4")
1339 (source
1340 (origin
1341 (method url-fetch)
1342 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
1343 "Date-Calc-" version ".tar.gz"))
1344 (sha256
1345 (base32
1346 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
1347 (build-system perl-build-system)
1348 (propagated-inputs
1349 `(("perl-bit-vector" ,perl-bit-vector)
1350 ("perl-carp-clan" ,perl-carp-clan)))
1351 (home-page "http://search.cpan.org/dist/Date-Calc")
1352 (synopsis "Gregorian calendar date calculations")
1353 (description "This package consists of a Perl module for date calculations
1354 based on the Gregorian calendar, thereby complying with all relevant norms and
1355 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
1356 applicable).")
1357 (license (package-license perl))))
1358
1359 (define-public perl-date-calc-xs
1360 (package
1361 (name "perl-date-calc-xs")
1362 (version "6.4")
1363 (source
1364 (origin
1365 (method url-fetch)
1366 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
1367 "Date-Calc-XS-" version ".tar.gz"))
1368 (sha256
1369 (base32
1370 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
1371 (build-system perl-build-system)
1372 (propagated-inputs
1373 `(("perl-bit-vector" ,perl-bit-vector)
1374 ("perl-carp-clan" ,perl-carp-clan)
1375 ("perl-date-calc" ,perl-date-calc)))
1376 (home-page "http://search.cpan.org/dist/Date-Calc-XS")
1377 (synopsis "XS wrapper for Date::Calc")
1378 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
1379 Date::Calc.")
1380 (license (list (package-license perl) lgpl2.0+))))
1381
1382 (define-public perl-date-manip
1383 (package
1384 (name "perl-date-manip")
1385 (version "6.50")
1386 (source
1387 (origin
1388 (method url-fetch)
1389 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SB/SBECK/"
1390 "Date-Manip-" version ".tar.gz"))
1391 (sha256
1392 (base32
1393 "0zd0wbf91i49753rnf7m1lw197hdl5r97mxy0n43zdmcmhvkb3qq"))))
1394 (build-system perl-build-system)
1395 (native-inputs `(("perl-module-build" ,perl-module-build)))
1396 (arguments
1397 ;; Tests would require tzdata for timezone information, but tzdata is in
1398 ;; (gnu packages base) which would create a circular dependency. TODO:
1399 ;; Maybe put this package elsewhere so we can turn on tests.
1400 '(#:tests? #f))
1401 (home-page "http://search.cpan.org/dist/Date-Manip")
1402 (synopsis "Date manipulation routines")
1403 (description "Date::Manip is a series of modules for common date/time
1404 operations, such as comparing two times, determining a date a given amount of
1405 time from another, or parsing international times.")
1406 (license (package-license perl))))
1407
1408 (define-public perl-datetime
1409 (package
1410 (name "perl-datetime")
1411 (version "1.18")
1412 (source
1413 (origin
1414 (method url-fetch)
1415 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1416 "DateTime-" version ".tar.gz"))
1417 (sha256
1418 (base32
1419 "0fli1ls298qa8nfki15myxqqqfpxvslxk4j5r3vjk577wfgjrnms"))))
1420 (build-system perl-build-system)
1421 (native-inputs
1422 `(("perl-module-build" ,perl-module-build)
1423 ("perl-test-fatal" ,perl-test-fatal)
1424 ("perl-test-warnings" ,perl-test-warnings)))
1425 (propagated-inputs
1426 `(("perl-datetime-locale" ,perl-datetime-locale)
1427 ("perl-datetime-timezone" ,perl-datetime-timezone)
1428 ("perl-params-validate" ,perl-params-validate)
1429 ("perl-try-tiny" ,perl-try-tiny)))
1430 (home-page "http://search.cpan.org/dist/DateTime")
1431 (synopsis "Date and time object for Perl")
1432 (description "DateTime is a class for the representation of date/time
1433 combinations. It represents the Gregorian calendar, extended backwards in
1434 time before its creation (in 1582).")
1435 (license artistic2.0)))
1436
1437 (define-public perl-datetime-set
1438 (package
1439 (name "perl-datetime-set")
1440 (version "0.3400")
1441 (source
1442 (origin
1443 (method url-fetch)
1444 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
1445 "DateTime-Set-" version ".tar.gz"))
1446 (sha256
1447 (base32
1448 "1b27699zkj68w5ll9chjhs52vmf39f9via6x5r5844as30qh9zxb"))))
1449 (build-system perl-build-system)
1450 (native-inputs
1451 `(("perl-module-build" ,perl-module-build)))
1452 (propagated-inputs
1453 `(("perl-datetime" ,perl-datetime)
1454 ("perl-params-validate" ,perl-params-validate)
1455 ("perl-set-infinite" ,perl-set-infinite)))
1456 (home-page "http://search.cpan.org/dist/DateTime-Set")
1457 (synopsis "DateTime set objects")
1458 (description "The DateTime::Set module provides a date/time sets
1459 implementation. It allows, for example, the generation of groups of dates,
1460 like \"every wednesday\", and then find all the dates matching that pattern,
1461 within a time range.")
1462 (license (package-license perl))))
1463
1464 (define-public perl-datetime-event-ical
1465 (package
1466 (name "perl-datetime-event-ical")
1467 (version "0.12")
1468 (source
1469 (origin
1470 (method url-fetch)
1471 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
1472 "DateTime-Event-ICal-" version ".tar.gz"))
1473 (sha256
1474 (base32
1475 "1rfrjhczfmasf7aaz8rfd89vhwjj2nkxlnirxxrmy75z10nmrpjk"))))
1476 (build-system perl-build-system)
1477 (propagated-inputs
1478 `(("perl-datetime" ,perl-datetime)
1479 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
1480 (home-page "http://search.cpan.org/dist/DateTime-Event-ICal")
1481 (synopsis "DateTime rfc2445 recurrences")
1482 (description "This module provides convenience methods that let you easily
1483 create DateTime::Set objects for RFC 2445 style recurrences.")
1484 (license (package-license perl))))
1485
1486 (define-public perl-datetime-event-recurrence
1487 (package
1488 (name "perl-datetime-event-recurrence")
1489 (version "0.16")
1490 (source
1491 (origin
1492 (method url-fetch)
1493 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
1494 "DateTime-Event-Recurrence-" version ".tar.gz"))
1495 (sha256
1496 (base32
1497 "02c6ky3k26r0c8r87rcsd8gbn7rd6j2pylryin8pllnrdh9f0wiq"))))
1498 (build-system perl-build-system)
1499 (propagated-inputs
1500 `(("perl-datetime" ,perl-datetime)
1501 ("perl-datetime-set" ,perl-datetime-set)))
1502 (home-page "http://search.cpan.org/dist/DateTime-Event-Recurrence")
1503 (synopsis "DateTime::Set extension for basic recurrences")
1504 (description "This module provides convenience methods that let you easily
1505 create DateTime::Set objects for various recurrences, such as \"once a month\"
1506 or \"every day\". You can also create more complicated recurrences, such as
1507 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
1508 (license (package-license perl))))
1509
1510 (define-public perl-datetime-format-builder
1511 (package
1512 (name "perl-datetime-format-builder")
1513 (version "0.81")
1514 (source
1515 (origin
1516 (method url-fetch)
1517 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1518 "DateTime-Format-Builder-" version ".tar.gz"))
1519 (sha256
1520 (base32
1521 "1vrkzw7kmxnyy403ykxgbg2kvgs99nggi4n9gi09ixivnn68mmbw"))))
1522 (build-system perl-build-system)
1523 (propagated-inputs
1524 `(("perl-class-factory-util" ,perl-class-factory-util)
1525 ("perl-datetime" ,perl-datetime)
1526 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
1527 ("perl-params-validate" ,perl-params-validate)))
1528 (home-page "http://search.cpan.org/dist/DateTime-Format-Builder")
1529 (synopsis "Create DateTime parser classes and objects")
1530 (description "DateTime::Format::Builder creates DateTime parsers. Many
1531 string formats of dates and times are simple and just require a basic regular
1532 expression to extract the relevant information. Builder provides a simple way
1533 to do this without writing reams of structural code.")
1534 (license artistic2.0)))
1535
1536 (define-public perl-datetime-format-flexible
1537 (package
1538 (name "perl-datetime-format-flexible")
1539 (version "0.26")
1540 (source
1541 (origin
1542 (method url-fetch)
1543 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
1544 "DateTime-Format-Flexible-" version ".tar.gz"))
1545 (sha256
1546 (base32
1547 "0gb9dsn178dpvgbbgwnaf3v2v8zy4xj36i0w5q8qbhvwx32znvj3"))))
1548 (build-system perl-build-system)
1549 (propagated-inputs
1550 `(("perl-datetime" ,perl-datetime)
1551 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
1552 ("perl-datetime-timezone" ,perl-datetime-timezone)
1553 ("perl-list-moreutils" ,perl-list-moreutils)
1554 ("perl-module-pluggable" ,perl-module-pluggable)
1555 ("perl-test-mocktime" ,perl-test-mocktime)))
1556 (home-page "http://search.cpan.org/dist/DateTime-Format-Flexible")
1557 (synopsis "Parse data/time strings")
1558 (description "DateTime::Format::Flexible attempts to take any string you
1559 give it and parse it into a DateTime object.")
1560 (license (package-license perl))))
1561
1562 (define-public perl-datetime-format-ical
1563 (package
1564 (name "perl-datetime-format-ical")
1565 (version "0.09")
1566 (source
1567 (origin
1568 (method url-fetch)
1569 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1570 "DateTime-Format-ICal-" version ".tar.gz"))
1571 (sha256
1572 (base32
1573 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
1574 (build-system perl-build-system)
1575 (native-inputs
1576 `(("perl-module-build" ,perl-module-build)))
1577 (propagated-inputs
1578 `(("perl-datetime" ,perl-datetime)
1579 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
1580 ("perl-datetime-set" ,perl-datetime-set)
1581 ("perl-datetime-timezone" ,perl-datetime-timezone)
1582 ("perl-params-validate" ,perl-params-validate)))
1583 (home-page "http://search.cpan.org/dist/DateTime-Format-ICal")
1584 (synopsis "Parse and format iCal datetime and duration strings")
1585 (description "This module understands the ICal date/time and duration
1586 formats, as defined in RFC 2445. It can be used to parse these formats in
1587 order to create the appropriate objects.")
1588 (license (package-license perl))))
1589
1590 (define-public perl-datetime-format-natural
1591 (package
1592 (name "perl-datetime-format-natural")
1593 (version "1.02")
1594 (source
1595 (origin
1596 (method url-fetch)
1597 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
1598 "DateTime-Format-Natural-" version ".tar.gz"))
1599 (sha256
1600 (base32
1601 "1qq3adq1y08d0jlmwk9059s5d39hb26f3zjag099gjjyvs5c8yal"))))
1602 (build-system perl-build-system)
1603 (native-inputs
1604 `(("perl-module-build" ,perl-module-build)
1605 ("perl-module-util" ,perl-module-util)
1606 ("perl-test-mocktime" ,perl-test-mocktime)))
1607 (propagated-inputs
1608 `(("perl-boolean" ,perl-boolean)
1609 ("perl-clone" ,perl-clone)
1610 ("perl-date-calc" ,perl-date-calc)
1611 ("perl-date-calc-xs" ,perl-date-calc-xs)
1612 ("perl-datetime" ,perl-datetime)
1613 ("perl-datetime-timezone" ,perl-datetime-timezone)
1614 ("perl-list-moreutils" ,perl-list-moreutils)
1615 ("perl-params-validate" ,perl-params-validate)))
1616 (home-page "http://search.cpan.org/dist/DateTime-Format-Natural")
1617 (synopsis "Machine-readable date/time with natural parsing")
1618 (description "DateTime::Format::Natural takes a string with a human
1619 readable date/time and creates a machine readable one by applying natural
1620 parsing logic.")
1621 (license (package-license perl))))
1622
1623 (define-public perl-datetime-format-strptime
1624 (package
1625 (name "perl-datetime-format-strptime")
1626 (version "1.56")
1627 (source
1628 (origin
1629 (method url-fetch)
1630 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1631 "DateTime-Format-Strptime-" version ".tar.gz"))
1632 (sha256
1633 (base32
1634 "0a4bszmff16rw6fz1yr4v9001q9vxrdxnxkj9sqaln83b87rvxig"))))
1635 (build-system perl-build-system)
1636 (propagated-inputs
1637 `(("perl-datetime" ,perl-datetime)
1638 ("perl-datetime-locale" ,perl-datetime-locale)
1639 ("perl-datetime-timezone" ,perl-datetime-timezone)
1640 ("perl-params-validate" ,perl-params-validate)))
1641 (home-page "http://search.cpan.org/dist/DateTime-Format-Strptime")
1642 (synopsis "Parse and format strp and strf time patterns")
1643 (description "This module implements most of `strptime(3)`, the POSIX
1644 function that is the reverse of `strftime(3)`, for `DateTime`. While
1645 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
1646 takes a string and a pattern and returns the `DateTime` object associated.")
1647 (license artistic2.0)))
1648
1649 (define-public perl-datetime-locale
1650 (package
1651 (name "perl-datetime-locale")
1652 (version "0.45")
1653 (source
1654 (origin
1655 (method url-fetch)
1656 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1657 "DateTime-Locale-" version ".tar.gz"))
1658 (sha256
1659 (base32
1660 "175grkrxiv012n6ch3z1sip4zprcili6m5zqi3njdk5c1gdvi8ca"))))
1661 (build-system perl-build-system)
1662 (native-inputs
1663 `(("perl-module-build" ,perl-module-build)))
1664 (propagated-inputs
1665 `(("perl-list-moreutils" ,perl-list-moreutils)
1666 ("perl-params-validate" ,perl-params-validate)))
1667 (home-page "http://search.cpan.org/dist/DateTime-Locale")
1668 (synopsis "Localization support for DateTime.pm")
1669 (description "The DateTime::Locale modules provide localization data for
1670 the DateTime.pm class.")
1671 (license (package-license perl))))
1672
1673 (define-public perl-datetime-timezone
1674 (package
1675 (name "perl-datetime-timezone")
1676 (version "1.86")
1677 (source
1678 (origin
1679 (method url-fetch)
1680 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1681 "DateTime-TimeZone-" version ".tar.gz"))
1682 (sha256
1683 (base32
1684 "1aj5liy9as7yci2s9cqv9gqna5wggah8yg2jqrc89dnrin25s26z"))))
1685 (build-system perl-build-system)
1686 (native-inputs
1687 `(("perl-test-fatal" ,perl-test-fatal)
1688 ("perl-test-requires" ,perl-test-requires)))
1689 (propagated-inputs
1690 `(("perl-class-singleton" ,perl-class-singleton)
1691 ("perl-list-allutils" ,perl-list-allutils)
1692 ("perl-module-runtime" ,perl-module-runtime)
1693 ("perl-params-validate" ,perl-params-validate)
1694 ("perl-try-tiny" ,perl-try-tiny)))
1695 (home-page "http://search.cpan.org/dist/DateTime-TimeZone")
1696 (synopsis "Time zone object for Perl")
1697 (description "This class is the base class for all time zone objects. A
1698 time zone is represented internally as a set of observances, each of which
1699 describes the offset from GMT for a given time period. Note that without the
1700 DateTime module, this module does not do much. It's primary interface is
1701 through a DateTime object, and most users will not need to directly use
1702 DateTime::TimeZone methods.")
1703 (license (package-license perl))))
1704
1705 (define-public perl-datetimex-easy
1706 (package
1707 (name "perl-datetimex-easy")
1708 (version "0.089")
1709 (source
1710 (origin
1711 (method url-fetch)
1712 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
1713 "DateTimeX-Easy-" version ".tar.gz"))
1714 (sha256
1715 (base32
1716 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
1717 (build-system perl-build-system)
1718 (native-inputs
1719 `(("perl-test-most" ,perl-test-most)))
1720 (propagated-inputs
1721 `(("perl-datetime" ,perl-datetime)
1722 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
1723 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
1724 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
1725 ("perl-timedate" ,perl-timedate)))
1726 (home-page "http://search.cpan.org/dist/DateTimeX-Easy")
1727 (synopsis "Parse date/time strings")
1728 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
1729 to create DateTime objects, with some custom tweaks to smooth out the rough
1730 edges (mainly concerning timezone detection and selection).")
1731 (license (package-license perl))))
1732
1733 (define-public perl-devel-caller
1734 (package
1735 (name "perl-devel-caller")
1736 (version "2.06")
1737 (source
1738 (origin
1739 (method url-fetch)
1740 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1741 "Devel-Caller-" version ".tar.gz"))
1742 (sha256
1743 (base32
1744 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
1745 (build-system perl-build-system)
1746 (propagated-inputs
1747 `(("perl-padwalker" ,perl-padwalker)))
1748 (home-page "http://search.cpan.org/dist/Devel-Caller")
1749 (synopsis "Meatier version of caller")
1750 (description "Devel::Caller provides meatier version of caller.")
1751 (license (package-license perl))))
1752
1753 (define-public perl-devel-checkbin
1754 (package
1755 (name "perl-devel-checkbin")
1756 (version "0.02")
1757 (source
1758 (origin
1759 (method url-fetch)
1760 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1761 "Devel-CheckBin-" version ".tar.gz"))
1762 (sha256
1763 (base32
1764 "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m"))))
1765 (build-system perl-build-system)
1766 (native-inputs `(("perl-module-build" ,perl-module-build)))
1767 (home-page "http://search.cpan.org/dist/Devel-CheckBin")
1768 (synopsis "Check that a command is available")
1769 (description "Devel::CheckBin is a perl module that checks whether a
1770 particular command is available.")
1771 (license (package-license perl))))
1772
1773 (define-public perl-devel-globaldestruction
1774 (package
1775 (name "perl-devel-globaldestruction")
1776 (version "0.13")
1777 (source
1778 (origin
1779 (method url-fetch)
1780 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1781 "Devel-GlobalDestruction-" version ".tar.gz"))
1782 (sha256
1783 (base32
1784 "0qn4iszgylnxjdkb6430f6a3ci7bcx9ih1az6bd5cbij1pf2965j"))))
1785 (build-system perl-build-system)
1786 (propagated-inputs
1787 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
1788 (home-page "http://search.cpan.org/dist/Devel-GlobalDestruction")
1789 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
1790 (description "Devel::GlobalDestruction provides a function returning the
1791 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
1792 (license (package-license perl))))
1793
1794 (define-public perl-devel-lexalias
1795 (package
1796 (name "perl-devel-lexalias")
1797 (version "0.05")
1798 (source
1799 (origin
1800 (method url-fetch)
1801 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1802 "Devel-LexAlias-" version ".tar.gz"))
1803 (sha256
1804 (base32
1805 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
1806 (build-system perl-build-system)
1807 (propagated-inputs
1808 `(("perl-devel-caller" ,perl-devel-caller)))
1809 (home-page "http://search.cpan.org/dist/Devel-LexAlias")
1810 (synopsis "Alias lexical variables")
1811 (description "Devel::LexAlias provides the ability to alias a lexical
1812 variable in a subroutines scope to one of your choosing.")
1813 (license (package-license perl))))
1814
1815 (define-public perl-devel-overloadinfo
1816 (package
1817 (name "perl-devel-overloadinfo")
1818 (version "0.002")
1819 (source
1820 (origin
1821 (method url-fetch)
1822 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1823 "Devel-OverloadInfo-" version ".tar.gz"))
1824 (sha256
1825 (base32
1826 "14gzjlsqhypqp0szqj6152qfn69snzydgk1yk6bji5zimzv86qyy"))))
1827 (build-system perl-build-system)
1828 (propagated-inputs
1829 `(("perl-package-stash" ,perl-package-stash)
1830 ("perl-sub-identify" ,perl-sub-identify)
1831 ("perl-mro-compat" ,perl-mro-compat)))
1832 (home-page "http://search.cpan.org/dist/Devel-OverloadInfo")
1833 (synopsis "Introspect overloaded operators")
1834 (description "Devel::OverloadInfo returns information about overloaded
1835 operators for a given class (or object), including where in the inheritance
1836 hierarchy the overloads are declared and where the code implementing it is.")
1837 (license (package-license perl))))
1838
1839 (define-public perl-devel-partialdump
1840 (package
1841 (name "perl-devel-partialdump")
1842 (version "0.17")
1843 (source
1844 (origin
1845 (method url-fetch)
1846 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1847 "Devel-PartialDump-" version ".tar.gz"))
1848 (sha256
1849 (base32
1850 "0nr3qa68x4yp219kd17j1ks9c95qc9agfvz7ddnpn8p78f3kgwfn"))))
1851 (build-system perl-build-system)
1852 (native-inputs
1853 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1854 ("perl-test-warn" ,perl-test-warn)
1855 ("perl-test-simple" ,perl-test-simple)))
1856 (propagated-inputs
1857 `(("perl-class-tiny" ,perl-class-tiny)
1858 ("perl-sub-exporter" ,perl-sub-exporter)
1859 ("perl-namespace-clean" ,perl-namespace-clean)))
1860 (home-page "http://search.cpan.org/dist/Devel-PartialDump")
1861 (synopsis "Partial dumping of data structures")
1862 (description "This module is a data dumper optimized for logging of
1863 arbitrary parameters.")
1864 (license (package-license perl))))
1865
1866 (define-public perl-devel-stacktrace
1867 (package
1868 (name "perl-devel-stacktrace")
1869 (version "2.00")
1870 (source
1871 (origin
1872 (method url-fetch)
1873 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1874 "Devel-StackTrace-" version ".tar.gz"))
1875 (sha256
1876 (base32
1877 "1r65iq5i11xh0r0kp3pdycydnd3kxpdmxnp0hq9hx9lr60kygsqx"))))
1878 (build-system perl-build-system)
1879 (home-page "http://search.cpan.org/dist/Devel-StackTrace")
1880 (synopsis "Object representing a stack trace")
1881 (description "The Devel::StackTrace module contains two classes,
1882 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
1883 information that can be retrieved via Perl's caller() function, as well as
1884 providing a simple interface to this data.")
1885 (license artistic2.0)))
1886
1887 (define-public perl-devel-stacktrace-ashtml
1888 (package
1889 (name "perl-devel-stacktrace-ashtml")
1890 (version "0.14")
1891 (source
1892 (origin
1893 (method url-fetch)
1894 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
1895 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
1896 (sha256
1897 (base32
1898 "0yl296y0qfwybwjgqjzd4j2w2bj5a2nz342qqgxchnf5bqynl1c9"))))
1899 (build-system perl-build-system)
1900 (propagated-inputs
1901 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
1902 (home-page "http://search.cpan.org/dist/Devel-StackTrace-AsHTML")
1903 (synopsis "Displays stack trace in HTML")
1904 (description "Devel::StackTrace::AsHTML adds as_html method to
1905 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
1906 snippet context and function parameters. If you call it on an instance of
1907 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
1908 each stack frame.")
1909 (license (package-license perl))))
1910
1911 (define-public perl-devel-symdump
1912 (package
1913 (name "perl-devel-symdump")
1914 (version "2.14")
1915 (source
1916 (origin
1917 (method url-fetch)
1918 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
1919 "Devel-Symdump-" version ".tar.gz"))
1920 (sha256
1921 (base32
1922 "1phyyxgxsymgzbjd524zlaavvay6vjw34af5zn9153qffqign54v"))))
1923 (build-system perl-build-system)
1924 (home-page "http://search.cpan.org/dist/Devel-Symdump")
1925 (synopsis "Dump symbol names or the symbol table")
1926 (description "Devel::Symdump provides access to the perl symbol table.")
1927 (license (package-license perl))))
1928
1929 (define-public perl-digest-hmac
1930 (package
1931 (name "perl-digest-hmac")
1932 (version "1.03")
1933 (source
1934 (origin
1935 (method url-fetch)
1936 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1937 "Digest-HMAC-" version ".tar.gz"))
1938 (sha256
1939 (base32
1940 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
1941 (build-system perl-build-system)
1942 (home-page "http://search.cpan.org/dist/Digest-HMAC")
1943 (synopsis "Keyed-Hashing for Message Authentication")
1944 (description "The Digest::HMAC module follows the common Digest::
1945 interface for the RFC 2104 HMAC mechanism.")
1946 (license (package-license perl))))
1947
1948 (define-public perl-digest-sha1
1949 (package
1950 (name "perl-digest-sha1")
1951 (version "2.13")
1952 (source (origin
1953 (method url-fetch)
1954 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1955 "Digest-SHA1-" version ".tar.gz"))
1956 (sha256
1957 (base32
1958 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
1959 (build-system perl-build-system)
1960 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
1961 (description
1962 "This package provides 'Digest::SHA1', an implementation of the NIST
1963 SHA-1 message digest algorithm for use by Perl programs.")
1964 (home-page (string-append "http://search.cpan.org/~gaas/Digest-SHA1-"
1965 version "/SHA1.pm"))
1966 (license (package-license perl))))
1967
1968 (define-public perl-dist-checkconflicts
1969 (package
1970 (name "perl-dist-checkconflicts")
1971 (version "0.11")
1972 (source (origin
1973 (method url-fetch)
1974 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1975 "Dist-CheckConflicts-" version ".tar.gz"))
1976 (sha256
1977 (base32
1978 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
1979 (build-system perl-build-system)
1980 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
1981 (propagated-inputs
1982 `(("perl-module-runtime" ,perl-module-runtime)))
1983 (home-page "http://search.cpan.org/dist/Dist-CheckConflicts")
1984 (synopsis "Declare version conflicts for your dist")
1985 (description "This module allows you to specify conflicting versions of
1986 modules separately and deal with them after the module is done installing.")
1987 (license (package-license perl))))
1988
1989 (define-public perl-error
1990 (package
1991 (name "perl-error")
1992 (version "0.17023")
1993 (source (origin
1994 (method url-fetch)
1995 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
1996 "Error-" version ".tar.gz"))
1997 (sha256
1998 (base32
1999 "0dsxic78mxy30qvbbdzfyp501hbkwhnbmafqfxipr0yqfy8f2j5g"))))
2000 (build-system perl-build-system)
2001 (native-inputs `(("perl-module-build" ,perl-module-build)))
2002 (home-page "http://search.cpan.org/dist/Error")
2003 (synopsis "OO-ish Error/Exception handling for Perl")
2004 (description "The Error package provides two interfaces. Firstly Error
2005 provides a procedural interface to exception handling. Secondly Error is a
2006 base class for errors/exceptions that can either be thrown, for subsequent
2007 catch, or can simply be recorded.")
2008 (license (package-license perl))))
2009
2010 (define-public perl-eval-closure
2011 (package
2012 (name "perl-eval-closure")
2013 (version "0.12")
2014 (source
2015 (origin
2016 (method url-fetch)
2017 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2018 "Eval-Closure-" version ".tar.gz"))
2019 (sha256
2020 (base32
2021 "0ssvlgx3y1y28wrrp0lmmffzqxfrwb2lb3p60b8cjvxsf1c3jbfv"))))
2022 (build-system perl-build-system)
2023 (native-inputs
2024 `(("perl-test-fatal" ,perl-test-fatal)
2025 ("perl-test-requires" ,perl-test-requires)))
2026 (propagated-inputs
2027 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
2028 (home-page "http://search.cpan.org/dist/Eval-Closure")
2029 (synopsis "Safely and cleanly create closures via string eval")
2030 (description "String eval is often used for dynamic code generation. For
2031 instance, Moose uses it heavily, to generate inlined versions of accessors and
2032 constructors, which speeds code up at runtime by a significant amount. String
2033 eval is not without its issues however - it's difficult to control the scope
2034 it's used in (which determines which variables are in scope inside the eval),
2035 and it's easy to miss compilation errors, since eval catches them and sticks
2036 them in $@@ instead. This module attempts to solve these problems. It
2037 provides an eval_closure function, which evals a string in a clean
2038 environment, other than a fixed list of specified variables. Compilation
2039 errors are rethrown automatically.")
2040 (license (package-license perl))))
2041
2042 (define-public perl-exception-class
2043 (package
2044 (name "perl-exception-class")
2045 (version "1.39")
2046 (source
2047 (origin
2048 (method url-fetch)
2049 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2050 "Exception-Class-" version ".tar.gz"))
2051 (sha256
2052 (base32
2053 "10r06v6568s33p6h9f9ml0iabc07id86mjkf74gy7ld6d5m7b741"))))
2054 (build-system perl-build-system)
2055 (propagated-inputs
2056 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
2057 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
2058 (home-page "http://search.cpan.org/dist/Exception-Class")
2059 (synopsis "Allows you to declare real exception classes in Perl")
2060 (description "Exception::Class allows you to declare exception hierarchies
2061 in your modules in a \"Java-esque\" manner.")
2062 (license (package-license perl))))
2063
2064 (define-public perl-exporter-lite
2065 (package
2066 (name "perl-exporter-lite")
2067 (version "0.08")
2068 (source (origin
2069 (method url-fetch)
2070 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
2071 "Exporter-Lite-" version ".tar.gz"))
2072 (sha256
2073 (base32
2074 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
2075 (build-system perl-build-system)
2076 (synopsis "Lightweight exporting of functions and variables")
2077 (description
2078 "Exporter::Lite is an alternative to Exporter, intended to provide a
2079 lightweight subset of the most commonly-used functionality. It supports
2080 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
2081 (home-page "http://search.cpan.org/dist/Exporter-Lite")
2082 (license (package-license perl))))
2083
2084 (define-public perl-exporter-tiny
2085 (package
2086 (name "perl-exporter-tiny")
2087 (version "0.042")
2088 (source
2089 (origin
2090 (method url-fetch)
2091 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
2092 "Exporter-Tiny-" version ".tar.gz"))
2093 (sha256
2094 (base32
2095 "0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
2096 (build-system perl-build-system)
2097 (home-page "http://search.cpan.org/dist/Exporter-Tiny")
2098 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
2099 (description "Exporter::Tiny supports many of Sub::Exporter's
2100 external-facing features including renaming imported functions with the `-as`,
2101 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
2102 and alternative installers with the `installler` option. But it's written in
2103 only about 40% as many lines of code and with zero non-core dependencies.")
2104 (license (package-license perl))))
2105
2106 (define-public perl-extutils-installpaths
2107 (package
2108 (name "perl-extutils-installpaths")
2109 (version "0.010")
2110 (source
2111 (origin
2112 (method url-fetch)
2113 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2114 "ExtUtils-InstallPaths-" version ".tar.gz"))
2115 (sha256
2116 (base32
2117 "0mi1px42in7i442jqncg3gmxd5zn7sw5b2s85h690rz433qvyk6i"))))
2118 (build-system perl-build-system)
2119 (propagated-inputs
2120 `(("perl-extutils-config" ,perl-extutils-config)))
2121 (home-page "http://search.cpan.org/dist/ExtUtils-InstallPaths")
2122 (synopsis "Build.PL install path logic made easy")
2123 (description "This module tries to make install path resolution as easy as
2124 possible.")
2125 (license (package-license perl))))
2126
2127 (define-public perl-extutils-config
2128 (package
2129 (name "perl-extutils-config")
2130 (version "0.008")
2131 (source
2132 (origin
2133 (method url-fetch)
2134 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2135 "ExtUtils-Config-" version ".tar.gz"))
2136 (sha256
2137 (base32
2138 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
2139 (build-system perl-build-system)
2140 (home-page "http://search.cpan.org/dist/ExtUtils-Config")
2141 (synopsis "Wrapper for perl's configuration")
2142 (description "ExtUtils::Config is an abstraction around the %Config hash.
2143 By itself it is not a particularly interesting module by any measure, however
2144 it ties together a family of modern toolchain modules.")
2145 (license (package-license perl))))
2146
2147 (define-public perl-extutils-helpers
2148 (package
2149 (name "perl-extutils-helpers")
2150 (version "0.022")
2151 (source
2152 (origin
2153 (method url-fetch)
2154 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2155 "ExtUtils-Helpers-" version ".tar.gz"))
2156 (sha256
2157 (base32
2158 "15dalfwmpfmifw312i5pwiai8134pxf7b2804shlqhdk1xqczy6k"))))
2159 (build-system perl-build-system)
2160 (home-page "http://search.cpan.org/dist/ExtUtils-Helpers")
2161 (synopsis "Various portability utilities for module builders")
2162 (description "This module provides various portable helper functions for
2163 module building modules.")
2164 (license (package-license perl))))
2165
2166 (define-public perl-file-changenotify
2167 (package
2168 (name "perl-file-changenotify")
2169 (version "0.24")
2170 (source
2171 (origin
2172 (method url-fetch)
2173 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2174 "File-ChangeNotify-" version ".tar.gz"))
2175 (sha256
2176 (base32
2177 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
2178 (build-system perl-build-system)
2179 (native-inputs
2180 `(("perl-module-build" ,perl-module-build)
2181 ("perl-test-exception" ,perl-test-exception)))
2182 (propagated-inputs
2183 `(("perl-class-load" ,perl-class-load)
2184 ("perl-list-moreutils" ,perl-list-moreutils)
2185 ("perl-module-pluggable" ,perl-module-pluggable)
2186 ("perl-moose" ,perl-moose)
2187 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
2188 ("perl-moosex-semiaffordanceaccessor"
2189 ,perl-moosex-semiaffordanceaccessor)
2190 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2191 (home-page "http://search.cpan.org/dist/File-ChangeNotify")
2192 (synopsis "Watch for changes to files")
2193 (description "This module provides a class to monitor a directory for
2194 changes made to any file.")
2195 (license artistic2.0)))
2196
2197 (define-public perl-file-copy-recursive
2198 (package
2199 (name "perl-file-copy-recursive")
2200 (version "0.38")
2201 (source
2202 (origin
2203 (method url-fetch)
2204 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
2205 "File-Copy-Recursive-" version ".tar.gz"))
2206 (sha256
2207 (base32
2208 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
2209 (build-system perl-build-system)
2210 (home-page "http://search.cpan.org/dist/File-Copy-Recursive")
2211 (synopsis "Recursively copy files and directories")
2212 (description "This module has 3 functions: one to copy files only, one to
2213 copy directories only, and one to do either depending on the argument's
2214 type.")
2215 (license (package-license perl))))
2216
2217 (define-public perl-file-find-rule
2218 (package
2219 (name "perl-file-find-rule")
2220 (version "0.33")
2221 (source
2222 (origin
2223 (method url-fetch)
2224 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2225 "File-Find-Rule-" version ".tar.gz"))
2226 (sha256
2227 (base32
2228 "0w73b4jr2fcrd74a1w3b2jryq3mqzc8z5mk7ia9p85xn3qmpa5r4"))))
2229 (build-system perl-build-system)
2230 (propagated-inputs
2231 `(("perl-text-glob" ,perl-text-glob)
2232 ("perl-number-compare" ,perl-number-compare)))
2233 (home-page "http://search.cpan.org/dist/File-Find-Rule")
2234 (synopsis "Alternative interface to File::Find")
2235 (description "File::Find::Rule is a friendlier interface to File::Find.
2236 It allows you to build rules which specify the desired files and
2237 directories.")
2238 (license (package-license perl))))
2239
2240 (define-public perl-file-find-rule-perl
2241 (package
2242 (name "perl-file-find-rule-perl")
2243 (version "1.13")
2244 (source
2245 (origin
2246 (method url-fetch)
2247 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2248 "File-Find-Rule-Perl-" version ".tar.gz"))
2249 (sha256
2250 (base32
2251 "0xi4ppqr6r57l5xlkwxpvkvpb9p7dvz053d76v2m9pwdfxqb5v6j"))))
2252 (build-system perl-build-system)
2253 (propagated-inputs
2254 `(("perl-file-find-rule" ,perl-file-find-rule)
2255 ("perl-params-util" ,perl-params-util)
2256 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
2257 (home-page "http://search.cpan.org/dist/File-Find-Rule-Perl")
2258 (synopsis "Common rules for searching for Perl things")
2259 (description "File::Find::Rule::Perl provides methods for finding various
2260 types Perl-related files, or replicating search queries run on a distribution
2261 in various parts of the CPAN ecosystem.")
2262 (license (package-license perl))))
2263
2264 (define-public perl-file-homedir
2265 (package
2266 (name "perl-file-homedir")
2267 (version "1.00")
2268 (source
2269 (origin
2270 (method url-fetch)
2271 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2272 "File-HomeDir-" version ".tar.gz"))
2273 (sha256
2274 (base32
2275 "0hvihydd0y4gdxafi8dpybk9ll8q35bz5ycibfic0gh92cslzfc5"))))
2276 (build-system perl-build-system)
2277 (propagated-inputs
2278 `(("perl-file-which" ,perl-file-which)
2279 ("perl-file-temp" ,perl-file-temp)))
2280 (arguments `(#:tests? #f)) ;Not appropriate for chroot
2281 (home-page "http://search.cpan.org/dist/File-HomeDir")
2282 (synopsis "Find your home and other directories on any platform")
2283 (description "File::HomeDir is a module for locating the directories that
2284 are \"owned\" by a user (typically your user) and to solve the various issues
2285 that arise trying to find them consistently across a wide variety of
2286 platforms.")
2287 (license (package-license perl))))
2288
2289 (define-public perl-file-list
2290 (package
2291 (name "perl-file-list")
2292 (version "0.3.1")
2293 (source (origin
2294 (method url-fetch)
2295 (uri (string-append
2296 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
2297 version ".tar.gz"))
2298 (sha256
2299 (base32
2300 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
2301 (build-system perl-build-system)
2302 (arguments
2303 `(#:phases
2304 (alist-cons-after
2305 'unpack 'cd
2306 (lambda* _
2307 (chdir "List"))
2308 %standard-phases)))
2309 (license (package-license perl))
2310 (synopsis "Perl extension for crawling directory trees and compiling
2311 lists of files")
2312 (description
2313 "The File::List module crawls the directory tree starting at the
2314 provided base directory and can return files (and/or directories if desired)
2315 matching a regular expression.")
2316 (home-page "http://search.cpan.org/~dopacki/File-List/")))
2317
2318 (define-public perl-file-remove
2319 (package
2320 (name "perl-file-remove")
2321 (version "1.52")
2322 (source
2323 (origin
2324 (method url-fetch)
2325 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2326 "File-Remove-" version ".tar.gz"))
2327 (sha256
2328 (base32
2329 "1p8bal9qhwkjbghivxn1d5m3qdj2qwm1agrjbmakm6la9dbxqm21"))))
2330 (build-system perl-build-system)
2331 (home-page "http://search.cpan.org/dist/File-Remove")
2332 (synopsis "Remove files and directories in Perl")
2333 (description "File::Remove::remove removes files and directories. It acts
2334 like /bin/rm, for the most part. Although \"unlink\" can be given a list of
2335 files, it will not remove directories; this module remedies that. It also
2336 accepts wildcards, * and ?, as arguments for file names.")
2337 (license (package-license perl))))
2338
2339 (define-public perl-file-sharedir
2340 (package
2341 (name "perl-file-sharedir")
2342 (version "1.102")
2343 (source
2344 (origin
2345 (method url-fetch)
2346 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2347 "File-ShareDir-" version ".tar.gz"))
2348 (sha256
2349 (base32
2350 "04blqn4cms9zjmhlfvwyx6mrglaaq1mmy4xwv7xqf9c8fjwk8wvw"))))
2351 (build-system perl-build-system)
2352 (native-inputs
2353 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
2354 (propagated-inputs
2355 `(("perl-class-inspector" ,perl-class-inspector)))
2356 (home-page "http://search.cpan.org/dist/File-ShareDir")
2357 (synopsis "Locate per-dist and per-module shared files")
2358 (description "The intent of File::ShareDir is to provide a companion to
2359 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
2360 module to have access to a large amount of read-only data that is stored on
2361 the file-system at run-time. Once the files have been installed to the
2362 correct directory, you can use File::ShareDir to find your files again after
2363 the installation.")
2364 (license (package-license perl))))
2365
2366 (define-public perl-file-sharedir-install
2367 (package
2368 (name "perl-file-sharedir-install")
2369 (version "0.10")
2370 (source
2371 (origin
2372 (method url-fetch)
2373 (uri (string-append "mirror://cpan/authors/id/G/GW/GWYN/"
2374 "File-ShareDir-Install-" version ".tar.gz"))
2375 (sha256
2376 (base32
2377 "1xz60bi7x8755lq24rx7y1jkyk3icssn7s55z665mysdxhfzg2kh"))))
2378 (build-system perl-build-system)
2379 (home-page "http://search.cpan.org/dist/File-ShareDir-Install")
2380 (synopsis "Install shared files")
2381 (description "File::ShareDir::Install allows you to install read-only data
2382 files from a distribution. It is a companion module to File::ShareDir, which
2383 allows you to locate these files after installation.")
2384 (license (package-license perl))))
2385
2386 (define-public perl-file-slurp
2387 (package
2388 (name "perl-file-slurp")
2389 (version "9999.19")
2390 (source
2391 (origin
2392 (method url-fetch)
2393 (uri (string-append "mirror://cpan/authors/id/U/UR/URI/"
2394 "File-Slurp-" version ".tar.gz"))
2395 (sha256
2396 (base32
2397 "0hrn4nipwx40d6ji8ssgr5nw986z9iqq8cn0kdpbszh9jplynaff"))))
2398 (build-system perl-build-system)
2399 (home-page "http://search.cpan.org/dist/File-Slurp")
2400 (synopsis "Reading/Writing/Modifying of complete files")
2401 (description "File::Slurp provides subroutines to read or write entire
2402 files with a simple call. It also has a subroutine for reading the list of
2403 file names in a directory.")
2404 (license (package-license perl))))
2405
2406 (define-public perl-file-slurp-tiny
2407 (package
2408 (name "perl-file-slurp-tiny")
2409 (version "0.004")
2410 (source (origin
2411 (method url-fetch)
2412 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2413 "File-Slurp-Tiny-" version ".tar.gz"))
2414 (sha256
2415 (base32
2416 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
2417 (build-system perl-build-system)
2418 (home-page "http://search.cpan.org/dist/File-Slurp-Tiny")
2419 (synopsis "Simple file reader and writer")
2420 (description
2421 "This module provides functions for fast reading and writing of files.")
2422 (license (package-license perl))))
2423
2424 (define-public perl-file-temp
2425 (package
2426 (name "perl-file-temp")
2427 (version "0.2304")
2428 (source
2429 (origin
2430 (method url-fetch)
2431 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
2432 "File-Temp-" version ".tar.gz"))
2433 (sha256
2434 (base32
2435 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
2436 (build-system perl-build-system)
2437 (propagated-inputs
2438 `(("perl-parent" ,perl-parent)))
2439 (home-page "http://search.cpan.org/dist/File-Temp")
2440 (synopsis "Return name and handle of a temporary file safely")
2441 (description "File::Temp can be used to create and open temporary files in
2442 a safe way.")
2443 (license (package-license perl))))
2444
2445 (define-public perl-file-which
2446 (package
2447 (name "perl-file-which")
2448 (version "1.09")
2449 (source (origin
2450 (method url-fetch)
2451 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2452 "File-Which-" version ".tar.gz"))
2453 (sha256
2454 (base32
2455 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
2456 (build-system perl-build-system)
2457 (native-inputs `(("test-script" ,perl-test-script)))
2458 (synopsis "Portable implementation of the `which' utility")
2459 (description
2460 "File::Which was created to be able to get the paths to executable
2461 programs on systems under which the `which' program wasn't implemented in the
2462 shell.")
2463 (home-page (string-append "http://search.cpan.org/~adamk/"
2464 "File-Which-" version))
2465 (license (package-license perl))))
2466
2467 (define-public perl-file-zglob
2468 (package
2469 (name "perl-file-zglob")
2470 (version "0.11")
2471 (source (origin
2472 (method url-fetch)
2473 (uri (string-append
2474 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
2475 version ".tar.gz"))
2476 (sha256
2477 (base32
2478 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
2479 (build-system perl-build-system)
2480 (home-page "http://search.cpan.org/dist/File-Zglob")
2481 (synopsis "Extended Unix style glob functionality")
2482 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
2483 functionality; it returns a list of file names that match the given pattern.
2484 For instance, it supports the @code{**/*.pm} form.")
2485 (license (package-license perl))))
2486
2487 (define-public perl-getopt-long-descriptive
2488 (package
2489 (name "perl-getopt-long-descriptive")
2490 (version "0.098")
2491 (source
2492 (origin
2493 (method url-fetch)
2494 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
2495 "Getopt-Long-Descriptive-" version ".tar.gz"))
2496 (sha256
2497 (base32
2498 "08lphvqshcajvvd6z4rvcda6rx5kz8pysrsip4nfv2mbks95p9ma"))))
2499 (build-system perl-build-system)
2500 (native-inputs
2501 `(("perl-test-fatal" ,perl-test-fatal)
2502 ("perl-test-warnings" ,perl-test-warnings)))
2503 (propagated-inputs
2504 `(("perl-params-validate" ,perl-params-validate)
2505 ("perl-sub-exporter" ,perl-sub-exporter)))
2506 (home-page "http://search.cpan.org/dist/Getopt-Long-Descriptive")
2507 (synopsis "Getopt::Long, but simpler and more powerful")
2508 (description "Getopt::Long::Descriptive is yet another Getopt library.
2509 It's built atop Getopt::Long, and gets a lot of its features, but tries to
2510 avoid making you think about its huge array of options. It also provides
2511 usage (help) messages, data validation, and a few other useful features.")
2512 (license (package-license perl))))
2513
2514 (define-public perl-getopt-tabular
2515 (package
2516 (name "perl-getopt-tabular")
2517 (version "0.3")
2518 (source (origin
2519 (method url-fetch)
2520 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
2521 "Getopt-Tabular-" version ".tar.gz"))
2522 (sha256
2523 (base32
2524 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
2525 (build-system perl-build-system)
2526 (synopsis "Table-driven argument parsing for Perl")
2527 (description
2528 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
2529 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
2530 (home-page (string-append "http://search.cpan.org/~gward/"
2531 "Getopt-Tabular-" version))
2532 (license (package-license perl))))
2533
2534 (define-public perl-guard
2535 (package
2536 (name "perl-guard")
2537 (version "1.023")
2538 (source (origin
2539 (method url-fetch)
2540 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
2541 version ".tar.gz"))
2542 (sha256
2543 (base32
2544 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
2545 (build-system perl-build-system)
2546 (home-page "http://search.cpan.org/dist/Guard")
2547 (synopsis "Safe cleanup blocks implemented as guards")
2548 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
2549 something (usually an object) that \"guards\" a resource, ensuring that it is
2550 cleaned up when expected.
2551
2552 Specifically, this module supports two different types of guards: guard
2553 objects, which execute a given code block when destroyed, and scoped guards,
2554 which are tied to the scope exit.")
2555 (license (package-license perl))))
2556
2557 (define-public perl-hash-merge
2558 (package
2559 (name "perl-hash-merge")
2560 (version "0.200")
2561 (source
2562 (origin
2563 (method url-fetch)
2564 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2565 "Hash-Merge-" version ".tar.gz"))
2566 (sha256
2567 (base32
2568 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
2569 (build-system perl-build-system)
2570 (home-page "http://search.cpan.org/dist/Hash-Merge")
2571 (synopsis "Merge arbitrarily deep hashes into a single hash")
2572 (description "Hash::Merge merges two arbitrarily deep hashes into a single
2573 hash. That is, at any level, it will add non-conflicting key-value pairs from
2574 one hash to the other, and follows a set of specific rules when there are key
2575 value conflicts. The hash is followed recursively, so that deeply nested
2576 hashes that are at the same level will be merged when the parent hashes are
2577 merged.")
2578 (license (package-license perl))))
2579
2580 (define-public perl-hash-multivalue
2581 (package
2582 (name "perl-hash-multivalue")
2583 (version "0.15")
2584 (source
2585 (origin
2586 (method url-fetch)
2587 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2588 "Hash-MultiValue-" version ".tar.gz"))
2589 (sha256
2590 (base32
2591 "1jc37kwpa1fl88va8bd1p95h0vjv1gsvmn7pc2pxj62ga6x0wpc0"))))
2592 (build-system perl-build-system)
2593 (home-page "http://search.cpan.org/dist/Hash-MultiValue")
2594 (synopsis "Store multiple values per key")
2595 (description "Hash::MultiValue is an object (and a plain hash reference)
2596 that may contain multiple values per key, inspired by MultiDict of WebOb.")
2597 (license (package-license perl))))
2598
2599 (define-public perl-import-into
2600 (package
2601 (name "perl-import-into")
2602 (version "1.002004")
2603 (source
2604 (origin
2605 (method url-fetch)
2606 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2607 "Import-Into-" version ".tar.gz"))
2608 (sha256
2609 (base32
2610 "110hifk3cj14lxgjq2vaa2qfja21gll4lpn8vbimy0gzqadjbjyy"))))
2611 (build-system perl-build-system)
2612 (propagated-inputs
2613 `(("perl-module-runtime" ,perl-module-runtime)))
2614 (home-page "http://search.cpan.org/dist/Import-Into")
2615 (synopsis "Import packages into other packages")
2616 (description "Writing exporters is a pain. Some use Exporter, some use
2617 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
2618 some things are pragmas. Exporting on someone else's behalf is harder. The
2619 exporters don't provide a consistent API for this, and pragmas need to have
2620 their import method called directly, since they effect the current unit of
2621 compilation. Import::Into provides global methods to make this painless.")
2622 (license (package-license perl))))
2623
2624 (define-public perl-inc-latest
2625 (package
2626 (name "perl-inc-latest")
2627 (version "0.500")
2628 (source
2629 (origin
2630 (method url-fetch)
2631 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
2632 "inc-latest-" version ".tar.gz"))
2633 (sha256
2634 (base32
2635 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
2636 (build-system perl-build-system)
2637 (home-page "http://search.cpan.org/dist/inc-latest")
2638 (synopsis "Use modules in inc/ if newer than installed")
2639 (description "The inc::latest module helps bootstrap configure-time
2640 dependencies for CPAN distributions. These dependencies get bundled into the
2641 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
2642 (license asl2.0)))
2643
2644 (define-public perl-io-captureoutput
2645 (package
2646 (name "perl-io-captureoutput")
2647 (version "1.1104")
2648 (source
2649 (origin
2650 (method url-fetch)
2651 (uri (string-append
2652 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
2653 version
2654 ".tar.gz"))
2655 (sha256
2656 (base32
2657 "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
2658 (build-system perl-build-system)
2659 (home-page "http://search.cpan.org/dist/IO-CaptureOutput")
2660 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
2661 (description "@code{IO::CaptureOutput} provides routines for capturing
2662 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
2663 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
2664
2665 This module is no longer recommended by its maintainer. Users are advised to
2666 try @code{Capture::Tiny} instead.")
2667 (license (package-license perl))))
2668
2669 (define-public perl-io-interactive
2670 (package
2671 (name "perl-io-interactive")
2672 (version "0.0.6")
2673 (source
2674 (origin
2675 (method url-fetch)
2676 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
2677 "IO-Interactive-" version ".tar.gz"))
2678 (sha256
2679 (base32
2680 "1303q6rbcf2cag5z08pq3d1y91wls5q51jrpw4kh0l2bv75idh4w"))))
2681 (build-system perl-build-system)
2682 (home-page "http://search.cpan.org/dist/IO-Interactive")
2683 (synopsis "Utilities for interactive I/O")
2684 (description "This module provides three utility subroutines that make it
2685 easier to develop interactive applications: is_interactive(), interactive(),
2686 and busy().")
2687 (license (package-license perl))))
2688
2689 (define-public perl-io-string
2690 (package
2691 (name "perl-io-string")
2692 (version "1.08")
2693 (source
2694 (origin
2695 (method url-fetch)
2696 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2697 "IO-String-" version ".tar.gz"))
2698 (sha256
2699 (base32
2700 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
2701 (build-system perl-build-system)
2702 (home-page "http://search.cpan.org/~gaas/IO-String-1.08/")
2703 (synopsis "Emulate file interface for in-core strings")
2704 (description "IO::String is an IO::File (and IO::Handle) compatible class
2705 that reads or writes data from in-core strings.")
2706 (license (package-license perl))))
2707
2708 (define-public perl-io-stringy
2709 (package
2710 (name "perl-io-stringy")
2711 (version "2.110")
2712 (source
2713 (origin
2714 (method url-fetch)
2715 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
2716 "IO-stringy-" version ".tar.gz"))
2717 (sha256
2718 (base32
2719 "1vh4n0k22hx20rwvf6h7lp25wb7spg0089shrf92d2lkncwg8g3y"))))
2720 (build-system perl-build-system)
2721 (home-page "http://search.cpan.org/dist/IO-stringy")
2722 (synopsis "IO:: interface for reading/writing an array of lines")
2723 (description "This toolkit primarily provides modules for performing both
2724 traditional and object-oriented i/o) on things *other* than normal
2725 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
2726 (license (package-license perl))))
2727
2728 (define-public perl-io-tty
2729 (package
2730 (name "perl-io-tty")
2731 (version "1.11")
2732 (source (origin
2733 (method url-fetch)
2734 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
2735 version ".tar.gz"))
2736 (sha256
2737 (base32
2738 "0lgd9xcbi4gf4gw1ka6fj94my3w1f3k1zamb4pfln0qxz45zlxx4"))))
2739 (build-system perl-build-system)
2740 (home-page "http://search.cpan.org/~toddr/IO-Tty/")
2741 (synopsis "Perl interface to pseudo ttys")
2742 (description
2743 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
2744 pseudo ttys.")
2745 (license (package-license perl))))
2746
2747 (define-public perl-ipc-run
2748 (package
2749 (name "perl-ipc-run")
2750 (version "0.94")
2751 (source
2752 (origin
2753 (method url-fetch)
2754 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
2755 "IPC-Run-" version ".tar.gz"))
2756 (sha256
2757 (base32
2758 "0nv0lpw31zaz6vi42q7ihjj3j382j4njicp5k0gsczib3b4kdcrf"))))
2759 (build-system perl-build-system)
2760 (propagated-inputs
2761 `(("perl-io-tty" ,perl-io-tty)))
2762 (arguments
2763 `(#:phases (modify-phases %standard-phases
2764 (add-before
2765 'check 'disable-w32-test
2766 (lambda _
2767 ;; This test fails, and we're not really interested in
2768 ;; it, so disable it.
2769 (delete-file "t/win32_compile.t"))))))
2770 (home-page "http://search.cpan.org/dist/IPC-Run")
2771 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
2772 (description "IPC::Run allows you run and interact with child processes
2773 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
2774 are supported and may be mixed. Likewise, functional and OO API styles are
2775 both supported and may be mixed.")
2776 (license (package-license perl))))
2777
2778 (define-public perl-ipc-run3
2779 (package
2780 (name "perl-ipc-run3")
2781 (version "0.048")
2782 (source (origin
2783 (method url-fetch)
2784 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
2785 "IPC-Run3-" version ".tar.gz"))
2786 (sha256
2787 (base32
2788 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
2789 (build-system perl-build-system)
2790 (synopsis "Run a subprocess with input/output redirection")
2791 (description
2792 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
2793 stdout, and/or stderr to files and perl data structures. It aims to satisfy
2794 99% of the need for using system, qx, and open3 with a simple, extremely
2795 Perlish API and none of the bloat and rarely used features of IPC::Run.")
2796 (home-page (string-append "http://search.cpan.org/~rjbs/"
2797 "IPC-Run3-" version))
2798 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
2799 ;; licenses, any version."
2800 (license (list bsd-3 gpl3+))))
2801
2802 (define-public perl-ipc-sharelite
2803 (package
2804 (name "perl-ipc-sharelite")
2805 (version "0.17")
2806 (source
2807 (origin
2808 (method url-fetch)
2809 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
2810 "IPC-ShareLite-" version ".tar.gz"))
2811 (sha256
2812 (base32
2813 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
2814 (build-system perl-build-system)
2815 (home-page "http://search.cpan.org/dist/IPC-ShareLite")
2816 (synopsis "Lightweight interface to shared memory")
2817 (description "IPC::ShareLite provides a simple interface to shared memory,
2818 allowing data to be efficiently communicated between processes.")
2819 (license (package-license perl))))
2820
2821 (define-public perl-ipc-system-simple
2822 (package
2823 (name "perl-ipc-system-simple")
2824 (version "1.25")
2825 (source (origin
2826 (method url-fetch)
2827 (uri (string-append
2828 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
2829 version ".tar.gz"))
2830 (sha256
2831 (base32
2832 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
2833 (build-system perl-build-system)
2834 (home-page "http://search.cpan.org/dist/IPC-System-Simple")
2835 (synopsis "Run commands simply, with detailed diagnostics")
2836 (description "Calling Perl's in-built @code{system} function is easy,
2837 determining if it was successful is hard. Let's face it, @code{$?} isn't the
2838 nicest variable in the world to play with, and even if you do check it,
2839 producing a well-formatted error string takes a lot of work.
2840
2841 @code{IPC::System::Simple} takes the hard work out of calling external
2842 commands.")
2843 (license (package-license perl))))
2844
2845 (define-public perl-json
2846 (package
2847 (name "perl-json")
2848 (version "2.90")
2849 (source
2850 (origin
2851 (method url-fetch)
2852 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
2853 "JSON-" version ".tar.gz"))
2854 (sha256
2855 (base32
2856 "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
2857 (build-system perl-build-system)
2858 (propagated-inputs
2859 `(("perl-json-xs" ,perl-json-xs))) ;recommended
2860 (home-page "http://search.cpan.org/dist/JSON")
2861 (synopsis "JSON encoder/decoder for Perl")
2862 (description "This module converts Perl data structures to JSON and vice
2863 versa using either JSON::XS or JSON::PP.")
2864 (license (package-license perl))))
2865
2866 (define-public perl-json-any
2867 (package
2868 (name "perl-json-any")
2869 (version "1.38")
2870 (source
2871 (origin
2872 (method url-fetch)
2873 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2874 "JSON-Any-" version ".tar.gz"))
2875 (sha256
2876 (base32
2877 "0mk6shg82i7y852bvj5d0qqma1d9k0jh10k4mg62hbgr800gb2m4"))))
2878 (build-system perl-build-system)
2879 (native-inputs
2880 `(("perl-test-fatal" ,perl-test-fatal)
2881 ("perl-test-requires" ,perl-test-requires)
2882 ("perl-test-warnings" ,perl-test-warnings)
2883 ("perl-test-without-module" ,perl-test-without-module)))
2884 (propagated-inputs
2885 `(("perl-namespace-clean" ,perl-namespace-clean)))
2886 (home-page "http://search.cpan.org/dist/JSON-Any")
2887 (synopsis "Wrapper for Perl JSON classes")
2888 (description
2889 "This module tries to provide a coherent API to bring together the
2890 various JSON modules currently on CPAN. This module will allow you to code to
2891 any JSON API and have it work regardless of which JSON module is actually
2892 installed.")
2893 (license (package-license perl))))
2894
2895 (define-public perl-json-maybexs
2896 (package
2897 (name "perl-json-maybexs")
2898 (version "1.003003")
2899 (source
2900 (origin
2901 (method url-fetch)
2902 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2903 "JSON-MaybeXS-" version ".tar.gz"))
2904 (sha256
2905 (base32
2906 "0q21wzz87drrvblxcm2py8fcvkzwx1hxzfybynz8ln7wv66vbx3f"))))
2907 (build-system perl-build-system)
2908 (native-inputs
2909 `(("perl-test-without-module" ,perl-test-without-module)))
2910 (inputs
2911 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
2912 (home-page "http://search.cpan.org/dist/JSON-MaybeXS")
2913 (synopsis "Cpanel::JSON::XS with fallback")
2914 (description "This module first checks to see if either Cpanel::JSON::XS
2915 or JSON::XS is already loaded, in which case it uses that module. Otherwise
2916 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
2917 either uses the first module it finds or throws an error.")
2918 (license (package-license perl))))
2919
2920 (define-public perl-json-xs
2921 (package
2922 (name "perl-json-xs")
2923 (version "3.01")
2924 (source
2925 (origin
2926 (method url-fetch)
2927 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
2928 "JSON-XS-" version ".tar.gz"))
2929 (sha256
2930 (base32
2931 "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
2932 (build-system perl-build-system)
2933 (propagated-inputs
2934 `(("perl-common-sense" ,perl-common-sense)
2935 ("perl-types-serialiser" ,perl-types-serialiser)))
2936 (home-page "http://search.cpan.org/dist/JSON-XS")
2937 (synopsis "JSON serialising/deserialising for Perl")
2938 (description "This module converts Perl data structures to JSON and vice
2939 versa.")
2940 (license (package-license perl))))
2941
2942 (define-public perl-log-report-optional
2943 (package
2944 (name "perl-log-report-optional")
2945 (version "1.01")
2946 (source (origin
2947 (method url-fetch)
2948 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
2949 "Log-Report-Optional-" version ".tar.gz"))
2950 (sha256
2951 (base32
2952 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
2953 (build-system perl-build-system)
2954 (propagated-inputs
2955 `(("perl-string-print" ,perl-string-print)))
2956 (home-page "http://search.cpan.org/dist/Log-Report-Optional")
2957 (synopsis "Log::Report in the lightest form")
2958 (description
2959 "This module allows libraries to have a dependency to a small module
2960 instead of the full Log-Report distribution. The full power of
2961 @code{Log::Report} is only released when the main program uses that module.
2962 In that case, the module using the 'Optional' will also use the full
2963 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
2964 version.")
2965 (license (package-license perl))))
2966
2967 (define-public perl-log-report
2968 (package
2969 (name "perl-log-report")
2970 (version "1.10")
2971 (source (origin
2972 (method url-fetch)
2973 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
2974 "Log-Report-" version ".tar.gz"))
2975 (sha256
2976 (base32
2977 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
2978 (build-system perl-build-system)
2979 (propagated-inputs
2980 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
2981 ("perl-log-report-optional" ,perl-log-report-optional)
2982 ("perl-string-print" ,perl-string-print)))
2983 (home-page "http://search.cpan.org/dist/Log-Report")
2984 (synopsis "Get messages to users and logs")
2985 (description
2986 "@code{Log::Report} combines three tasks which are closely related in
2987 one: logging, exceptions, and translations.")
2988 (license (package-license perl))))
2989
2990 (define-public perl-list-allutils
2991 (package
2992 (name "perl-list-allutils")
2993 (version "0.09")
2994 (source
2995 (origin
2996 (method url-fetch)
2997 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2998 "List-AllUtils-" version ".tar.gz"))
2999 (sha256
3000 (base32
3001 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
3002 (build-system perl-build-system)
3003 (native-inputs
3004 `(("perl-test-warnings" ,perl-test-warnings)))
3005 (propagated-inputs
3006 `(("perl-list-moreutils" ,perl-list-moreutils)
3007 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
3008 (home-page "http://search.cpan.org/dist/List-AllUtils")
3009 (synopsis "Combination of List::Util and List::MoreUtils")
3010 (description "This module exports all of the functions that either
3011 List::Util or List::MoreUtils defines, with preference to List::Util.")
3012 (license (package-license perl))))
3013
3014 (define-public perl-list-compare
3015 (package
3016 (name "perl-list-compare")
3017 (version "0.53")
3018 (source
3019 (origin
3020 (method url-fetch)
3021 (uri (string-append
3022 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
3023 version
3024 ".tar.gz"))
3025 (sha256
3026 (base32
3027 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
3028 (build-system perl-build-system)
3029 (native-inputs
3030 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
3031 (home-page "http://search.cpan.org/dist/List-Compare")
3032 (synopsis "Compare elements of two or more lists")
3033 (description "@code{List::Compare} provides a module to perform
3034 comparative operations on two or more lists. Provided operations include
3035 intersections, unions, unique elements, complements and many more.")
3036 (license (package-license perl))))
3037
3038 (define-public perl-list-moreutils
3039 (package
3040 (name "perl-list-moreutils")
3041 (version "0.402")
3042 (source
3043 (origin
3044 (method url-fetch)
3045 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3046 "List-MoreUtils-" version ".tar.gz"))
3047 (sha256
3048 (base32
3049 "1i0k7kqg1m9nf2xvq9l4lyf38fxvi9952vmmvhcdaf3qa95pxb24"))))
3050 (build-system perl-build-system)
3051 (native-inputs
3052 `(("perl-config-autoconf" ,perl-config-autoconf)
3053 ("perl-inc-latest" ,perl-inc-latest)
3054 ("perl-test-writevariants" ,perl-test-writevariants)))
3055 (propagated-inputs
3056 `(("perl-exporter-tiny" ,perl-exporter-tiny)))
3057 (home-page "http://search.cpan.org/dist/List-MoreUtils")
3058 (synopsis "Provide the stuff missing in List::Util")
3059 (description "List::MoreUtils provides some trivial but commonly needed
3060 functionality on lists which is not going to go into List::Util.")
3061 (license (package-license perl))))
3062
3063 (define-public perl-list-someutils
3064 (package
3065 (name "perl-list-someutils")
3066 (version "0.52")
3067 (source
3068 (origin
3069 (method url-fetch)
3070 (uri (string-append
3071 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
3072 version
3073 ".tar.gz"))
3074 (sha256
3075 (base32
3076 "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
3077 (build-system perl-build-system)
3078 (native-inputs
3079 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
3080 (inputs
3081 `(("perl-exporter-tiny" ,perl-exporter-tiny)
3082 ("perl-module-implementation"
3083 ,perl-module-implementation)))
3084 (home-page "http://search.cpan.org/dist/List-SomeUtils")
3085 (synopsis "Provide the stuff missing in List::Util")
3086 (description "@code{List::SomeUtils} provides some trivial but commonly
3087 needed functionality on lists which is not going to go into @code{List::Util}.
3088
3089 All of the below functions are implementable in only a couple of lines of Perl
3090 code. Using the functions from this module however should give slightly
3091 better performance as everything is implemented in C. The pure-Perl
3092 implementation of these functions only serves as a fallback in case the C
3093 portions of this module couldn't be compiled on this machine.")
3094 (license (package-license perl))))
3095
3096 (define-public perl-memoize-expirelru
3097 (package
3098 (name "perl-memoize-expirelru")
3099 (version "0.55")
3100 (source
3101 (origin
3102 (method url-fetch)
3103 (uri (string-append "mirror://cpan/authors/id/B/BP/BPOWERS/"
3104 "Memoize-ExpireLRU-" version ".tar.gz"))
3105 (sha256
3106 (base32
3107 "0klk0vj78lr259mnv1rbxib8gzf2cfp4zhkhbcxyhadkkl73myvj"))))
3108 (build-system perl-build-system)
3109 (home-page "http://search.cpan.org/dist/Memoize-ExpireLRU")
3110 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
3111 (description "This module implements an expiry policy for Memoize that
3112 follows LRU semantics, that is, the last n results, where n is specified as
3113 the argument to the CACHESIZE parameter, will be cached.")
3114 (license (package-license perl))))
3115
3116 (define-public perl-mime-charset
3117 (package
3118 (name "perl-mime-charset")
3119 (version "1.012")
3120 (source (origin
3121 (method url-fetch)
3122 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
3123 "MIME-Charset-" version ".tar.gz"))
3124 (sha256
3125 (base32
3126 "1kfc5p4g1x9c0ffhg125wvhravcviny3alwrgnhnrm2a33ad3rff"))))
3127 (build-system perl-build-system)
3128 (home-page "http://search.cpan.org/dist/MIME-Charset")
3129 (synopsis "Charset information for MIME messages")
3130 (description
3131 "@code{MIME::Charset} provides information about character sets used for
3132 MIME messages on Internet.")
3133 (license (package-license perl))))
3134
3135 (define-public perl-mime-types
3136 (package
3137 (name "perl-mime-types")
3138 (version "2.09")
3139 (source
3140 (origin
3141 (method url-fetch)
3142 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
3143 "MIME-Types-" version ".tar.gz"))
3144 (sha256
3145 (base32
3146 "0s7s2z9xc1nc2l59rk80iaa04r36k0y95231212kz5p3ln7szk1c"))))
3147 (build-system perl-build-system)
3148 (home-page "http://search.cpan.org/dist/MIME-Types")
3149 (synopsis "Definition of MIME types")
3150 (description "This module provides a list of known mime-types, combined
3151 from various sources. For instance, it contains all IANA types and the
3152 knowledge of Apache.")
3153 (license (package-license perl))))
3154
3155 (define-public perl-mixin-linewise
3156 (package
3157 (name "perl-mixin-linewise")
3158 (version "0.108")
3159 (source (origin
3160 (method url-fetch)
3161 (uri (string-append
3162 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
3163 version ".tar.gz"))
3164 (sha256
3165 (base32
3166 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
3167 (build-system perl-build-system)
3168 (inputs
3169 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
3170 ("perl-sub-exporter" ,perl-sub-exporter)))
3171 (home-page "http://search.cpan.org/dist/Mixin-Linewise")
3172 (synopsis "Write your linewise code for handles; this does the rest")
3173 (description "It's boring to deal with opening files for IO, converting
3174 strings to handle-like objects, and all that. With
3175 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
3176 just write a method to handle handles, and methods for handling strings and
3177 file names are added for you.")
3178 (license (package-license perl))))
3179
3180 (define-public perl-module-build-tiny
3181 (package
3182 (name "perl-module-build-tiny")
3183 (version "0.039")
3184 (source
3185 (origin
3186 (method url-fetch)
3187 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3188 "Module-Build-Tiny-" version ".tar.gz"))
3189 (sha256
3190 (base32
3191 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
3192 (build-system perl-build-system)
3193 (native-inputs
3194 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
3195 ("perl-extutils-config" ,perl-extutils-config)
3196 ("perl-extutils-helpers" ,perl-extutils-helpers)
3197 ("perl-test-harness" ,perl-test-harness)))
3198 (propagated-inputs
3199 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
3200 ("perl-extutils-config" ,perl-extutils-config)
3201 ("perl-extutils-helpers" ,perl-extutils-helpers)
3202 ("perl-test-harness" ,perl-test-harness)))
3203 (home-page "http://search.cpan.org/dist/Module-Build-Tiny")
3204 (synopsis "Tiny replacement for Module::Build")
3205 (description "Many Perl distributions use a Build.PL file instead of a
3206 Makefile.PL file to drive distribution configuration, build, test and
3207 installation. Traditionally, Build.PL uses Module::Build as the underlying
3208 build system. This module provides a simple, lightweight, drop-in
3209 replacement. Whereas Module::Build has over 6,700 lines of code; this module
3210 has less than 120, yet supports the features needed by most distributions.")
3211 (license (package-license perl))))
3212
3213 (define-public perl-module-find
3214 (package
3215 (name "perl-module-find")
3216 (version "0.12")
3217 (source
3218 (origin
3219 (method url-fetch)
3220 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
3221 "Module-Find-" version ".tar.gz"))
3222 (sha256
3223 (base32
3224 "1lc33jdv4pgmm7nkr9bff0lhwjhhw91kaf6iiy2n7i7mw8dfv47l"))))
3225 (build-system perl-build-system)
3226 (home-page "http://search.cpan.org/dist/Module-Find")
3227 (synopsis "Find and use installed modules in a (sub)category")
3228 (description "Module::Find lets you find and use modules in categories.
3229 This can be useful for auto-detecting driver or plugin modules. You can
3230 differentiate between looking in the category itself or in all
3231 subcategories.")
3232 (license (package-license perl))))
3233
3234 (define-public perl-module-implementation
3235 (package
3236 (name "perl-module-implementation")
3237 (version "0.09")
3238 (source
3239 (origin
3240 (method url-fetch)
3241 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3242 "Module-Implementation-" version ".tar.gz"))
3243 (sha256
3244 (base32
3245 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
3246 (build-system perl-build-system)
3247 (native-inputs
3248 `(("perl-test-fatal" ,perl-test-fatal)
3249 ("perl-test-requires" ,perl-test-requires)))
3250 (propagated-inputs
3251 `(("perl-module-runtime" ,perl-module-runtime)
3252 ("perl-try-tiny" ,perl-try-tiny)))
3253 (home-page "http://search.cpan.org/dist/Module-Implementation")
3254 (synopsis "Loads alternate underlying implementations for a module")
3255 (description "This module abstracts out the process of choosing one of
3256 several underlying implementations for a module. This can be used to provide
3257 XS and pure Perl implementations of a module, or it could be used to load an
3258 implementation for a given OS or any other case of needing to provide multiple
3259 implementations.")
3260 (license artistic2.0)))
3261
3262 (define-public perl-module-install
3263 (package
3264 (name "perl-module-install")
3265 (version "1.14")
3266 (source
3267 (origin
3268 (method url-fetch)
3269 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/"
3270 "Module-Install-" version ".tar.gz"))
3271 (sha256
3272 (base32
3273 "0j8dz87k60i1khd9xadd8kl6bgm9s5s5zl86rzsz5bq36siz00iz"))))
3274 (build-system perl-build-system)
3275 (native-inputs
3276 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
3277 (propagated-inputs
3278 `(("perl-archive-zip" ,perl-archive-zip)
3279 ("perl-file-homedir" ,perl-file-homedir)
3280 ("perl-file-remove" ,perl-file-remove)
3281 ("perl-json" ,perl-json)
3282 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
3283 ;; would cause a circular dependency with (gnu packages web), so we
3284 ;; leave it out. It may be resolved at runtime, however.
3285 ;("perl-libwww-perl" ,perl-libwww-perl)
3286 ("perl-module-scandeps" ,perl-module-scandeps)
3287 ("perl-par-dist" ,perl-par-dist)
3288 ("perl-yaml-tiny" ,perl-yaml-tiny)))
3289 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
3290 ;; character handling.
3291 (arguments `(#:tests? #f))
3292 (home-page "http://search.cpan.org/dist/Module-Install")
3293 (synopsis "Standalone, extensible Perl module installer")
3294 (description "Module::Install is a package for writing installers for
3295 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
3296 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
3297 installation version 5.005 or newer.")
3298 (license (package-license perl))))
3299
3300 (define-public perl-module-pluggable
3301 (package
3302 (name "perl-module-pluggable")
3303 (version "5.2")
3304 (source
3305 (origin
3306 (method url-fetch)
3307 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
3308 "Module-Pluggable-" version ".tar.gz"))
3309 (sha256
3310 (base32
3311 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
3312 (patches (search-patches "perl-module-pluggable-search.patch"))))
3313 (build-system perl-build-system)
3314 (home-page "http://search.cpan.org/dist/Module-Pluggable")
3315 (synopsis "Give your Perl module the ability to have plugins")
3316 (description "This module provides a simple but extensible way of having
3317 'plugins' for your Perl module.")
3318 (license (package-license perl))))
3319
3320 (define-public perl-module-runtime
3321 (package
3322 (name "perl-module-runtime")
3323 (version "0.014")
3324 (source
3325 (origin
3326 (method url-fetch)
3327 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
3328 "Module-Runtime-" version ".tar.gz"))
3329 (sha256
3330 (base32
3331 "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
3332 (build-system perl-build-system)
3333 (native-inputs `(("perl-module-build" ,perl-module-build)))
3334 (home-page "http://search.cpan.org/dist/Module-Runtime")
3335 (synopsis "Perl runtime module handling")
3336 (description "The functions exported by this module deal with runtime
3337 handling of Perl modules, which are normally handled at compile time.")
3338 (license (package-license perl))))
3339
3340 (define-public perl-module-runtime-conflicts
3341 (package
3342 (name "perl-module-runtime-conflicts")
3343 (version "0.001")
3344 (source
3345 (origin
3346 (method url-fetch)
3347 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3348 "Module-Runtime-Conflicts-" version ".tar.gz"))
3349 (sha256
3350 (base32
3351 "0pz23ch78lbpn4kdbm04icgsmbr7jvmxwq1p5m4x2pap8qwd0wqg"))))
3352 (build-system perl-build-system)
3353 (native-inputs
3354 `(("perl-module-build" ,perl-module-build)))
3355 (propagated-inputs
3356 `(("perl-module-runtime" ,perl-module-runtime)
3357 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
3358 (home-page "http://search.cpan.org/dist/Module-Runtime-Conflicts")
3359 (synopsis "Provide information on conflicts for Module::Runtime")
3360 (description "This module provides conflicts checking for Module::Runtime,
3361 which had a recent release that broke some versions of Moose. It is called
3362 from Moose::Conflicts and moose-outdated.")
3363 (license (package-license perl))))
3364
3365 (define-public perl-module-scandeps
3366 (package
3367 (name "perl-module-scandeps")
3368 (version "1.18")
3369 (source
3370 (origin
3371 (method url-fetch)
3372 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
3373 "Module-ScanDeps-" version ".tar.gz"))
3374 (sha256
3375 (base32
3376 "17mbyqwd8c20nqw01hjshl524vkw8pq6y2lwndmw36xkqr945npz"))))
3377 (build-system perl-build-system)
3378 (native-inputs
3379 `(("perl-test-requires" ,perl-test-requires)))
3380 (home-page "http://search.cpan.org/dist/Module-ScanDeps")
3381 (synopsis "Recursively scan Perl code for dependencies")
3382 (description "Module::ScanDeps is a module to recursively scan Perl
3383 programs for dependencies.")
3384 (license (package-license perl))))
3385
3386 (define-public perl-module-util
3387 (package
3388 (name "perl-module-util")
3389 (version "1.09")
3390 (source
3391 (origin
3392 (method url-fetch)
3393 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
3394 "Module-Util-" version ".tar.gz"))
3395 (sha256
3396 (base32
3397 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
3398 (build-system perl-build-system)
3399 (native-inputs
3400 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
3401 (home-page "http://search.cpan.org/dist/Module-Util")
3402 (synopsis "Module name tools and transformations")
3403 (description "This module provides a few useful functions for manipulating
3404 module names. Its main aim is to centralise some of the functions commonly
3405 used by modules that manipulate other modules in some way, like converting
3406 module names to relative paths.")
3407 (license (package-license perl))))
3408
3409 (define-public perl-moo
3410 (package
3411 (name "perl-moo")
3412 (version "1.007000")
3413 (source
3414 (origin
3415 (method url-fetch)
3416 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
3417 "Moo-" version ".tar.gz"))
3418 (sha256
3419 (base32
3420 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
3421 (build-system perl-build-system)
3422 (native-inputs
3423 `(("perl-test-fatal" ,perl-test-fatal)))
3424 (propagated-inputs
3425 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
3426 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
3427 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
3428 ("perl-import-into" ,perl-import-into)
3429 ("perl-module-runtime" ,perl-module-runtime)
3430 ("perl-role-tiny" ,perl-role-tiny)
3431 ("perl-strictures" ,perl-strictures)))
3432 (home-page "http://search.cpan.org/dist/Moo")
3433 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
3434 (description "Moo is an extremely light-weight Object Orientation system.
3435 It allows one to concisely define objects and roles with a convenient syntax
3436 that avoids the details of Perl's object system. Moo contains a subset of
3437 Moose and is optimised for rapid startup.")
3438 (license (package-license perl))))
3439
3440 (define-public perl-moose
3441 (package
3442 (name "perl-moose")
3443 (version "2.1403")
3444 (source (origin
3445 (method url-fetch)
3446 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3447 "Moose-" version ".tar.gz"))
3448 (sha256
3449 (base32
3450 "16iaazikbnq2jjjac84jrdpfzm4qwqg1nbfgs11jlwn84q4jp1n3"))))
3451 (build-system perl-build-system)
3452 (native-inputs
3453 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
3454 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
3455 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
3456 ("perl-test-fatal" ,perl-test-fatal)
3457 ("perl-test-requires" ,perl-test-requires)
3458 ("perl-test-warnings" ,perl-test-warnings)))
3459 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
3460 ;; # === Other Modules ===
3461 ;; #
3462 ;; # Module Want Have
3463 ;; # ---------------------------- ---- -------
3464 ;; # Algorithm::C3 any missing
3465 ;; # DBM::Deep any missing
3466 ;; # DateTime any missing
3467 ;; # DateTime::Calendar::Mayan any missing
3468 ;; # DateTime::Format::MySQL any missing
3469 ;; # Declare::Constraints::Simple any missing
3470 ;; # Dist::CheckConflicts any 0.11
3471 ;; # HTTP::Headers any missing
3472 ;; # IO::File any 1.16
3473 ;; # IO::String any missing
3474 ;; # Locale::US any missing
3475 ;; # Module::Refresh any missing
3476 ;; # MooseX::NonMoose any missing
3477 ;; # Params::Coerce any missing
3478 ;; # Regexp::Common any missing
3479 ;; # SUPER any missing
3480 ;; # Test::Deep any missing
3481 ;; # Test::DependentModules any missing
3482 ;; # Test::LeakTrace any missing
3483 ;; # Test::Output any missing
3484 ;; # URI any missing
3485 (propagated-inputs
3486 `(("perl-class-load" ,perl-class-load)
3487 ("perl-class-load-xs" ,perl-class-load-xs)
3488 ("perl-data-optlist" ,perl-data-optlist)
3489 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
3490 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
3491 ("perl-devel-partialdump" ,perl-devel-partialdump)
3492 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
3493 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
3494 ("perl-eval-closure" ,perl-eval-closure)
3495 ("perl-list-moreutils" ,perl-list-moreutils)
3496 ("perl-module-runtime" ,perl-module-runtime)
3497 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
3498 ("perl-mro-compat" ,perl-mro-compat)
3499 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
3500 ("perl-package-stash" ,perl-package-stash)
3501 ("perl-package-stash-xs" ,perl-package-stash-xs)
3502 ("perl-params-util" ,perl-params-util)
3503 ("perl-parent" ,perl-parent)
3504 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
3505 ("perl-sub-exporter" ,perl-sub-exporter)
3506 ("perl-sub-name" ,perl-sub-name)
3507 ("perl-task-weaken" ,perl-task-weaken)
3508 ("perl-try-tiny" ,perl-try-tiny)))
3509 (home-page "http://search.cpan.org/dist/Moose")
3510 (synopsis "Postmodern object system for Perl 5")
3511 (description
3512 "Moose is a complete object system for Perl 5. It provides keywords for
3513 attribute declaration, object construction, inheritance, and maybe more. With
3514 Moose, you define your class declaratively, without needing to know about
3515 blessed hashrefs, accessor methods, and so on. You can concentrate on the
3516 logical structure of your classes, focusing on \"what\" rather than \"how\".
3517 A class definition with Moose reads like a list of very concise English
3518 sentences.")
3519 (license (package-license perl))))
3520
3521 (define-public perl-moosex-emulate-class-accessor-fast
3522 (package
3523 (name "perl-moosex-emulate-class-accessor-fast")
3524 (version "0.00903")
3525 (source
3526 (origin
3527 (method url-fetch)
3528 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
3529 "MooseX-Emulate-Class-Accessor-Fast-"
3530 version ".tar.gz"))
3531 (sha256
3532 (base32
3533 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
3534 (build-system perl-build-system)
3535 (native-inputs
3536 `(("perl-test-exception" ,perl-test-exception)))
3537 (propagated-inputs
3538 `(("perl-moose" ,perl-moose)))
3539 (home-page "http://search.cpan.org/dist/MooseX-Emulate-Class-Accessor-Fast")
3540 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
3541 (description "This module attempts to emulate the behavior of
3542 Class::Accessor::Fast as accurately as possible using the Moose attribute
3543 system. The public API of Class::Accessor::Fast is wholly supported, but the
3544 private methods are not.")
3545 (license (package-license perl))))
3546
3547 (define-public perl-moosex-getopt
3548 (package
3549 (name "perl-moosex-getopt")
3550 (version "0.65")
3551 (source
3552 (origin
3553 (method url-fetch)
3554 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3555 "MooseX-Getopt-" version ".tar.gz"))
3556 (sha256
3557 (base32
3558 "1nkzvbsiwldmpn6207ns7rinh860djnw098h6cnvywf429rjnz60"))))
3559 (build-system perl-build-system)
3560 (native-inputs
3561 `(("perl-module-build" ,perl-module-build)
3562 ("perl-test-deep" ,perl-test-deep)
3563 ("perl-test-fatal" ,perl-test-fatal)
3564 ("perl-test-requires" ,perl-test-requires)
3565 ("perl-test-trap" ,perl-test-trap)
3566 ("perl-test-warnings" ,perl-test-warnings)))
3567 (propagated-inputs
3568 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
3569 ("perl-moose" ,perl-moose)
3570 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
3571 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3572 (home-page "http://search.cpan.org/dist/MooseX-Getopt")
3573 (synopsis "Moose role for processing command line options")
3574 (description "This is a Moose role which provides an alternate constructor
3575 for creating objects using parameters passed in from the command line.")
3576 (license (package-license perl))))
3577
3578 (define-public perl-moosex-markasmethods
3579 (package
3580 (name "perl-moosex-markasmethods")
3581 (version "0.15")
3582 (source
3583 (origin
3584 (method url-fetch)
3585 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
3586 "MooseX-MarkAsMethods-" version ".tar.gz"))
3587 (sha256
3588 (base32
3589 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
3590 (build-system perl-build-system)
3591 (inputs
3592 `(("perl-moose" ,perl-moose)
3593 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3594 (home-page "http://search.cpan.org/dist/MooseX-MarkAsMethods")
3595 (synopsis "Mark overload code symbols as methods")
3596 (description "MooseX::MarkAsMethods allows one to easily mark certain
3597 functions as Moose methods. This will allow other packages such as
3598 namespace::autoclean to operate without blowing away your overloads. After
3599 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
3600 being methods, and class extension as well as composition from roles with
3601 overloads will \"just work\".")
3602 (license lgpl2.1)))
3603
3604 (define-public perl-moosex-methodattributes
3605 (package
3606 (name "perl-moosex-methodattributes")
3607 (version "0.29")
3608 (source
3609 (origin
3610 (method url-fetch)
3611 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3612 "MooseX-MethodAttributes-" version ".tar.gz"))
3613 (sha256
3614 (base32
3615 "1pz3i67gadfmgzj87m1xp2ilcg3yhppdylcng2h6c11dy0a06hdk"))))
3616 (build-system perl-build-system)
3617 (native-inputs
3618 `(("perl-module-build-tiny" ,perl-module-build-tiny)
3619 ("perl-test-fatal" ,perl-test-fatal)
3620 ("perl-test-requires" ,perl-test-requires)))
3621 (propagated-inputs
3622 `(("perl-moose" ,perl-moose)
3623 ("perl-moosex-types" ,perl-moosex-types)
3624 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3625 (home-page "http://search.cpan.org/dist/MooseX-MethodAttributes")
3626 (synopsis "Code attribute introspection")
3627 (description "This module allows code attributes of methods to be
3628 introspected using Moose meta method objects.")
3629 (license (package-license perl))))
3630
3631 (define-public perl-moosex-nonmoose
3632 (package
3633 (name "perl-moosex-nonmoose")
3634 (version "0.26")
3635 (source
3636 (origin
3637 (method url-fetch)
3638 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3639 "MooseX-NonMoose-" version ".tar.gz"))
3640 (sha256
3641 (base32
3642 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
3643 (build-system perl-build-system)
3644 (native-inputs
3645 `(("perl-moose" ,perl-moose)
3646 ("perl-test-fatal" ,perl-test-fatal)))
3647 (propagated-inputs
3648 `(("perl-list-moreutils" ,perl-list-moreutils)
3649 ("perl-module-runtime" ,perl-module-runtime)
3650 ("perl-moose" ,perl-moose)
3651 ("perl-try-tiny" ,perl-try-tiny)))
3652 (home-page "http://search.cpan.org/dist/MooseX-NonMoose")
3653 (synopsis "Subclassing of non-Moose classes")
3654 (description "MooseX::NonMoose allows for easily subclassing non-Moose
3655 classes with Moose, taking care of the details connected with doing this, such
3656 as setting up proper inheritance from Moose::Object and installing (and
3657 inlining, at make_immutable time) a constructor that makes sure things like
3658 BUILD methods are called. It tries to be as non-intrusive as possible.")
3659 (license (package-license perl))))
3660
3661 (define-public perl-moosex-params-validate
3662 (package
3663 (name "perl-moosex-params-validate")
3664 (version "0.19")
3665 (source
3666 (origin
3667 (method url-fetch)
3668 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3669 "MooseX-Params-Validate-" version ".tar.gz"))
3670 (sha256
3671 (base32
3672 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
3673 (build-system perl-build-system)
3674 (native-inputs
3675 `(("perl-moose" ,perl-moose)
3676 ("perl-test-fatal" ,perl-test-fatal)))
3677 (propagated-inputs
3678 `(("perl-devel-caller" ,perl-devel-caller)
3679 ("perl-moose" ,perl-moose)
3680 ("perl-params-validate" ,perl-params-validate)
3681 ("perl-sub-exporter" ,perl-sub-exporter)))
3682 (home-page "http://search.cpan.org/dist/MooseX-Params-Validate")
3683 (synopsis "Extension of Params::Validate using Moose's types")
3684 (description "This module fills a gap in Moose by adding method parameter
3685 validation to Moose.")
3686 (license (package-license perl))))
3687
3688 (define-public perl-moosex-relatedclassroles
3689 (package
3690 (name "perl-moosex-relatedclassroles")
3691 (version "0.004")
3692 (source
3693 (origin
3694 (method url-fetch)
3695 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
3696 "MooseX-RelatedClassRoles-" version ".tar.gz"))
3697 (sha256
3698 (base32
3699 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
3700 (build-system perl-build-system)
3701 (propagated-inputs
3702 `(("perl-moose" ,perl-moose)
3703 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
3704 (home-page "http://search.cpan.org/dist/MooseX-RelatedClassRoles")
3705 (synopsis "Apply roles to a related Perl class")
3706 (description "This module applies roles to make a subclass instead of
3707 manually setting up a subclass.")
3708 (license (package-license perl))))
3709
3710 (define-public perl-moosex-role-parameterized
3711 (package
3712 (name "perl-moosex-role-parameterized")
3713 (version "1.08")
3714 (source
3715 (origin
3716 (method url-fetch)
3717 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3718 "MooseX-Role-Parameterized-" version ".tar.gz"))
3719 (sha256
3720 (base32
3721 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
3722 (build-system perl-build-system)
3723 (native-inputs
3724 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
3725 ("perl-module-build" ,perl-module-build)
3726 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
3727 ("perl-test-fatal" ,perl-test-fatal)
3728 ("perl-test-requires" ,perl-test-requires)))
3729 (propagated-inputs
3730 `(("perl-moose" ,perl-moose)
3731 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3732 (home-page "http://search.cpan.org/dist/MooseX-Role-Parameterized")
3733 (synopsis "Moose roles with composition parameters")
3734 (description "Because Moose roles serve many different masters, they
3735 usually provide only the least common denominator of functionality. To
3736 empower roles further, more configurability than -alias and -excludes is
3737 required. Perhaps your role needs to know which method to call when it is
3738 done processing, or what default value to use for its url attribute.
3739 Parameterized roles offer a solution to these (and other) kinds of problems.")
3740 (license (package-license perl))))
3741
3742 (define-public perl-moosex-role-withoverloading
3743 (package
3744 (name "perl-moosex-role-withoverloading")
3745 (version "0.16")
3746 (source
3747 (origin
3748 (method url-fetch)
3749 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3750 "MooseX-Role-WithOverloading-" version ".tar.gz"))
3751 (sha256
3752 (base32
3753 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
3754 (build-system perl-build-system)
3755 (propagated-inputs
3756 `(("perl-aliased" ,perl-aliased)
3757 ("perl-moose" ,perl-moose)
3758 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3759 (home-page "http://search.cpan.org/dist/MooseX-Role-WithOverloading")
3760 (synopsis "Roles which support overloading")
3761 (description "MooseX::Role::WithOverloading allows you to write a
3762 Moose::Role which defines overloaded operators and allows those overload
3763 methods to be composed into the classes/roles/instances it's compiled to,
3764 where plain Moose::Roles would lose the overloading.")
3765 (license (package-license perl))))
3766
3767 (define-public perl-moosex-semiaffordanceaccessor
3768 (package
3769 (name "perl-moosex-semiaffordanceaccessor")
3770 (version "0.10")
3771 (source
3772 (origin
3773 (method url-fetch)
3774 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3775 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
3776 (sha256
3777 (base32
3778 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
3779 (build-system perl-build-system)
3780 (propagated-inputs
3781 `(("perl-moose" ,perl-moose)))
3782 (home-page "http://search.cpan.org/dist/MooseX-SemiAffordanceAccessor")
3783 (synopsis "Name your accessors foo() and set_foo()")
3784 (description "This module does not provide any methods. Simply loading it
3785 changes the default naming policy for the loading class so that accessors are
3786 separated into get and set methods. The get methods have the same name as the
3787 accessor, while set methods are prefixed with \"_set_\".")
3788 (license artistic2.0)))
3789
3790 (define-public perl-moosex-strictconstructor
3791 (package
3792 (name "perl-moosex-strictconstructor")
3793 (version "0.19")
3794 (source
3795 (origin
3796 (method url-fetch)
3797 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3798 "MooseX-StrictConstructor-" version ".tar.gz"))
3799 (sha256
3800 (base32
3801 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
3802 (build-system perl-build-system)
3803 (native-inputs
3804 `(("perl-moose" ,perl-moose)
3805 ("perl-test-fatal" ,perl-test-fatal)))
3806 (propagated-inputs
3807 `(("perl-moose" ,perl-moose)
3808 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3809 (home-page "http://search.cpan.org/dist/MooseX-StrictConstructor")
3810 (synopsis "Strict object constructors for Moose")
3811 (description "Simply loading this module makes your constructors
3812 \"strict\". If your constructor is called with an attribute init argument
3813 that your class does not declare, then it calls Moose->throw_error().")
3814 (license artistic2.0)))
3815
3816 (define-public perl-moosex-traits-pluggable
3817 (package
3818 (name "perl-moosex-traits-pluggable")
3819 (version "0.12")
3820 (source
3821 (origin
3822 (method url-fetch)
3823 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
3824 "MooseX-Traits-Pluggable-" version ".tar.gz"))
3825 (sha256
3826 (base32
3827 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
3828 (build-system perl-build-system)
3829 (native-inputs
3830 `(("perl-moose" ,perl-moose)
3831 ("perl-test-exception" ,perl-test-exception)))
3832 (propagated-inputs
3833 `(("perl-class-load" ,perl-class-load)
3834 ("perl-list-moreutils" ,perl-list-moreutils)
3835 ("perl-moose" ,perl-moose)
3836 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3837 (home-page
3838 "http://search.cpan.org/dist/MooseX-Traits-Pluggable")
3839 (synopsis "Trait loading and resolution for Moose")
3840 (description "Adds support on top of MooseX::Traits for class precedence
3841 search for traits and some extra attributes.")
3842 (license (package-license perl))))
3843
3844 (define-public perl-moosex-types
3845 (package
3846 (name "perl-moosex-types")
3847 (version "0.45")
3848 (source
3849 (origin
3850 (method url-fetch)
3851 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3852 "MooseX-Types-" version ".tar.gz"))
3853 (sha256
3854 (base32
3855 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
3856 (build-system perl-build-system)
3857 (native-inputs
3858 `(("perl-module-build" ,perl-module-build)
3859 ("perl-test-fatal" ,perl-test-fatal)
3860 ("perl-test-requires" ,perl-test-requires)))
3861 (propagated-inputs
3862 `(("perl-carp-clan" ,perl-carp-clan)
3863 ("perl-moose" ,perl-moose)
3864 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3865 (home-page "http://search.cpan.org/dist/MooseX-Types")
3866 (synopsis "Organise your Moose types in libraries")
3867 (description "This package lets you declare types using short names, but
3868 behind the scenes it namespaces all your type declarations, effectively
3869 prevent name clashes between packages.")
3870 (license (package-license perl))))
3871
3872 (define-public perl-moosex-types-datetime
3873 (package
3874 (name "perl-moosex-types-datetime")
3875 (version "0.10")
3876 (source
3877 (origin
3878 (method url-fetch)
3879 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3880 "MooseX-Types-DateTime-" version ".tar.gz"))
3881 (sha256
3882 (base32
3883 "03p66rx0qj2p23n2i2rj7c7x41621jzzaxscrpg95mb3mqmravc0"))))
3884 (build-system perl-build-system)
3885 (native-inputs
3886 `(("perl-module-build-tiny" ,perl-module-build-tiny)
3887 ("perl-moose" ,perl-moose)
3888 ("perl-test-fatal" ,perl-test-fatal)
3889 ("perl-test-simple" ,perl-test-simple)))
3890 (propagated-inputs
3891 `(("perl-datetime" ,perl-datetime)
3892 ("perl-datetime-locale" ,perl-datetime-locale)
3893 ("perl-datetime-timezone" ,perl-datetime-timezone)
3894 ("perl-moose" ,perl-moose)
3895 ("perl-moosex-types" ,perl-moosex-types)
3896 ("perl-namespace-clean" ,perl-namespace-clean)))
3897 (home-page "http://search.cpan.org/dist/MooseX-Types-DateTime")
3898 (synopsis "DateTime related constraints and coercions for Moose")
3899 (description "This module packages several Moose::Util::TypeConstraints
3900 with coercions, designed to work with the DateTime suite of objects.")
3901 (license (package-license perl))))
3902
3903 (define-public perl-moosex-types-datetime-morecoercions
3904 (package
3905 (name "perl-moosex-types-datetime-morecoercions")
3906 (version "0.14")
3907 (source
3908 (origin
3909 (method url-fetch)
3910 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3911 "MooseX-Types-DateTime-MoreCoercions-"
3912 version ".tar.gz"))
3913 (sha256
3914 (base32
3915 "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
3916 (build-system perl-build-system)
3917 (native-inputs
3918 `(("perl-module-build-tiny" ,perl-module-build-tiny)
3919 ("perl-test-fatal" ,perl-test-fatal)
3920 ("perl-test-simple" ,perl-test-simple)))
3921 (propagated-inputs
3922 `(("perl-datetime" ,perl-datetime)
3923 ("perl-datetimex-easy" ,perl-datetimex-easy)
3924 ("perl-moose" ,perl-moose)
3925 ("perl-moosex-types" ,perl-moosex-types)
3926 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
3927 ("perl-namespace-clean" ,perl-namespace-clean)
3928 ("perl-time-duration-parse" ,perl-time-duration-parse)))
3929 (home-page
3930 "http://search.cpan.org/dist/MooseX-Types-DateTime-MoreCoercions")
3931 (synopsis "Extensions to MooseX::Types::DateTime")
3932 (description "This module builds on MooseX::Types::DateTime to add
3933 additional custom types and coercions. Since it builds on an existing type,
3934 all coercions and constraints are inherited.")
3935 (license (package-license perl))))
3936
3937 (define-public perl-moosex-types-loadableclass
3938 (package
3939 (name "perl-moosex-types-loadableclass")
3940 (version "0.013")
3941 (source
3942 (origin
3943 (method url-fetch)
3944 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3945 "MooseX-Types-LoadableClass-" version ".tar.gz"))
3946 (sha256
3947 (base32
3948 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
3949 (build-system perl-build-system)
3950 (native-inputs
3951 `(("perl-module-build-tiny" ,perl-module-build-tiny)
3952 ("perl-namespace-clean" ,perl-namespace-clean)
3953 ("perl-moose" ,perl-moose)
3954 ("perl-test-fatal" ,perl-test-fatal)
3955 ("perl-class-load" ,perl-class-load)))
3956 (propagated-inputs
3957 `(("perl-module-runtime" ,perl-module-runtime)
3958 ("perl-moosex-types" ,perl-moosex-types)
3959 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3960 (home-page "http://search.cpan.org/dist/MooseX-Types-LoadableClass")
3961 (synopsis "ClassName type constraints for Moose")
3962 (description "MooseX::Types::LoadableClass provides a ClassName type
3963 constraint with coercion to load the class.")
3964 (license (package-license perl))))
3965
3966 (define-public perl-moox-types-mooselike
3967 (package
3968 (name "perl-moox-types-mooselike")
3969 (version "0.28")
3970 (source
3971 (origin
3972 (method url-fetch)
3973 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
3974 "MooX-Types-MooseLike-" version ".tar.gz"))
3975 (sha256
3976 (base32
3977 "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
3978 (build-system perl-build-system)
3979 (native-inputs
3980 `(("perl-moo" ,perl-moo)
3981 ("perl-test-fatal" ,perl-test-fatal)))
3982 (propagated-inputs
3983 `(("perl-module-runtime" ,perl-module-runtime)
3984 ("perl-strictures" ,perl-strictures)))
3985 (home-page "http://search.cpan.org/dist/MooX-Types-MooseLike")
3986 (synopsis "Moosish types and type builder")
3987 (description "MooX::Types::MooseLike provides a possibility to build your
3988 own set of Moose-like types. These custom types can then be used to describe
3989 fields in Moo-based classes.")
3990 (license (package-license perl))))
3991
3992 (define-public perl-mro-compat
3993 (package
3994 (name "perl-mro-compat")
3995 (version "0.12")
3996 (source
3997 (origin
3998 (method url-fetch)
3999 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
4000 "MRO-Compat-" version ".tar.gz"))
4001 (sha256
4002 (base32
4003 "1mhma2g83ih9f8nkmg2k9l0x6izhhbb6k5lli4rpllxad4wbk9dv"))))
4004 (build-system perl-build-system)
4005 (home-page "http://search.cpan.org/dist/MRO-Compat")
4006 (synopsis "MRO interface compatibility for Perls < 5.9.5")
4007 (description "The \"mro\" namespace provides several utilities for dealing
4008 with method resolution order and method caching in general in Perl 5.9.5 and
4009 higher. This module provides those interfaces for earlier versions of
4010 Perl (back to 5.6.0).")
4011 (license (package-license perl))))
4012
4013 (define-public perl-namespace-autoclean
4014 (package
4015 (name "perl-namespace-autoclean")
4016 (version "0.24")
4017 (source
4018 (origin
4019 (method url-fetch)
4020 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4021 "namespace-autoclean-" version ".tar.gz"))
4022 (sha256
4023 (base32
4024 "0msggbg2zbixxjq1fda19h0yygavxndfzc4j4pq11nfghmawjsb0"))))
4025 (build-system perl-build-system)
4026 (native-inputs
4027 `(("perl-module-build" ,perl-module-build)
4028 ("perl-test-requires" ,perl-test-requires)))
4029 (propagated-inputs
4030 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
4031 ("perl-namespace-clean" ,perl-namespace-clean)
4032 ("perl-sub-identify" ,perl-sub-identify)))
4033 (home-page "http://search.cpan.org/dist/namespace-autoclean")
4034 (synopsis "Keep imports out of your namespace")
4035 (description "The namespace::autoclean pragma will remove all imported
4036 symbols at the end of the current package's compile cycle. Functions called
4037 in the package itself will still be bound by their name, but they won't show
4038 up as methods on your class or instances. It is very similar to
4039 namespace::clean, except it will clean all imported functions, no matter if
4040 you imported them before or after you used the pragma. It will also not touch
4041 anything that looks like a method.")
4042 (license (package-license perl))))
4043
4044 (define-public perl-namespace-clean
4045 (package
4046 (name "perl-namespace-clean")
4047 (version "0.25")
4048 (source
4049 (origin
4050 (method url-fetch)
4051 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
4052 "namespace-clean-" version ".tar.gz"))
4053 (sha256
4054 (base32
4055 "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
4056 (build-system perl-build-system)
4057 (propagated-inputs
4058 `(("perl-package-stash" ,perl-package-stash)
4059 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
4060 (home-page "http://search.cpan.org/dist/namespace-clean")
4061 (synopsis "Keep imports and functions out of your namespace")
4062 (description "The namespace::clean pragma will remove all previously
4063 declared or imported symbols at the end of the current package's compile
4064 cycle. Functions called in the package itself will still be bound by their
4065 name, but they won't show up as methods on your class or instances.")
4066 (license (package-license perl))))
4067
4068 (define-public perl-number-compare
4069 (package
4070 (name "perl-number-compare")
4071 (version "0.03")
4072 (source
4073 (origin
4074 (method url-fetch)
4075 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
4076 "Number-Compare-" version ".tar.gz"))
4077 (sha256
4078 (base32
4079 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
4080 (build-system perl-build-system)
4081 (home-page "http://search.cpan.org/dist/Number-Compare")
4082 (synopsis "Numeric comparisons")
4083 (description "Number::Compare compiles a simple comparison to an anonymous
4084 subroutine, which you can call with a value to be tested against.")
4085 (license (package-license perl))))
4086
4087 (define-public perl-object-signature
4088 (package
4089 (name "perl-object-signature")
4090 (version "1.07")
4091 (source
4092 (origin
4093 (method url-fetch)
4094 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
4095 "Object-Signature-" version ".tar.gz"))
4096 (sha256
4097 (base32
4098 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
4099 (build-system perl-build-system)
4100 (home-page "http://search.cpan.org/dist/Object-Signature")
4101 (synopsis "Generate cryptographic signatures for objects")
4102 (description "Object::Signature is an abstract base class that you can
4103 inherit from in order to allow your objects to generate unique cryptographic
4104 signatures.")
4105 (license (package-license perl))))
4106
4107 (define-public perl-package-anon
4108 (package
4109 (name "perl-package-anon")
4110 (version "0.05")
4111 (source
4112 (origin
4113 (method url-fetch)
4114 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
4115 "Package-Anon-" version ".tar.gz"))
4116 (sha256
4117 (base32
4118 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
4119 (build-system perl-build-system)
4120 (propagated-inputs
4121 `(("perl-sub-exporter" ,perl-sub-exporter)
4122 ("perl-params-util" ,perl-params-util)))
4123 (home-page "http://search.cpan.org/dist/Package-Anon")
4124 (synopsis "Anonymous packages")
4125 (description "This module allows for anonymous packages that are
4126 independent of the main namespace and only available through an object
4127 instance, not by name.")
4128 (license (package-license perl))))
4129
4130 (define-public perl-package-deprecationmanager
4131 (package
4132 (name "perl-package-deprecationmanager")
4133 (version "0.13")
4134 (source
4135 (origin
4136 (method url-fetch)
4137 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4138 "Package-DeprecationManager-" version ".tar.gz"))
4139 (sha256
4140 (base32
4141 "0fkvq3xxwc3l5hg64dr9sj3l12dl59i44cg407qx9sd6r51j3qfi"))))
4142 (build-system perl-build-system)
4143 (native-inputs
4144 `(("perl-test-fatal" ,perl-test-fatal)
4145 ("perl-test-requires" ,perl-test-requires)
4146 ("perl-test-output" ,perl-test-output)))
4147 (propagated-inputs
4148 `(("perl-list-moreutils" ,perl-list-moreutils)
4149 ("perl-params-util" ,perl-params-util)
4150 ("perl-sub-install" ,perl-sub-install)))
4151 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
4152 (home-page "http://search.cpan.org/dist/Package-DeprecationManager")
4153 (synopsis "Manage deprecation warnings for your distribution")
4154 (description "This module allows you to manage a set of deprecations for
4155 one or more modules.")
4156 (license artistic2.0)))
4157
4158 (define-public perl-package-stash
4159 (package
4160 (name "perl-package-stash")
4161 (version "0.37")
4162 (source
4163 (origin
4164 (method url-fetch)
4165 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4166 "Package-Stash-" version ".tar.gz"))
4167 (sha256
4168 (base32
4169 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
4170 (build-system perl-build-system)
4171 (native-inputs
4172 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4173 ("perl-test-fatal" ,perl-test-fatal)
4174 ("perl-test-requires" ,perl-test-requires)
4175 ("perl-package-anon" ,perl-package-anon)))
4176 (propagated-inputs
4177 `(("perl-module-implementation" ,perl-module-implementation)
4178 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4179 ("perl-package-stash-xs" ,perl-package-stash-xs)))
4180 (home-page "http://search.cpan.org/dist/Package-Stash")
4181 (synopsis "Routines for manipulating stashes")
4182 (description "Manipulating stashes (Perl's symbol tables) is occasionally
4183 necessary, but incredibly messy, and easy to get wrong. This module hides all
4184 of that behind a simple API.")
4185 (license (package-license perl))))
4186
4187 (define-public perl-package-stash-xs
4188 (package
4189 (name "perl-package-stash-xs")
4190 (version "0.28")
4191 (source
4192 (origin
4193 (method url-fetch)
4194 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4195 "Package-Stash-XS-" version ".tar.gz"))
4196 (sha256
4197 (base32
4198 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
4199 (build-system perl-build-system)
4200 (native-inputs
4201 `(("perl-test-fatal" ,perl-test-fatal)
4202 ("perl-test-requires" ,perl-test-requires)
4203 ("perl-package-anon" ,perl-package-anon)))
4204 (home-page "http://search.cpan.org/dist/Package-Stash-XS")
4205 (synopsis "Faster implementation of the Package::Stash API")
4206 (description "This is a backend for Package::Stash, which provides the
4207 functionality in a way that's less buggy and much faster. It will be used by
4208 default if it's installed, and should be preferred in all environments with a
4209 compiler.")
4210 (license (package-license perl))))
4211
4212 (define-public perl-padwalker
4213 (package
4214 (name "perl-padwalker")
4215 (version "2.0")
4216 (source
4217 (origin
4218 (method url-fetch)
4219 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
4220 "PadWalker-" version ".tar.gz"))
4221 (sha256
4222 (base32
4223 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
4224 (build-system perl-build-system)
4225 (home-page "http://search.cpan.org/dist/PadWalker")
4226 (synopsis "Play with other peoples' lexical variables")
4227 (description "PadWalker is a module which allows you to inspect (and even
4228 change) lexical variables in any subroutine which called you. It will only
4229 show those variables which are in scope at the point of the call. PadWalker
4230 is particularly useful for debugging.")
4231 (license (package-license perl))))
4232
4233 (define-public perl-params-util
4234 (package
4235 (name "perl-params-util")
4236 (version "1.07")
4237 (source
4238 (origin
4239 (method url-fetch)
4240 (uri (string-append
4241 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
4242 version ".tar.gz"))
4243 (sha256
4244 (base32
4245 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
4246 (build-system perl-build-system)
4247 (home-page "http://search.cpan.org/dist/Params-Util")
4248 (synopsis "Simple, compact and correct param-checking functions")
4249 (description
4250 "Params::Util provides a basic set of importable functions that makes
4251 checking parameters easier.")
4252 (license (package-license perl))))
4253
4254 (define-public perl-params-validate
4255 (package
4256 (name "perl-params-validate")
4257 (version "1.17")
4258 (source
4259 (origin
4260 (method url-fetch)
4261 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4262 "Params-Validate-" version ".tar.gz"))
4263 (sha256
4264 (base32
4265 "1wh23i9kkma6493c0q1kvy6wmahd6spg6xm3xbp2ar1iy1xhks5l"))))
4266 (build-system perl-build-system)
4267 (native-inputs
4268 `(("perl-module-build" ,perl-module-build)
4269 ("perl-test-fatal" ,perl-test-fatal)
4270 ("perl-test-requires" ,perl-test-requires)))
4271 (propagated-inputs
4272 `(("perl-module-implementation" ,perl-module-implementation)))
4273 (home-page "http://search.cpan.org/dist/Params-Validate")
4274 (synopsis "Validate method/function parameters")
4275 (description "The Params::Validate module allows you to validate method or
4276 function call parameters to an arbitrary level of specificity.")
4277 (license artistic2.0)))
4278
4279 (define-public perl-par-dist
4280 (package
4281 (name "perl-par-dist")
4282 (version "0.49")
4283 (source
4284 (origin
4285 (method url-fetch)
4286 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
4287 "PAR-Dist-" version ".tar.gz"))
4288 (sha256
4289 (base32
4290 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
4291 (build-system perl-build-system)
4292 (home-page "http://search.cpan.org/dist/PAR-Dist")
4293 (synopsis "Create and manipulate PAR distributions")
4294 (description "PAR::Dist is a toolkit to create and manipulate PAR
4295 distributions.")
4296 (license (package-license perl))))
4297
4298 (define-public perl-parent
4299 (package
4300 (name "perl-parent")
4301 (version "0.228")
4302 (source
4303 (origin
4304 (method url-fetch)
4305 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
4306 "parent-" version ".tar.gz"))
4307 (sha256
4308 (base32
4309 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
4310 (build-system perl-build-system)
4311 (home-page "http://search.cpan.org/dist/parent")
4312 (synopsis "Establish an ISA relationship with base classes at compile time")
4313 (description "Allows you to both load one or more modules, while setting
4314 up inheritance from those modules at the same time.")
4315 (license (package-license perl))))
4316
4317 (define-public perl-path-class
4318 (package
4319 (name "perl-path-class")
4320 (version "0.35")
4321 (source
4322 (origin
4323 (method url-fetch)
4324 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
4325 "Path-Class-" version ".tar.gz"))
4326 (sha256
4327 (base32
4328 "1viaj8jyshcj135la0kgfgzalaw06xnbsg9h54jx09v1342v69lj"))))
4329 (build-system perl-build-system)
4330 (native-inputs `(("perl-module-build" ,perl-module-build)))
4331 (home-page "http://search.cpan.org/dist/Path-Class")
4332 (synopsis "Path specification manipulation")
4333 (description "Path::Class is a module for manipulation of file and
4334 directory specifications in a cross-platform manner.")
4335 (license (package-license perl))))
4336
4337 (define-public perl-perlio-utf8_strict
4338 (package
4339 (name "perl-perlio-utf8-strict")
4340 (version "0.006")
4341 (source (origin
4342 (method url-fetch)
4343 (uri (string-append
4344 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
4345 version ".tar.gz"))
4346 (sha256
4347 (base32
4348 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
4349 (build-system perl-build-system)
4350 (native-inputs
4351 `(("perl-test-exception" ,perl-test-exception)))
4352 (home-page
4353 "http://search.cpan.org/dist/PerlIO-utf8_strict")
4354 (synopsis "Fast and correct UTF-8 IO")
4355 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
4356 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
4357 for correctness.")
4358 (license (package-license perl))))
4359
4360 (define-public perl-pod-coverage
4361 (package
4362 (name "perl-pod-coverage")
4363 (version "0.23")
4364 (source
4365 (origin
4366 (method url-fetch)
4367 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
4368 "Pod-Coverage-" version ".tar.gz"))
4369 (sha256
4370 (base32
4371 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
4372 (build-system perl-build-system)
4373 (propagated-inputs
4374 `(("perl-devel-symdump" ,perl-devel-symdump)))
4375 (home-page "http://search.cpan.org/dist/Pod-Coverage")
4376 (synopsis "Check for comprehensive documentation of a module")
4377 (description "This module provides a mechanism for determining if the pod
4378 for a given module is comprehensive.")
4379 (license (package-license perl))))
4380
4381 (define-public perl-pod-simple
4382 (package
4383 (name "perl-pod-simple")
4384 (version "3.31")
4385 (source (origin
4386 (method url-fetch)
4387 (uri (string-append "mirror://cpan/authors/id/M/MA/MARCGREEN/"
4388 "Pod-Simple-" version ".tar.gz"))
4389 (sha256
4390 (base32
4391 "04705pcs31s71vpmnpfdy8ds0q700q4cs2dlyssyrdjbvx3ymq3l"))))
4392 (build-system perl-build-system)
4393 (home-page "http://search.cpan.org/dist/Pod-Simple/")
4394 (synopsis "Parsing library for text in Pod format")
4395 (description "Pod::Simple is a Perl library for parsing text in
4396 the Pod (plain old documentation) markup language that is typically
4397 used for writing documentation for Perl and for Perl modules.")
4398 (license (package-license perl))))
4399
4400 (define-public perl-posix-strftime-compiler
4401 (package
4402 (name "perl-posix-strftime-compiler")
4403 (version "0.41")
4404 (source
4405 (origin
4406 (method url-fetch)
4407 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
4408 "POSIX-strftime-Compiler-" version ".tar.gz"))
4409 (sha256
4410 (base32
4411 "0f9p3hx0vqx8zg5v24pz0s4zc8ln100c7c91ks681wq02phqj2v7"))))
4412 (build-system perl-build-system)
4413 (native-inputs `(("perl-module-build" ,perl-module-build)))
4414 (arguments `(#:tests? #f)) ;TODO: Timezone test failures
4415 (home-page "http://search.cpan.org/dist/POSIX-strftime-Compiler")
4416 (synopsis "GNU C library compatible strftime for loggers and servers")
4417 (description "POSIX::strftime::Compiler provides GNU C library compatible
4418 strftime(3). But this module is not affected by the system locale. This
4419 feature is useful when you want to write loggers, servers, and portable
4420 applications.")
4421 (license (package-license perl))))
4422
4423 (define-public perl-probe-perl
4424 (package
4425 (name "perl-probe-perl")
4426 (version "0.03")
4427 (source (origin
4428 (method url-fetch)
4429 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
4430 "Probe-Perl-" version ".tar.gz"))
4431 (sha256
4432 (base32
4433 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
4434 (build-system perl-build-system)
4435 (synopsis "Information about the currently running perl")
4436 (description
4437 "Probe::Perl provides methods for obtaining information about the
4438 currently running perl interpreter. It originally began life as code in the
4439 Module::Build project, but has been externalized here for general use.")
4440 (home-page (string-append "http://search.cpan.org/~kwilliams/"
4441 "Probe-Perl-" version))
4442 (license (package-license perl))))
4443
4444 (define-public perl-readonly
4445 (package
4446 (name "perl-readonly")
4447 (version "2.00")
4448 (source
4449 (origin
4450 (method url-fetch)
4451 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
4452 "Readonly-" version ".tar.gz"))
4453 (sha256
4454 (base32
4455 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
4456 (build-system perl-build-system)
4457 (native-inputs `(("perl-module-build" ,perl-module-build)))
4458 (home-page "http://search.cpan.org/dist/Readonly")
4459 (synopsis "Create read-only scalars, arrays, hashes")
4460 (description "This module provides a facility for creating non-modifiable
4461 variables in Perl. This is useful for configuration files, headers, etc. It
4462 can also be useful as a development and debugging tool for catching updates to
4463 variables that should not be changed.")
4464 (license (package-license perl))))
4465
4466 (define-public perl-regexp-common
4467 (package
4468 (name "perl-regexp-common")
4469 (version "2013031301")
4470 (source (origin
4471 (method url-fetch)
4472 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
4473 "Regexp-Common-" version ".tar.gz"))
4474 (sha256
4475 (base32
4476 "112wybsm0vr8yfannx6sdfvgp5vza28gjgr3pgn69ak4sac836kj"))))
4477 (build-system perl-build-system)
4478 (synopsis "Provide commonly requested regular expressions")
4479 (description
4480 "This module exports a single hash (`%RE') that stores or generates
4481 commonly needed regular expressions. Patterns currently provided include:
4482 balanced parentheses and brackets, delimited text (with escapes), integers and
4483 floating-point numbers in any base (up to 36), comments in 44 languages,
4484 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
4485 codes.")
4486 (home-page (string-append "http://search.cpan.org/~abigail/"
4487 "Regexp-Common-" version))
4488 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
4489 (license (list (package-license perl) x11 bsd-3))))
4490
4491 (define-public perl-role-tiny
4492 (package
4493 (name "perl-role-tiny")
4494 (version "1.003004")
4495 (source
4496 (origin
4497 (method url-fetch)
4498 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4499 "Role-Tiny-" version ".tar.gz"))
4500 (sha256
4501 (base32
4502 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
4503 (build-system perl-build-system)
4504 (native-inputs
4505 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
4506 ("perl-test-fatal" ,perl-test-fatal)))
4507 (propagated-inputs
4508 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
4509 (home-page "http://search.cpan.org/dist/Role-Tiny")
4510 (synopsis "Roles, as a slice of Moose")
4511 (description "Role::Tiny is a minimalist role composition tool.")
4512 (license (package-license perl))))
4513
4514 (define-public perl-safe-isa
4515 (package
4516 (name "perl-safe-isa")
4517 (version "1.000005")
4518 (source
4519 (origin
4520 (method url-fetch)
4521 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4522 "Safe-Isa-" version ".tar.gz"))
4523 (sha256
4524 (base32
4525 "1vib54cp64dy3ic4n73skadp1pl4gn8s9qpxmzvi078dm3mpnbcw"))))
4526 (build-system perl-build-system)
4527 (home-page "http://search.cpan.org/dist/Safe-Isa")
4528 (synopsis "Call isa, can, does, and DOES safely")
4529 (description "This module allows you to call isa, can, does, and DOES
4530 safely on things that may not be objects.")
4531 (license (package-license perl))))
4532
4533 (define-public perl-scope-guard
4534 (package
4535 (name "perl-scope-guard")
4536 (version "0.20")
4537 (source
4538 (origin
4539 (method url-fetch)
4540 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
4541 "Scope-Guard-" version ".tar.gz"))
4542 (sha256
4543 (base32
4544 "1lsagnz6pli035zvx5c1x4qm9fabi773vns86yd8lzfpldhfv3sv"))))
4545 (build-system perl-build-system)
4546 (home-page "http://search.cpan.org/dist/Scope-Guard")
4547 (synopsis "Lexically-scoped resource management")
4548 (description "This module provides a convenient way to perform cleanup or
4549 other forms of resource management at the end of a scope. It is particularly
4550 useful when dealing with exceptions: the Scope::Guard constructor takes a
4551 reference to a subroutine that is guaranteed to be called even if the thread
4552 of execution is aborted prematurely. This effectively allows lexically-scoped
4553 \"promises\" to be made that are automatically honoured by perl's garbage
4554 collector.")
4555 (license (package-license perl))))
4556
4557 (define-public perl-set-infinite
4558 (package
4559 (name "perl-set-infinite")
4560 (version "0.65")
4561 (source
4562 (origin
4563 (method url-fetch)
4564 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
4565 "Set-Infinite-" version ".tar.gz"))
4566 (sha256
4567 (base32
4568 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
4569 (build-system perl-build-system)
4570 (home-page "http://search.cpan.org/dist/Set-Infinite")
4571 (synopsis "Infinite sets")
4572 (description "Set::Infinite is a set theory module for infinite sets.")
4573 (license (package-license perl))))
4574
4575 (define-public perl-set-object
4576 (package
4577 (name "perl-set-object")
4578 (version "1.35")
4579 (source
4580 (origin
4581 (method url-fetch)
4582 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
4583 "Set-Object-" version ".tar.gz"))
4584 (sha256
4585 (base32
4586 "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
4587 (build-system perl-build-system)
4588 (propagated-inputs
4589 `(("perl-moose" ,perl-moose)
4590 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4591 (home-page "http://search.cpan.org/dist/Set-Object")
4592 (synopsis "Unordered collections of Perl Objects")
4593 (description "Set::Object provides efficient sets, unordered collections
4594 of Perl objects without duplicates for scalars and references.")
4595 (license artistic2.0)))
4596
4597 (define-public perl-set-scalar
4598 (package
4599 (name "perl-set-scalar")
4600 (version "1.29")
4601 (source
4602 (origin
4603 (method url-fetch)
4604 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
4605 "Set-Scalar-" version ".tar.gz"))
4606 (sha256
4607 (base32
4608 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
4609 (build-system perl-build-system)
4610 (home-page "http://search.cpan.org/dist/Set-Scalar")
4611 (synopsis "Set operations for Perl")
4612 (description "The first priority of Set::Scalar is to be a convenient
4613 interface to sets (as in: unordered collections of Perl scalars). While not
4614 designed to be slow or big, neither has it been designed to be fast or
4615 compact.")
4616 (license (package-license perl))))
4617
4618 (define-public perl-spiffy
4619 (package
4620 (name "perl-spiffy")
4621 (version "0.46")
4622 (source
4623 (origin
4624 (method url-fetch)
4625 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
4626 "Spiffy-" version ".tar.gz"))
4627 (sha256
4628 (base32
4629 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
4630 (build-system perl-build-system)
4631 (home-page "http://search.cpan.org/dist/Spiffy")
4632 (synopsis "Spiffy Perl Interface Framework For You")
4633 (description "Spiffy is a framework and methodology for doing object
4634 oriented (OO) programming in Perl. Spiffy combines the best parts of
4635 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
4636 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
4637 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
4638 other OO languages like Python, Ruby, Java and Perl 6.")
4639 (license (package-license perl))))
4640
4641 (define-public perl-stream-buffered
4642 (package
4643 (name "perl-stream-buffered")
4644 (version "0.03")
4645 (source
4646 (origin
4647 (method url-fetch)
4648 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4649 "Stream-Buffered-" version ".tar.gz"))
4650 (sha256
4651 (base32
4652 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
4653 (build-system perl-build-system)
4654 (home-page "http://search.cpan.org/dist/Stream-Buffered")
4655 (synopsis "Temporary buffer to save bytes")
4656 (description "Stream::Buffered is a buffer class to store arbitrary length
4657 of byte strings and then get a seekable filehandle once everything is
4658 buffered. It uses PerlIO and/or temporary file to save the buffer depending
4659 on the length of the size.")
4660 (license (package-license perl))))
4661
4662 (define-public perl-strictures
4663 (package
4664 (name "perl-strictures")
4665 (version "1.005005")
4666 (source
4667 (origin
4668 (method url-fetch)
4669 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4670 "strictures-" version ".tar.gz"))
4671 (sha256
4672 (base32
4673 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
4674 (build-system perl-build-system)
4675 (home-page "http://search.cpan.org/dist/strictures")
4676 (synopsis "Turn on strict and make all warnings fatal")
4677 (description "Strictures turns on strict and make all warnings fatal when
4678 run from within a source-controlled directory.")
4679 (license (package-license perl))))
4680
4681 (define-public perl-string-camelcase
4682 (package
4683 (name "perl-string-camelcase")
4684 (version "0.02")
4685 (source
4686 (origin
4687 (method url-fetch)
4688 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
4689 "String-CamelCase-" version ".tar.gz"))
4690 (sha256
4691 (base32
4692 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
4693 (build-system perl-build-system)
4694 (home-page "http://search.cpan.org/dist/String-CamelCase")
4695 (synopsis "Camelcase and de-camelcase")
4696 (description "This module may be used to convert from under_score text to
4697 CamelCase and back again.")
4698 (license (package-license perl))))
4699
4700 (define-public perl-string-rewriteprefix
4701 (package
4702 (name "perl-string-rewriteprefix")
4703 (version "0.007")
4704 (source
4705 (origin
4706 (method url-fetch)
4707 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4708 "String-RewritePrefix-" version ".tar.gz"))
4709 (sha256
4710 (base32
4711 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
4712 (build-system perl-build-system)
4713 (propagated-inputs
4714 `(("perl-sub-exporter" ,perl-sub-exporter)))
4715 (home-page "http://search.cpan.org/dist/String-RewritePrefix")
4716 (synopsis "Rewrite strings based on a set of known prefixes")
4717 (description "This module allows you to rewrite strings based on a set of
4718 known prefixes.")
4719 (license (package-license perl))))
4720
4721 (define-public perl-string-print
4722 (package
4723 (name "perl-string-print")
4724 (version "0.15")
4725 (source (origin
4726 (method url-fetch)
4727 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4728 "String-Print-" version ".tar.gz"))
4729 (sha256
4730 (base32
4731 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
4732 (build-system perl-build-system)
4733 (propagated-inputs
4734 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
4735 (home-page "http://search.cpan.org/dist/String-Print")
4736 (synopsis "String printing alternatives to printf")
4737 (description
4738 "This module inserts values into (translated) strings. It provides
4739 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
4740 a functional interface.")
4741 (license (package-license perl))))
4742
4743 (define-public perl-sub-exporter
4744 (package
4745 (name "perl-sub-exporter")
4746 (version "0.987")
4747 (source
4748 (origin
4749 (method url-fetch)
4750 (uri (string-append
4751 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
4752 version ".tar.gz"))
4753 (sha256
4754 (base32
4755 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
4756 (build-system perl-build-system)
4757 (propagated-inputs
4758 `(("perl-data-optlist" ,perl-data-optlist)
4759 ("perl-params-util" ,perl-params-util)))
4760 (home-page "http://search.cpan.org/dist/Sub-Exporter")
4761 (synopsis "Sophisticated exporter for custom-built routines")
4762 (description
4763 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
4764 custom-built routines.")
4765 (license (package-license perl))))
4766
4767 (define-public perl-sub-exporter-progressive
4768 (package
4769 (name "perl-sub-exporter-progressive")
4770 (version "0.001011")
4771 (source
4772 (origin
4773 (method url-fetch)
4774 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
4775 "Sub-Exporter-Progressive-" version ".tar.gz"))
4776 (sha256
4777 (base32
4778 "01kwzbqwdhvadpphnczid03nlyj0h4cxaq3m3v2401bckkkcc606"))))
4779 (build-system perl-build-system)
4780 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
4781 (home-page "http://search.cpan.org/dist/Sub-Exporter-Progressive")
4782 (synopsis "Only use Sub::Exporter if you need it")
4783 (description "Sub::Exporter is an incredibly powerful module, but with
4784 that power comes great responsibility, as well as some runtime penalties.
4785 This module is a \"Sub::Exporter\" wrapper that will let your users just use
4786 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
4787 if your users try to use \"Sub::Exporter\"'s more advanced features, like
4788 renaming exports, if they try to use them.")
4789 (license (package-license perl))))
4790
4791 (define-public perl-sub-identify
4792 (package
4793 (name "perl-sub-identify")
4794 (version "0.10")
4795 (source
4796 (origin
4797 (method url-fetch)
4798 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
4799 "Sub-Identify-" version ".tar.gz"))
4800 (sha256
4801 (base32
4802 "087fjcg6w576w47i1slj6mjfd3gl1b0airgddmn3prn0nff6nn2m"))))
4803 (build-system perl-build-system)
4804 (home-page "http://search.cpan.org/dist/Sub-Identify")
4805 (synopsis "Retrieve names of code references")
4806 (description "Sub::Identify allows you to retrieve the real name of code
4807 references.")
4808 (license (package-license perl))))
4809
4810 (define-public perl-sub-install
4811 (package
4812 (name "perl-sub-install")
4813 (version "0.928")
4814 (source
4815 (origin
4816 (method url-fetch)
4817 (uri (string-append
4818 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
4819 version ".tar.gz"))
4820 (sha256
4821 (base32
4822 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
4823 (build-system perl-build-system)
4824 (home-page "http://search.cpan.org/dist/Sub-Install")
4825 (synopsis "Install subroutines into packages easily")
4826 (description
4827 "Sub::Install makes it easy to install subroutines into packages without
4828 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
4829 can see them.")
4830 (license (package-license perl))))
4831
4832 (define-public perl-sub-name
4833 (package
4834 (name "perl-sub-name")
4835 (version "0.12")
4836 (source
4837 (origin
4838 (method url-fetch)
4839 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4840 "Sub-Name-" version ".tar.gz"))
4841 (sha256
4842 (base32
4843 "1sdlc8pv7vyyc48gzh70hbwzn0hzwl3zbcy2dkmfw8vjzgya5i06"))))
4844 (build-system perl-build-system)
4845 (native-inputs
4846 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
4847 (home-page "http://search.cpan.org/dist/Sub-Name")
4848 (synopsis "(Re)name a sub")
4849 (description "Assigns a new name to referenced sub. If package
4850 specification is omitted in the name, then the current package is used. The
4851 return value is the sub.")
4852 (license (package-license perl))))
4853
4854 (define-public perl-sub-uplevel
4855 (package
4856 (name "perl-sub-uplevel")
4857 (version "0.24")
4858 (source
4859 (origin
4860 (method url-fetch)
4861 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4862 "Sub-Uplevel-" version ".tar.gz"))
4863 (sha256
4864 (base32
4865 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
4866 (build-system perl-build-system)
4867 (home-page "http://search.cpan.org/dist/Sub-Uplevel")
4868 (synopsis "Apparently run a function in a higher stack frame")
4869 (description "Like Tcl's uplevel() function, but not quite so dangerous.
4870 The idea is just to fool caller(). All the really naughty bits of Tcl's
4871 uplevel() are avoided.")
4872 (license (package-license perl))))
4873
4874 (define-public perl-svg
4875 (package
4876 (name "perl-svg")
4877 (version "2.63")
4878 (source
4879 (origin
4880 (method url-fetch)
4881 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
4882 version ".tar.gz"))
4883 (sha256
4884 (base32
4885 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
4886 (build-system perl-build-system)
4887 (home-page "http://search.cpan.org/dist/SVG")
4888 (synopsis "Perl extension for generating SVG documents")
4889 (description "SVG is a Perl module which generates a nested data structure
4890 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
4891 Using SVG, you can generate SVG objects, embed other SVG instances into it,
4892 access the DOM object, create and access Javascript, and generate SMIL
4893 animation content.")
4894 (license (package-license perl))))
4895
4896 (define-public perl-sys-cpu
4897 (package
4898 (name "perl-sys-cpu")
4899 (version "0.61")
4900 (source (origin
4901 (method url-fetch)
4902 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
4903 "Sys-CPU-" version ".tar.gz"))
4904 (sha256
4905 (base32
4906 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))))
4907 (build-system perl-build-system)
4908 (synopsis "Perl extension for getting CPU information")
4909 (description
4910 "In responce to a post on perlmonks.org, a module for counting the number
4911 of CPU's on a system. Support has now also been added for type of CPU and
4912 clock speed.")
4913 (home-page (string-append "http://search.cpan.org/~mzsanford/"
4914 "Sys-CPU-" version))
4915 (license (package-license perl))))
4916
4917 (define-public perl-sys-hostname-long
4918 (package
4919 (name "perl-sys-hostname-long")
4920 (version "1.5")
4921 (source
4922 (origin
4923 (method url-fetch)
4924 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
4925 "Sys-Hostname-Long-" version ".tar.gz"))
4926 (sha256
4927 (base32
4928 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
4929 (build-system perl-build-system)
4930 (arguments `(#:tests? #f)) ;no `hostname' during build
4931 (home-page "http://search.cpan.org/dist/Sys-Hostname-Long")
4932 (synopsis "Get full hostname in Perl")
4933 (description "Sys::Hostname::Long tries very hard to get the full hostname
4934 of a system.")
4935 (license (package-license perl))))
4936
4937 (define-public perl-task-weaken
4938 (package
4939 (name "perl-task-weaken")
4940 (version "1.04")
4941 (source
4942 (origin
4943 (method url-fetch)
4944 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
4945 "Task-Weaken-" version ".tar.gz"))
4946 (sha256
4947 (base32
4948 "1i7kd9v8fjsqyhr4rx4a1jv7n5vfjjm1v4agb24pizh0b72p3qk7"))))
4949 (build-system perl-build-system)
4950 (home-page "http://search.cpan.org/dist/Task-Weaken")
4951 (synopsis "Ensure that a platform has weaken support")
4952 (description "One recurring problem in modules that use Scalar::Util's
4953 weaken function is that it is not present in the pure-perl variant. If
4954 Scalar::Util is not available at all, it will issue a normal dependency on the
4955 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
4956 module does not have weaken, the install will bail out altogether with a long
4957 error encouraging the user to seek support.")
4958 (license (package-license perl))))
4959
4960 (define-public perl-template-toolkit
4961 (package
4962 (name "perl-template-toolkit")
4963 (version "2.26")
4964 (source
4965 (origin
4966 (method url-fetch)
4967 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
4968 "Template-Toolkit-" version ".tar.gz"))
4969 (sha256
4970 (base32
4971 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
4972 (build-system perl-build-system)
4973 (propagated-inputs
4974 `(("perl-appconfig" ,perl-appconfig)
4975 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4976 (home-page "http://search.cpan.org/dist/Template-Toolkit")
4977 (synopsis "Template processing system for Perl")
4978 (description "The Template Toolkit is a collection of modules which
4979 implement an extensible template processing system. It was originally
4980 designed and remains primarily useful for generating dynamic web content, but
4981 it can be used equally well for processing any other kind of text based
4982 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
4983 (license (package-license perl))))
4984
4985 (define-public perl-template-timer
4986 (package
4987 (name "perl-template-timer")
4988 (version "1.00")
4989 (source
4990 (origin
4991 (method url-fetch)
4992 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
4993 "Template-Timer-" version ".tar.gz"))
4994 (sha256
4995 (base32
4996 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
4997 (build-system perl-build-system)
4998 (propagated-inputs
4999 `(("perl-template-toolkit" ,perl-template-toolkit)))
5000 (home-page "http://search.cpan.org/dist/Template-Timer")
5001 (synopsis "Profiling for Template Toolkit")
5002 (description "Template::Timer provides inline profiling of the template
5003 processing in Perl code.")
5004 (license (list gpl3 artistic2.0))))
5005
5006 (define-public perl-term-encoding
5007 (package
5008 (name "perl-term-encoding")
5009 (version "0.02")
5010 (source
5011 (origin
5012 (method url-fetch)
5013 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
5014 "Term-Encoding-" version ".tar.gz"))
5015 (sha256
5016 (base32
5017 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
5018 (build-system perl-build-system)
5019 (home-page "http://search.cpan.org/dist/Term-Encoding")
5020 (synopsis "Detect encoding of the current terminal")
5021 (description "Term::Encoding is a simple module to detect the encoding of
5022 the current terminal expects in various ways.")
5023 (license (package-license perl))))
5024
5025 (define-public perl-term-progressbar
5026 (package
5027 (name "perl-term-progressbar")
5028 (version "2.17")
5029 (source
5030 (origin
5031 (method url-fetch)
5032 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
5033 "Term-ProgressBar-" version ".tar.gz"))
5034 (sha256
5035 (base32
5036 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
5037 (build-system perl-build-system)
5038 (native-inputs
5039 `(("perl-capture-tiny" ,perl-capture-tiny)
5040 ("perl-test-exception" ,perl-test-exception)))
5041 (propagated-inputs
5042 `(("perl-class-methodmaker" ,perl-class-methodmaker)
5043 ("perl-term-readkey" ,perl-term-readkey)))
5044 (home-page "http://search.cpan.org/dist/Term-ProgressBar")
5045 (synopsis "Progress meter on a standard terminal")
5046 (description "Term::ProgressBar provides a simple progress bar on the
5047 terminal, to let the user know that something is happening, roughly how much
5048 stuff has been done, and maybe an estimate at how long remains.")
5049 (license (package-license perl))))
5050
5051 (define-public perl-term-progressbar-quiet
5052 (package
5053 (name "perl-term-progressbar-quiet")
5054 (version "0.31")
5055 (source
5056 (origin
5057 (method url-fetch)
5058 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
5059 "Term-ProgressBar-Quiet-" version ".tar.gz"))
5060 (sha256
5061 (base32
5062 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
5063 (build-system perl-build-system)
5064 (propagated-inputs
5065 `(("perl-io-interactive" ,perl-io-interactive)
5066 ("perl-term-progressbar" ,perl-term-progressbar)
5067 ("perl-test-mockobject" ,perl-test-mockobject)))
5068 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Quiet")
5069 (synopsis "Progress meter if run interactively")
5070 (description "Term::ProgressBar is a wonderful module for showing progress
5071 bars on the terminal. This module acts very much like that module when it is
5072 run interactively. However, when it is not run interactively (for example, as
5073 a cron job) then it does not show the progress bar.")
5074 (license (package-license perl))))
5075
5076 (define-public perl-term-progressbar-simple
5077 (package
5078 (name "perl-term-progressbar-simple")
5079 (version "0.03")
5080 (source
5081 (origin
5082 (method url-fetch)
5083 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
5084 "Term-ProgressBar-Simple-" version ".tar.gz"))
5085 (sha256
5086 (base32
5087 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
5088 (build-system perl-build-system)
5089 (propagated-inputs
5090 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
5091 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Simple")
5092 (synopsis "Simple progress bars")
5093 (description "Term::ProgressBar::Simple tells you how much work has been
5094 done, how much is left to do, and estimate how long it will take.")
5095 (license (package-license perl))))
5096
5097 (define-public perl-term-readkey
5098 (package
5099 (name "perl-term-readkey")
5100 (version "2.32")
5101 (source
5102 (origin
5103 (method url-fetch)
5104 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
5105 "TermReadKey-" version ".tar.gz"))
5106 (sha256
5107 (base32
5108 "1y79w5cj98w0a1nqxjhmaw01p2hfhzfw340m2qxd11p6124hxfaq"))))
5109 (build-system perl-build-system)
5110 (home-page "http://search.cpan.org/dist/TermReadKey")
5111 (synopsis "Simple terminal control")
5112 (description "This module, ReadKey, provides ioctl control for terminals
5113 so the input modes can be changed (thus allowing reads of a single character
5114 at a time), and also provides non-blocking reads of stdin, as well as several
5115 other terminal related features, including retrieval/modification of the
5116 screen size, and retrieval/modification of the control characters.")
5117 (license (package-license perl))))
5118
5119 (define-public perl-test-base
5120 (package
5121 (name "perl-test-base")
5122 (version "0.88")
5123 (source
5124 (origin
5125 (method url-fetch)
5126 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
5127 "Test-Base-" version ".tar.gz"))
5128 (sha256
5129 (base32
5130 "0fch1cvivnszbnwhpfmwv1rin04j5xkj1n1ylfmlxg6bm72qqdjj"))))
5131 (build-system perl-build-system)
5132 (native-inputs
5133 `(("perl-algorithm-diff" ,perl-algorithm-diff)
5134 ("perl-text-diff" ,perl-text-diff)))
5135 (propagated-inputs
5136 `(("perl-spiffy" ,perl-spiffy)
5137 ("perl-test-deep" ,perl-test-deep)))
5138 (home-page "http://search.cpan.org/dist/Test-Base")
5139 (synopsis "Data-driven testing framework for Perl")
5140 (description "Test::Base gives a way to trivially write your own test
5141 framework base class. It concentrates on offering reusable data driven
5142 patterns, so that you can write tests with a minimum of code.")
5143 (license (package-license perl))))
5144
5145 (define-public perl-test-class
5146 (package
5147 (name "perl-test-class")
5148 (version "0.50")
5149 (source
5150 (origin
5151 (method url-fetch)
5152 (uri (string-append
5153 "https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Class-"
5154 version
5155 ".tar.gz"))
5156 (sha256
5157 (base32
5158 "0l0kk5jvxjkic2jkf1r7v41irb344aasnzr3f5ygjgxgiknm9489"))))
5159 (build-system perl-build-system)
5160 (native-inputs
5161 `(("perl-test-exception" ,perl-test-exception)))
5162 (inputs
5163 `(("perl-module-runtime" ,perl-module-runtime)
5164 ("perl-mro-compat" ,perl-mro-compat)
5165 ("perl-try-tiny" ,perl-try-tiny)))
5166 (home-page "http://search.cpan.org/dist/Test-Class")
5167 (synopsis "Easily create test classes in an xUnit/JUnit style")
5168 (description "@code{Test::Class} provides a simple way of creating classes
5169 and objects to test your code in an xUnit style.
5170
5171 Built using @code{Test::Builder}, it was designed to work with other
5172 @code{Test::Builder} based modules (@code{Test::More},
5173 @code{Test::Differences}, @code{Test::Exception}, etc.).")
5174 (license (package-license perl))))
5175
5176 (define-public perl-test-class-most
5177 (package
5178 (name "perl-test-class-most")
5179 (version "0.08")
5180 (source
5181 (origin
5182 (method url-fetch)
5183 (uri (string-append
5184 "mirror://cpan/authors/id/O/OV/OVID/Test-Class-Most-"
5185 version
5186 ".tar.gz"))
5187 (sha256
5188 (base32
5189 "1zvx9hil0mg0pnb8xfa4m0xgjpvh8s5gnbyprq3xwpdsdgcdwk33"))))
5190 (build-system perl-build-system)
5191 (native-inputs
5192 `(("perl-module-build" ,perl-module-build)))
5193 (inputs
5194 `(("perl-test-class" ,perl-test-class)
5195 ("perl-test-most" ,perl-test-most)
5196 ("perl-module-runtime" ,perl-module-runtime)
5197 ("perl-try-tiny" ,perl-try-tiny)
5198 ("perl-mro-compat" ,perl-mro-compat)))
5199 (home-page "http://search.cpan.org/dist/Test-Class-Most")
5200 (synopsis "Test classes the easy way")
5201 (description "@code{Test::Class::Most} provides some more convenience when
5202 using @code{Test::Class}.")
5203 (license (package-license perl))))
5204
5205 (define-public perl-test-cleannamespaces
5206 (package
5207 (name "perl-test-cleannamespaces")
5208 (version "0.16")
5209 (source
5210 (origin
5211 (method url-fetch)
5212 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5213 "Test-CleanNamespaces-" version ".tar.gz"))
5214 (sha256
5215 (base32
5216 "1ynrds515gcq954z34zm03rgcx0dskiaz7qj0k7k5gmrjj1kfycp"))))
5217 (build-system perl-build-system)
5218 (native-inputs
5219 `(("perl-test-requires" ,perl-test-requires)
5220 ("perl-test-deep" ,perl-test-deep)
5221 ("perl-test-warnings" ,perl-test-warnings)
5222 ("perl-test-tester" ,perl-test-tester)))
5223 (propagated-inputs
5224 `(("perl-namespace-clean" ,perl-namespace-clean)
5225 ("perl-package-stash" ,perl-package-stash)
5226 ("perl-sub-identify" ,perl-sub-identify)
5227 ("perl-sub-exporter" ,perl-sub-exporter)
5228 ("perl-file-find-rule" ,perl-file-find-rule)
5229 ("perl-file-find-rule-perl" ,perl-file-find-rule-perl)))
5230 (home-page "http://search.cpan.org/dist/Test-CleanNamespaces")
5231 (synopsis "Check for uncleaned imports")
5232 (description "This module lets you check your module's namespaces for
5233 imported functions you might have forgotten to remove with
5234 namespace::autoclean or namespace::clean and are therefore available to be
5235 called as methods, which usually isn't want you want.")
5236 (license (package-license perl))))
5237
5238 (define-public perl-test-deep
5239 (package
5240 (name "perl-test-deep")
5241 (version "1.120")
5242 (source (origin
5243 (method url-fetch)
5244 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5245 "Test-Deep-" version ".tar.gz"))
5246 (sha256
5247 (base32
5248 "1kdy06r0yg7zwarqglc9163vbfb0sfc4s6ld4pw5q7i9f7mghzi0"))))
5249 (build-system perl-build-system)
5250 (inputs `(("perl-test-tester" ,perl-test-tester)
5251 ("perl-test-nowarnings" ,perl-test-nowarnings)))
5252 (synopsis "Flexible deep comparison for the Test::Builder framework")
5253 (description
5254 "Test::Deep compares two structures by going through each level, ensuring
5255 that the values match, that arrays and hashes have the same elements and that
5256 references are blessed into the correct class. It also handles circular data
5257 structures without getting caught in an infinite loop.")
5258 (home-page "http://search.cpan.org/dist/Test-Deep")
5259 (license gpl1+))) ; or "Artistic License"
5260
5261 (define-public perl-test-differences
5262 (package
5263 (name "perl-test-differences")
5264 (version "0.63")
5265 (source
5266 (origin
5267 (method url-fetch)
5268 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
5269 "Test-Differences-" version ".tar.gz"))
5270 (sha256
5271 (base32
5272 "0rhs4q6qn64ji06ns7lwl6iiiw3mggvd9xk9nkiqvx1jihbplrbw"))))
5273 (build-system perl-build-system)
5274 (native-inputs
5275 `(("perl-module-build" ,perl-module-build)))
5276 (propagated-inputs
5277 `(("perl-text-diff" ,perl-text-diff)
5278 ("perl-capture-tiny" ,perl-capture-tiny)))
5279 (home-page "http://search.cpan.org/dist/Test-Differences")
5280 (synopsis "Test strings and data structures and show differences")
5281 (description "This module exports three test functions and four diff-style
5282 functions.")
5283 ;; See LICENSE section of Test/Differences.pm, which reads "... GNU public
5284 ;; license, any version, ..."
5285 (license gpl3+)))
5286
5287 (define-public perl-test-directory
5288 (package
5289 (name "perl-test-directory")
5290 (version "0.041")
5291 (source
5292 (origin
5293 (method url-fetch)
5294 (uri (string-append "mirror://cpan/authors/id/S/SA/SANBEG/"
5295 "Test-Directory-" version ".tar.gz"))
5296 (sha256
5297 (base32
5298 "1ncql08cizhicbxwd753b4czns8nlcnlw0zfjcfrbdd41x4j6hqr"))))
5299 (build-system perl-build-system)
5300 (native-inputs `(("perl-test-exception" ,perl-test-exception)))
5301 (home-page "http://search.cpan.org/dist/Test-Directory")
5302 (synopsis "Perl extension for maintaining test directories")
5303 (description "Testing code can involve making sure that files are created
5304 and deleted as expected. Doing this manually can be error prone, as it's easy
5305 to forget a file, or miss that some unexpected file was added. This module
5306 simplifies maintaining test directories by tracking their status as they are
5307 modified or tested with this API, making it simple to test both individual
5308 files, as well as to verify that there are no missing or unknown files.")
5309 (license (package-license perl))))
5310
5311 (define-public perl-test-exception
5312 (package
5313 (name "perl-test-exception")
5314 (version "0.36")
5315 (source
5316 (origin
5317 (method url-fetch)
5318 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
5319 "Test-Exception-" version ".tar.gz"))
5320 (sha256
5321 (base32
5322 "1zpwimspbq11wjrli481qk17aabzxab15cnnryflx45nzn3za2xk"))))
5323 (build-system perl-build-system)
5324 (native-inputs
5325 `(("perl-module-build" ,perl-module-build)))
5326 (propagated-inputs
5327 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
5328 (home-page "http://search.cpan.org/dist/Test-Exception")
5329 (synopsis "Test exception based code")
5330 (description "This module provides a few convenience methods for testing
5331 exception based code. It is built with Test::Builder and plays happily with
5332 Test::More and friends.")
5333 (license (package-license perl))))
5334
5335 (define-public perl-test-fatal
5336 (package
5337 (name "perl-test-fatal")
5338 (version "0.014")
5339 (source
5340 (origin
5341 (method url-fetch)
5342 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5343 "Test-Fatal-" version ".tar.gz"))
5344 (sha256
5345 (base32
5346 "1c6bs68mss4q7cyapkv2c0jn66i21050p0faxf3s3417gdffzp5w"))))
5347 (build-system perl-build-system)
5348 (propagated-inputs `(("perl-try-tiny" ,perl-try-tiny)))
5349 (home-page "http://search.cpan.org/dist/Test-Fatal")
5350 (synopsis "Simple helpers for testing code with exceptions")
5351 (description "Test::Fatal is an alternative to the popular
5352 Test::Exception. It does much less, but should allow greater flexibility in
5353 testing exception-throwing code with about the same amount of typing.")
5354 (license (package-license perl))))
5355
5356 (define-public perl-test-harness
5357 (package
5358 (name "perl-test-harness")
5359 (version "3.36")
5360 (source
5361 (origin
5362 (method url-fetch)
5363 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
5364 "Test-Harness-" version ".tar.gz"))
5365 (sha256
5366 (base32
5367 "0gmnjss0hjkyiwvgby50nl5nzv254pn7fjqqdysjil21n09nymp7"))))
5368 (build-system perl-build-system)
5369 (arguments
5370 `(#:phases (alist-cons-before
5371 'check 'patch-test
5372 (lambda* (#:key inputs #:allow-other-keys)
5373 ;; This test looks for "#!/usr/bin/perl" in some source.
5374 ;; Patch what the test looks for.
5375 (substitute* "t/source.t"
5376 (("#!/usr/bin/perl")
5377 (string-append "#!" (assoc-ref inputs "perl")
5378 "/bin/perl"))))
5379 %standard-phases)))
5380 (home-page "http://search.cpan.org/dist/Test-Harness")
5381 (synopsis "Run Perl standard test scripts with statistics")
5382 (description "Simple test harness which allows tests to be run and results
5383 automatically aggregated and output to STDOUT.")
5384 (license (package-license perl))))
5385
5386 (define-public perl-test-leaktrace
5387 (package
5388 (name "perl-test-leaktrace")
5389 (version "0.15")
5390 (source
5391 (origin
5392 (method url-fetch)
5393 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
5394 "Test-LeakTrace-" version ".tar.gz"))
5395 (sha256
5396 (base32
5397 "0pp6ip012c474ibw0mwd7jgig34gf98bb8xlqk4wdvw1d65vbf7g"))))
5398 (build-system perl-build-system)
5399 (home-page "http://search.cpan.org/dist/Test-LeakTrace")
5400 (synopsis "Traces memory leaks in Perl")
5401 (description "Test::LeakTrace provides several functions that trace memory
5402 leaks. This module scans arenas, the memory allocation system, so it can
5403 detect any leaked SVs in given blocks.")
5404 (license (package-license perl))))
5405
5406 (define-public perl-test-longstring
5407 (package
5408 (name "perl-test-longstring")
5409 (version "0.17")
5410 (source
5411 (origin
5412 (method url-fetch)
5413 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
5414 "Test-LongString-" version ".tar.gz"))
5415 (sha256
5416 (base32
5417 "0kwp7rfr1i2amz4ckigkv13ah7jr30q6l5k4wk0vxl84myg39i5b"))))
5418 (build-system perl-build-system)
5419 (home-page "http://search.cpan.org/dist/Test-LongString")
5420 (synopsis "Tests strings for equality, with more helpful failures")
5421 (description "This module provides some drop-in replacements for the
5422 string comparison functions of Test::More, but which are more suitable when
5423 you test against long strings.")
5424 (license (package-license perl))))
5425
5426 (define-public perl-test-mockobject
5427 (package
5428 (name "perl-test-mockobject")
5429 (version "1.20140408")
5430 (source
5431 (origin
5432 (method url-fetch)
5433 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
5434 "Test-MockObject-" version ".tar.gz"))
5435 (sha256
5436 (base32
5437 "1anpf9l2wdriwaxw6pf76ghxkh4zm25n3wnhfqy1b439xqnhvzg5"))))
5438 (build-system perl-build-system)
5439 (native-inputs
5440 `(("perl-test-exception" ,perl-test-exception)
5441 ("perl-test-warn" ,perl-test-warn)))
5442 (propagated-inputs
5443 `(("perl-test-exception" ,perl-test-exception)
5444 ("perl-test-warn" ,perl-test-warn)
5445 ("perl-universal-can" ,perl-universal-can)
5446 ("perl-universal-isa" ,perl-universal-isa)))
5447 (arguments `(#:tests? #f)) ;TODO: tests require perl-cgi
5448 (home-page "http://search.cpan.org/dist/Test-MockObject")
5449 (synopsis "Emulate troublesome interfaces in Perl")
5450 (description "Test::MockObject allows you to create objects that conform
5451 to particular interfaces with very little code. You don't have to reimplement
5452 the behavior, just the input and the output.")
5453 (license (package-license perl))))
5454
5455 (define-public perl-test-mocktime
5456 (package
5457 (name "perl-test-mocktime")
5458 (version "0.13")
5459 (source
5460 (origin
5461 (method url-fetch)
5462 (uri (string-append "mirror://cpan/authors/id/D/DD/DDICK/"
5463 "Test-MockTime-" version ".tar.gz"))
5464 (sha256
5465 (base32
5466 "0yrqmjg33akannwz2f99rfm7dvvxpzsdj23lsvlvfi4qslrlqfvw"))))
5467 (build-system perl-build-system)
5468 (home-page "http://search.cpan.org/dist/Test-MockTime")
5469 (synopsis "Replaces actual time with simulated time")
5470 (description "This module was created to enable test suites to test code
5471 at specific points in time. Specifically it overrides localtime, gmtime and
5472 time at compile time and then relies on the user supplying a mock time via
5473 set_relative_time, set_absolute_time or set_fixed_time to alter future calls
5474 to gmtime,time or localtime.")
5475 (license (package-license perl))))
5476
5477 (define-public perl-test-most
5478 (package
5479 (name "perl-test-most")
5480 (version "0.34")
5481 (source
5482 (origin
5483 (method url-fetch)
5484 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
5485 "Test-Most-" version ".tar.gz"))
5486 (sha256
5487 (base32
5488 "0i72aih3pakm8gh73wx1n4dwq8lbx6dvxhla46gsapszws6hr0n2"))))
5489 (build-system perl-build-system)
5490 (propagated-inputs
5491 `(("perl-test-differences" ,perl-test-differences)
5492 ("perl-test-warn" ,perl-test-warn)
5493 ("perl-exception-class" ,perl-exception-class)
5494 ("perl-test-deep" ,perl-test-deep)
5495 ("perl-test-exception" ,perl-test-exception)))
5496 (home-page "http://search.cpan.org/dist/Test-Most")
5497 (synopsis "Most commonly needed test functions and features")
5498 (description "This module provides the most commonly used testing
5499 functions, along with automatically turning on strict and warning and gives a
5500 bit more fine-grained control over test suites.")
5501 (license (package-license perl))))
5502
5503 (define-public perl-test-nowarnings
5504 (package
5505 (name "perl-test-nowarnings")
5506 (version "1.04")
5507 (source (origin
5508 (method url-fetch)
5509 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
5510 "Test-NoWarnings-" version ".tar.gz"))
5511 (sha256
5512 (base32
5513 "0v385ch0hzz9naqwdw2az3zdqi15gka76pmiwlgsy6diiijmg2k3"))))
5514 (build-system perl-build-system)
5515 (inputs `(("perl-test-tester" ,perl-test-tester)))
5516 (synopsis "Ensure no warnings are produced while testing")
5517 (description
5518 "This modules causes any warnings during testing to be captured and
5519 stored. It automatically adds an extra test that will run when your script
5520 ends to check that there were no warnings. If there were any warnings, the
5521 test will fail and output diagnostics of where, when and what the warning was,
5522 including a stack trace of what was going on when it occurred.")
5523 (home-page (string-append "http://search.cpan.org/~adamk/"
5524 "Test-NoWarnings-" version))
5525 (license lgpl2.1)))
5526
5527 (define-public perl-test-output
5528 (package
5529 (name "perl-test-output")
5530 (version "1.03")
5531 (source (origin
5532 (method url-fetch)
5533 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
5534 "Test-Output-" version ".tar.gz"))
5535 (sha256
5536 (base32
5537 "12991jnzj4cbw9whhprmqvnzd1ayii84g2mh8vxbjngwqrjsy41i"))))
5538 (build-system perl-build-system)
5539 (propagated-inputs
5540 `(("perl-capture-tiny" ,perl-capture-tiny)
5541 ("perl-test-tester" ,perl-test-tester)
5542 ("perl-sub-exporter" ,perl-sub-exporter)))
5543 (synopsis "Utilities to test STDOUT and STDERR messages")
5544 (description
5545 "Test::Output provides a simple interface for testing output sent to
5546 STDOUT or STDERR. A number of different utilities are included to try and be
5547 as flexible as possible to the tester.")
5548 (home-page (string-append "http://search.cpan.org/~bdfoy/"
5549 "Test-Output-" version))
5550 (license (package-license perl))))
5551
5552 (define-public perl-test-pod
5553 (package
5554 (name "perl-test-pod")
5555 (version "1.48")
5556 (source
5557 (origin
5558 (method url-fetch)
5559 (uri (string-append "mirror://cpan/authors/id/D/DW/DWHEELER/"
5560 "Test-Pod-" version ".tar.gz"))
5561 (sha256
5562 (base32
5563 "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"))))
5564 (build-system perl-build-system)
5565 (native-inputs `(("perl-module-build" ,perl-module-build)))
5566 (home-page "http://search.cpan.org/dist/Test-Pod")
5567 (synopsis "Check for POD errors in files")
5568 (description "Check POD files for errors or warnings in a test file, using
5569 Pod::Simple to do the heavy lifting.")
5570 (license (package-license perl))))
5571
5572 (define-public perl-test-pod-coverage
5573 (package
5574 (name "perl-test-pod-coverage")
5575 (version "1.10")
5576 (source
5577 (origin
5578 (method url-fetch)
5579 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
5580 "Test-Pod-Coverage-" version ".tar.gz"))
5581 (sha256
5582 (base32
5583 "1m203mhgfilz7iqc8mxaw4lw02fz391mni3n25sfx7nryylwrja8"))))
5584 (build-system perl-build-system)
5585 (propagated-inputs
5586 `(("perl-pod-coverage" ,perl-pod-coverage)))
5587 (home-page "http://search.cpan.org/dist/Test-Pod-Coverage")
5588 (synopsis "Check for pod coverage")
5589 (description "This module adds a test to your Perl distribution which
5590 checks for pod coverage of all appropriate files.")
5591 (license artistic2.0)))
5592
5593 (define-public perl-test-requires
5594 (package
5595 (name "perl-test-requires")
5596 (version "0.08")
5597 (source
5598 (origin
5599 (method url-fetch)
5600 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
5601 "Test-Requires-" version ".tar.gz"))
5602 (sha256
5603 (base32
5604 "08c29m0dn34384mmmpqqlbb899zpbkkc01c2lsp31mch1frv9cg7"))))
5605 (build-system perl-build-system)
5606 (home-page "http://search.cpan.org/dist/Test-Requires")
5607 (synopsis "Checks to see if the module can be loaded")
5608 (description "Test::Requires checks to see if the module can be loaded.
5609 If this fails, then rather than failing tests this skips all tests.")
5610 (license (package-license perl))))
5611
5612 (define-public perl-test-script
5613 (package
5614 (name "perl-test-script")
5615 (version "1.07")
5616 (source (origin
5617 (method url-fetch)
5618 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
5619 "Test-Script-" version ".tar.gz"))
5620 (sha256
5621 (base32
5622 "15pb4zzsnm33msc1syhig2bk05xqc0pckmfyahdwbd177bj5w7p2"))))
5623 (build-system perl-build-system)
5624 (propagated-inputs
5625 `(("probe-perl" ,perl-probe-perl)
5626 ("ipc-run3" ,perl-ipc-run3)))
5627 (synopsis "Basic cross-platform tests for scripts")
5628 (description
5629 "The intent of the Test::Script module is to provide a series of basic
5630 tests for 80% of the testing you will need to do for scripts in the script (or
5631 bin as is also commonly used) paths of your Perl distribution.")
5632 (home-page (string-append "http://search.cpan.org/~adamk/"
5633 "Test-Script-" version))
5634 (license (package-license perl))))
5635
5636 (define-public perl-test-sharedfork
5637 (package
5638 (name "perl-test-sharedfork")
5639 (version "0.29")
5640 (source
5641 (origin
5642 (method url-fetch)
5643 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
5644 "Test-SharedFork-" version ".tar.gz"))
5645 (sha256
5646 (base32
5647 "0vlak10q4gcf0ch0rfcb9lvddav6r8h15iipzbkbgf9mrj47gbv3"))))
5648 (build-system perl-build-system)
5649 (native-inputs
5650 `(("perl-test-requires" ,perl-test-requires)))
5651 (home-page "http://search.cpan.org/dist/Test-SharedFork")
5652 (synopsis "Fork test in Perl")
5653 (description "Test::SharedFork is a utility module for Test::Builder. It
5654 makes fork(2) safe to use in test cases.")
5655 (license (package-license perl))))
5656
5657 (define-public perl-test-simple
5658 (package
5659 (name "perl-test-simple")
5660 (version "1.302026")
5661 (source (origin
5662 (method url-fetch)
5663 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
5664 "Test-Simple-" version ".tar.gz"))
5665 (sha256
5666 (base32
5667 "1mq1sykv48rgjamw4wxa290mnyjm0dw9w9lpzncnac9gfx18vm72"))))
5668 (build-system perl-build-system)
5669 (synopsis "Basic utilities for writing tests")
5670 (description
5671 "Test::Simple contains basic utilities for writing tests.")
5672 (home-page (string-append "http://search.cpan.org/~exodist/"
5673 "Test-Simple-" version))
5674 (license (package-license perl))))
5675
5676 (define-public perl-test-tester
5677 (package
5678 (name "perl-test-tester")
5679 (version "0.109")
5680 (source (origin
5681 (method url-fetch)
5682 (uri (string-append "mirror://cpan/authors/id/F/FD/FDALY/"
5683 "Test-Tester-" version ".tar.gz"))
5684 (sha256
5685 (base32
5686 "0m9n28z09kq455r5nydj1bnr85lvmbfpcbjdkjfbpmfb5xgciiyk"))))
5687 (build-system perl-build-system)
5688 (synopsis "Simplify running Test::Builder tests")
5689 (description
5690 "Test::Tester allows testing of test modules based on Test::Builder with
5691 a minimum of effort.")
5692 (home-page (string-append "http://search.cpan.org/~fdaly/"
5693 "Test-Tester-" version))
5694 ;; "Under the same license as Perl itself"
5695 (license (package-license perl))))
5696
5697 (define-public perl-test-trap
5698 (package
5699 (name "perl-test-trap")
5700 (version "v0.3.0")
5701 (source
5702 (origin
5703 (method url-fetch)
5704 (uri (string-append "mirror://cpan/authors/id/E/EB/EBHANSSEN/"
5705 "Test-Trap-" version ".tar.gz"))
5706 (sha256
5707 (base32
5708 "05b4zc4087imwphls4yksg4chzx9yavbri301gaxas9kv1yhx13w"))))
5709 (build-system perl-build-system)
5710 (native-inputs
5711 `(("perl-module-build" ,perl-module-build)))
5712 (propagated-inputs
5713 `(("perl-test-tester" ,perl-test-tester)
5714 ("perl-data-dump" ,perl-data-dump)))
5715 (home-page "http://search.cpan.org/dist/Test-Trap")
5716 (synopsis "Trap exit codes, exceptions, output, etc.")
5717 (description "This module is primarily (but not exclusively) for use in
5718 test scripts: A block eval configurable and extensible but by default trapping
5719 STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return values
5720 from boxed blocks of test code.")
5721 (license (package-license perl))))
5722
5723 (define-public perl-test-utf8
5724 (package
5725 (name "perl-test-utf8")
5726 (version "1.01")
5727 (source
5728 (origin
5729 (method url-fetch)
5730 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKF/"
5731 "Test-utf8-" version ".tar.gz"))
5732 (sha256
5733 (base32
5734 "0yhvf735v334qqvp9zg7i66qyk6r4cbk5s2psv93d3fdd4bindzg"))))
5735 (build-system perl-build-system)
5736 (home-page "http://search.cpan.org/dist/Test-utf8")
5737 (synopsis "UTF-8 testing in Perl")
5738 (description "This module is a collection of tests useful for dealing with
5739 UTF-8 strings in Perl. This module has two types of tests: The validity tests
5740 check if a string is valid and not corrupt, whereas the characteristics tests
5741 will check that string has a given set of characteristics.")
5742 (license (package-license perl))))
5743
5744 (define-public perl-test-warn
5745 (package
5746 (name "perl-test-warn")
5747 (version "0.30")
5748 (source
5749 (origin
5750 (method url-fetch)
5751 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
5752 "Test-Warn-" version ".tar.gz"))
5753 (sha256
5754 (base32
5755 "0haf2ii7br5z0psmkvlvmx2z2q9qz1c70gx0969r378qjidmb5w1"))))
5756 (build-system perl-build-system)
5757 (propagated-inputs
5758 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
5759 (home-page "http://search.cpan.org/dist/Test-Warn")
5760 (synopsis "Perl extension to test methods for warnings")
5761 (description "This module provides a few convenience methods for testing
5762 warning based code.")
5763 (license (package-license perl))))
5764
5765 (define-public perl-test-warnings
5766 (package
5767 (name "perl-test-warnings")
5768 (version "0.020")
5769 (source
5770 (origin
5771 (method url-fetch)
5772 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5773 "Test-Warnings-" version ".tar.gz"))
5774 (sha256
5775 (base32
5776 "1x262kybrdnbiiw53m1axp4zyh4lsfb9mm2shmpm8lwf7sp30isi"))))
5777 (build-system perl-build-system)
5778 (home-page "http://search.cpan.org/dist/Test-Warnings")
5779 (synopsis "Test for warnings and the lack of them")
5780 (description "This module is intended to be used as a drop-in replacement
5781 for Test::NoWarnings. It also adds an extra test, but runs this test before
5782 done_testing calculates the test count, rather than after. It does this by
5783 hooking into done_testing as well as via an END block. You can declare a
5784 plan, or not, and things will still Just Work.")
5785 (license (package-license perl))))
5786
5787 (define-public perl-test-without-module
5788 (package
5789 (name "perl-test-without-module")
5790 (version "0.18")
5791 (source
5792 (origin
5793 (method url-fetch)
5794 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
5795 "Test-Without-Module-" version ".tar.gz"))
5796 (sha256
5797 (base32
5798 "0zwc2dk5srd02j4p049w77m89iw5nbff381rmhcbaz8x2w5kdhz2"))))
5799 (build-system perl-build-system)
5800 (home-page "http://search.cpan.org/dist/Test-Without-Module")
5801 (synopsis "Test fallback behaviour in absence of modules")
5802 (description "This module allows you to deliberately hide modules from a
5803 program even though they are installed. This is mostly useful for testing
5804 modules that have a fallback when a certain dependency module is not
5805 installed.")
5806 (license (package-license perl))))
5807
5808 (define-public perl-test-writevariants
5809 (package
5810 (name "perl-test-writevariants")
5811 (version "0.010")
5812 (source
5813 (origin
5814 (method url-fetch)
5815 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
5816 "Test-WriteVariants-" version ".tar.gz"))
5817 (sha256
5818 (base32
5819 "0kklp05fj98yiq8znyfx9lx1vmjay2ypfb868qdwv3kf93m5zjwr"))))
5820 (build-system perl-build-system)
5821 (native-inputs
5822 `(("perl-test-most" ,perl-test-most)
5823 ("perl-test-directory" ,perl-test-directory)))
5824 (propagated-inputs
5825 `(("perl-data-tumbler" ,perl-data-tumbler)
5826 ("perl-file-homedir" ,perl-file-homedir)
5827 ("perl-module-pluggable" ,perl-module-pluggable)))
5828 (home-page "http://search.cpan.org/dist/Test-WriteVariants")
5829 (synopsis "Dynamic generation of tests")
5830 (description "The Test::WriteVariants module provides for the dynamic
5831 generation of tests in nested combinations of contexts.")
5832 (license (package-license perl)))) ;See LICENSE
5833
5834 (define-public perl-test-yaml
5835 (package
5836 (name "perl-test-yaml")
5837 (version "1.05")
5838 (source
5839 (origin
5840 (method url-fetch)
5841 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
5842 "Test-YAML-" version ".tar.gz"))
5843 (sha256
5844 (base32
5845 "079nayc0fp2fwjv8s2yr069bdffln699j6z3lqr5dpx1v2qg82ck"))))
5846 (build-system perl-build-system)
5847 (propagated-inputs
5848 `(("perl-test-base" ,perl-test-base)))
5849 (home-page "http://search.cpan.org/dist/Test-YAML")
5850 (synopsis "Testing module for YAML implementations")
5851 (description "Test::YAML is a subclass of Test::Base with YAML specific
5852 support.")
5853 (license (package-license perl))))
5854
5855 (define-public perl-text-aligner
5856 (package
5857 (name "perl-text-aligner")
5858 (version "0.12")
5859 (source
5860 (origin
5861 (method url-fetch)
5862 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
5863 "Text-Aligner-" version ".tar.gz"))
5864 (sha256
5865 (base32
5866 "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
5867 (build-system perl-build-system)
5868 (native-inputs `(("perl-module-build" ,perl-module-build)))
5869 (home-page "http://search.cpan.org/dist/Text-Aligner")
5870 (synopsis "Align text")
5871 (description "Text::Aligner exports a single function, align(), which is
5872 used to justify strings to various alignment styles.")
5873 (license x11)))
5874
5875 (define-public perl-text-balanced
5876 (package
5877 (name "perl-text-balanced")
5878 (version "2.02")
5879 (source
5880 (origin
5881 (method url-fetch)
5882 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
5883 "Text-Balanced-" version ".tar.gz"))
5884 (sha256
5885 (base32
5886 "1d3mba2sjpp044h16pkf231cksa34ripaz6rmgxp0ygpl917az57"))))
5887 (build-system perl-build-system)
5888 (home-page "http://search.cpan.org/dist/Text-Balanced")
5889 (synopsis "Extract delimited text sequences from strings")
5890 (description "The Text::Balanced module can be used to extract delimited
5891 text sequences from strings.")
5892 (license (package-license perl))))
5893
5894 (define-public perl-text-csv
5895 (package
5896 (name "perl-text-csv")
5897 (version "1.33")
5898 (source
5899 (origin
5900 (method url-fetch)
5901 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
5902 "Text-CSV-" version ".tar.gz"))
5903 (sha256
5904 (base32
5905 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
5906 (build-system perl-build-system)
5907 (home-page "http://search.cpan.org/dist/Text-CSV")
5908 (synopsis "Manipulate comma-separated values")
5909 (description "Text::CSV provides facilities for the composition and
5910 decomposition of comma-separated values. An instance of the Text::CSV class
5911 can combine fields into a CSV string and parse a CSV string into fields.")
5912 (license (package-license perl))))
5913
5914 (define-public perl-text-diff
5915 (package
5916 (name "perl-text-diff")
5917 (version "1.44")
5918 (source
5919 (origin
5920 (method url-fetch)
5921 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
5922 "Text-Diff-" version ".tar.gz"))
5923 (sha256
5924 (base32
5925 "041v92zla2acdc433f47giridf6p820sdczs7x5d71fhsyza1xsp"))))
5926 (build-system perl-build-system)
5927 (propagated-inputs
5928 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
5929 (home-page "http://search.cpan.org/dist/Text-Diff")
5930 (synopsis "Perform diffs on files and record sets")
5931 (description "Text::Diff provides a basic set of services akin to the GNU
5932 diff utility. It is not anywhere near as feature complete as GNU diff, but it
5933 is better integrated with Perl and available on all platforms. It is often
5934 faster than shelling out to a system's diff executable for small files, and
5935 generally slower on larger files.")
5936 (license (package-license perl))))
5937
5938 (define-public perl-text-glob
5939 (package
5940 (name "perl-text-glob")
5941 (version "0.09")
5942 (source
5943 (origin
5944 (method url-fetch)
5945 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
5946 "Text-Glob-" version ".tar.gz"))
5947 (sha256
5948 (base32
5949 "0lr76wrsj8wcxrq4wi8z1640w4dmdbkznp06q744rg3g0bd238d5"))))
5950 (build-system perl-build-system)
5951 (native-inputs `(("perl-module-build" ,perl-module-build)))
5952 (home-page "http://search.cpan.org/dist/Text-Glob")
5953 (synopsis "Match globbing patterns against text")
5954 (description "Text::Glob implements glob(3) style matching that can be
5955 used to match against text, rather than fetching names from a filesystem. If
5956 you want to do full file globbing use the File::Glob module instead.")
5957 (license (package-license perl))))
5958
5959 (define-public perl-text-neattemplate
5960 (package
5961 (name "perl-text-neattemplate")
5962 (version "0.1101")
5963 (source
5964 (origin
5965 (method url-fetch)
5966 (uri (string-append
5967 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
5968 "Text-NeatTemplate-" version ".tar.gz"))
5969 (sha256
5970 (base32
5971 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
5972 (build-system perl-build-system)
5973 (native-inputs
5974 `(("perl-module-build" ,perl-module-build)))
5975 (home-page
5976 "http://search.cpan.org/dist/Text-NeatTemplate")
5977 (synopsis "Fast, middleweight template engine")
5978 (description
5979 "Text::NeatTemplate provides a simple, middleweight but fast
5980 template engine, for when you need speed rather than complex features,
5981 yet need more features than simple variable substitution.")
5982 (license (package-license perl))))
5983
5984 (define-public perl-text-simpletable
5985 (package
5986 (name "perl-text-simpletable")
5987 (version "2.03")
5988 (source
5989 (origin
5990 (method url-fetch)
5991 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
5992 "Text-SimpleTable-" version ".tar.gz"))
5993 (sha256
5994 (base32
5995 "15hpry9jwrf1vbjyk21s65rllxrdvp2fdzzv9gsvczggby2yyzfs"))))
5996 (build-system perl-build-system)
5997 (home-page "http://search.cpan.org/dist/Text-SimpleTable")
5998 (synopsis "Simple ASCII tables")
5999 (description "Text::SimpleTable draws simple ASCII tables.")
6000 (license artistic2.0)))
6001
6002 (define-public perl-text-table
6003 (package
6004 (name "perl-text-table")
6005 (version "1.130")
6006 (source
6007 (origin
6008 (method url-fetch)
6009 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
6010 "Text-Table-" version ".tar.gz"))
6011 (sha256
6012 (base32
6013 "02c8v38k639r23dgxwgvsy4myjjzvgdb238kpiffsiz25ab3xp5j"))))
6014 (build-system perl-build-system)
6015 (native-inputs
6016 `(("perl-module-build" ,perl-module-build)))
6017 (propagated-inputs
6018 `(("perl-text-aligner" ,perl-text-aligner)))
6019 (home-page "http://search.cpan.org/dist/Text-Table")
6020 (synopsis "Organize Data in Tables")
6021 (description "Text::Table renders plaintext tables.")
6022 (license x11)))
6023
6024 (define-public perl-text-unidecode
6025 (package
6026 (name "perl-text-unidecode")
6027 (version "1.23")
6028 (source
6029 (origin
6030 (method url-fetch)
6031 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
6032 "Text-Unidecode-" version ".tar.gz"))
6033 (sha256
6034 (base32
6035 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
6036 (build-system perl-build-system)
6037 (home-page "http://search.cpan.org/dist/Text-Unidecode")
6038 (synopsis "Provide plain ASCII transliterations of Unicode text")
6039 (description "Text::Unidecode provides a function, unidecode(...) that
6040 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
6041 universally displayable characters between 0x00 and 0x7F). The representation
6042 is almost always an attempt at transliteration-- i.e., conveying, in Roman
6043 letters, the pronunciation expressed by the text in some other writing
6044 system.")
6045 (license (package-license perl))))
6046
6047 (define-public perl-throwable
6048 (package
6049 (name "perl-throwable")
6050 (version "0.200012")
6051 (source
6052 (origin
6053 (method url-fetch)
6054 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
6055 "Throwable-" version ".tar.gz"))
6056 (sha256
6057 (base32
6058 "0cy8kza9pd9y5m7k5385asf4xqm54vdqnqm0am10z6j2mrxwr527"))))
6059 (build-system perl-build-system)
6060 (native-inputs
6061 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
6062 (propagated-inputs
6063 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
6064 ("perl-module-runtime" ,perl-module-runtime)
6065 ("perl-moo" ,perl-moo)))
6066 (home-page "http://search.cpan.org/dist/Throwable")
6067 (synopsis "Role for classes that can be thrown")
6068 (description "Throwable is a role for classes that are meant to be thrown
6069 as exceptions to standard program flow.")
6070 (license (package-license perl))))
6071
6072 (define-public perltidy
6073 (package
6074 (name "perltidy")
6075 (version "20160302")
6076 (source (origin
6077 (method url-fetch)
6078 (uri (string-append "mirror://sourceforge/perltidy/" version
6079 "/Perl-Tidy-" version ".tar.gz"))
6080 (sha256
6081 (base32
6082 "19yw63yh5s3pq7k3nkw6nsamg5b8vvwyhgbizslgxg0mqgc4xl3d"))))
6083 (build-system perl-build-system)
6084 (home-page "http://perltidy.sourceforge.net/")
6085 (synopsis "Perl script tidier")
6086 (description "This package contains a Perl script which indents and
6087 reformats Perl scripts to make them easier to read. The formatting can be
6088 controlled with command line parameters. The default parameter settings
6089 approximately follow the suggestions in the Perl Style Guide.")
6090 (license gpl2+)))
6091
6092 (define-public perl-tie-ixhash
6093 (package
6094 (name "perl-tie-ixhash")
6095 (version "1.23")
6096 (source
6097 (origin
6098 (method url-fetch)
6099 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
6100 "Tie-IxHash-" version ".tar.gz"))
6101 (sha256
6102 (base32
6103 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
6104 (build-system perl-build-system)
6105 (native-inputs `(("perl-module-build" ,perl-module-build)))
6106 (home-page "http://search.cpan.org/dist/Tie-IxHash")
6107 (synopsis "Ordered associative arrays for Perl")
6108 (description "This Perl module implements Perl hashes that preserve the
6109 order in which the hash elements were added. The order is not affected when
6110 values corresponding to existing keys in the IxHash are changed. The elements
6111 can also be set to any arbitrary supplied order. The familiar perl array
6112 operations can also be performed on the IxHash.")
6113 (license (package-license perl))))
6114
6115 (define-public perl-tie-toobject
6116 (package
6117 (name "perl-tie-toobject")
6118 (version "0.03")
6119 (source
6120 (origin
6121 (method url-fetch)
6122 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
6123 "Tie-ToObject-" version ".tar.gz"))
6124 (sha256
6125 (base32
6126 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
6127 (build-system perl-build-system)
6128 (propagated-inputs
6129 `(("perl-test-simple" ,perl-test-simple)))
6130 (home-page "http://search.cpan.org/dist/Tie-ToObject")
6131 (synopsis "Tie to an existing Perl object")
6132 (description "This class provides a tie constructor that returns the
6133 object it was given as it's first argument. This way side effects of calling
6134 $object->TIEHASH are avoided.")
6135 (license (package-license perl))))
6136
6137 (define-public perl-time-duration
6138 (package
6139 (name "perl-time-duration")
6140 (version "1.1")
6141 (source
6142 (origin
6143 (method url-fetch)
6144 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
6145 "Time-Duration-" version ".tar.gz"))
6146 (sha256
6147 (base32
6148 "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
6149 (build-system perl-build-system)
6150 (native-inputs
6151 `(("perl-test-pod" ,perl-test-pod)
6152 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
6153 (home-page "http://search.cpan.org/dist/Time-Duration")
6154 (synopsis "English expression of durations")
6155 (description "This module provides functions for expressing durations in
6156 rounded or exact terms.")
6157 (license (package-license perl))))
6158
6159 (define-public perl-time-duration-parse
6160 (package
6161 (name "perl-time-duration-parse")
6162 (version "0.11")
6163 (source
6164 (origin
6165 (method url-fetch)
6166 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
6167 "Time-Duration-Parse-" version ".tar.gz"))
6168 (sha256
6169 (base32
6170 "1yk4cqkldwzkfy9y9ngqrj7p7sbsrsfa26mrm8f70z5n5m8q31x0"))))
6171 (build-system perl-build-system)
6172 (native-inputs
6173 `(("perl-time-duration" ,perl-time-duration)))
6174 (propagated-inputs
6175 `(("perl-exporter-lite" ,perl-exporter-lite)))
6176 (home-page "http://search.cpan.org/dist/Time-Duration-Parse")
6177 (synopsis "Parse time duration strings")
6178 (description "Time::Duration::Parse is a module to parse human readable
6179 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
6180 (license (package-license perl))))
6181
6182 (define-public perl-time-local
6183 (package
6184 (name "perl-time-local")
6185 (version "1.2300")
6186 (source
6187 (origin
6188 (method url-fetch)
6189 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6190 "Time-Local-" version ".tar.gz"))
6191 (sha256
6192 (base32
6193 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
6194 (build-system perl-build-system)
6195 (home-page "http://search.cpan.org/dist/Time-Local")
6196 (synopsis "Efficiently compute time from local and GMT time")
6197 (description "This module provides functions that are the inverse of
6198 built-in perl functions localtime() and gmtime(). They accept a date as a
6199 six-element array, and return the corresponding time(2) value in seconds since
6200 the system epoch.")
6201 (license (package-license perl))))
6202
6203 (define-public perl-timedate
6204 (package
6205 (name "perl-timedate")
6206 (version "2.30")
6207 (source
6208 (origin
6209 (method url-fetch)
6210 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
6211 "TimeDate-" version ".tar.gz"))
6212 (sha256
6213 (base32
6214 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
6215 (build-system perl-build-system)
6216 (home-page "http://search.cpan.org/dist/TimeDate")
6217 (synopsis "Date parsing/formatting subroutines")
6218 (description "This module provides routines for parsing date string into
6219 time values and formatting dates into ASCII strings.")
6220 (license (package-license perl))))
6221
6222 (define-public perl-time-mock
6223 (package
6224 (name "perl-time-mock")
6225 (version "v0.0.2")
6226 (source
6227 (origin
6228 (method url-fetch)
6229 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
6230 "Time-Mock-" version ".tar.gz"))
6231 (sha256
6232 (base32
6233 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
6234 (build-system perl-build-system)
6235 (native-inputs
6236 `(("perl-module-build" ,perl-module-build)))
6237 (propagated-inputs
6238 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
6239 (home-page "http://search.cpan.org/dist/Time-Mock")
6240 (synopsis "Shift and scale time")
6241 (description "This module allows you to speed up your sleep(), alarm(),
6242 and time() calls.")
6243 (license (package-license perl))))
6244
6245 (define-public perl-tree-simple
6246 (package
6247 (name "perl-tree-simple")
6248 (version "1.25")
6249 (source
6250 (origin
6251 (method url-fetch)
6252 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
6253 "Tree-Simple-" version ".tgz"))
6254 (sha256
6255 (base32
6256 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
6257 (build-system perl-build-system)
6258 (native-inputs
6259 `(("perl-module-build" ,perl-module-build)
6260 ("perl-test-exception" ,perl-test-exception)))
6261 (propagated-inputs
6262 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
6263 (home-page "http://search.cpan.org/dist/Tree-Simple")
6264 (synopsis "Simple tree object")
6265 (description "This module in a fully object-oriented implementation of a
6266 simple n-ary tree.")
6267 (license (package-license perl))))
6268
6269 (define-public perl-tree-simple-visitorfactory
6270 (package
6271 (name "perl-tree-simple-visitorfactory")
6272 (version "0.12")
6273 (source
6274 (origin
6275 (method url-fetch)
6276 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
6277 "Tree-Simple-VisitorFactory-" version ".tgz"))
6278 (sha256
6279 (base32
6280 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
6281 (build-system perl-build-system)
6282 (native-inputs
6283 `(("perl-module-build" ,perl-module-build)
6284 ("perl-test-exception" ,perl-test-exception)))
6285 (propagated-inputs
6286 `(("perl-tree-simple" ,perl-tree-simple)
6287 ("perl-base" ,perl-base)))
6288 (home-page "http://search.cpan.org/dist/Tree-Simple-VisitorFactory")
6289 (synopsis "Factory object for dispensing Visitor objects")
6290 (description "This module is a factory for dispensing
6291 Tree::Simple::Visitor::* objects.")
6292 (license (package-license perl))))
6293
6294 (define-public perl-try-tiny
6295 (package
6296 (name "perl-try-tiny")
6297 (version "0.22")
6298 (source
6299 (origin
6300 (method url-fetch)
6301 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6302 "Try-Tiny-" version ".tar.gz"))
6303 (sha256
6304 (base32
6305 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
6306 (build-system perl-build-system)
6307 (home-page "http://search.cpan.org/dist/Try-Tiny")
6308 (synopsis "Minimal try/catch with proper preservation of $@")
6309 (description "This module provides bare bones try/catch/finally statements
6310 that are designed to minimize common mistakes with eval blocks, and nothing
6311 else.")
6312 (license x11)))
6313
6314 (define-public perl-types-serialiser
6315 (package
6316 (name "perl-types-serialiser")
6317 (version "1.0")
6318 (source
6319 (origin
6320 (method url-fetch)
6321 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
6322 "Types-Serialiser-" version ".tar.gz"))
6323 (sha256
6324 (base32
6325 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
6326 (build-system perl-build-system)
6327 (propagated-inputs
6328 `(("perl-common-sense" ,perl-common-sense)))
6329 (home-page "http://search.cpan.org/dist/Types-Serialiser")
6330 (synopsis "Data types for common serialisation formats")
6331 (description "This module provides some extra datatypes that are used by
6332 common serialisation formats such as JSON or CBOR.")
6333 (license (package-license perl))))
6334
6335 (define-public perl-unicode-linebreak
6336 (package
6337 (name "perl-unicode-linebreak")
6338 (version "2015.12")
6339 (source (origin
6340 (method url-fetch)
6341 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
6342 "Unicode-LineBreak-" version ".tar.gz"))
6343 (sha256
6344 (base32
6345 "1d0nnc97irfpab4d3b2lvq22hac118k7zbfrj0lnxkbfwx7122cm"))))
6346 (build-system perl-build-system)
6347 (propagated-inputs
6348 `(("perl-mime-charset" ,perl-mime-charset)))
6349 (home-page "http://search.cpan.org/dist/Unicode-LineBreak")
6350 (synopsis "Unicode line breaking algorithm")
6351 (description
6352 "@code{Unicode::LineBreak} implements the line breaking algorithm
6353 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
6354 defined by Annex #11 is used to determine breaking positions.")
6355 (license (package-license perl))))
6356
6357 (define-public perl-universal-can
6358 (package
6359 (name "perl-universal-can")
6360 (version "1.20140328")
6361 (source
6362 (origin
6363 (method url-fetch)
6364 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
6365 "UNIVERSAL-can-" version ".tar.gz"))
6366 (sha256
6367 (base32
6368 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
6369 (build-system perl-build-system)
6370 (home-page "http://search.cpan.org/dist/UNIVERSAL-can")
6371 (synopsis "UNIVERSAL::can() reimplementation")
6372 (description "This module attempts to work around people calling
6373 UNIVERSAL::can() as a function, which it is not.")
6374 (license (package-license perl))))
6375
6376 (define-public perl-universal-isa
6377 (package
6378 (name "perl-universal-isa")
6379 (version "1.20140927")
6380 (source
6381 (origin
6382 (method url-fetch)
6383 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6384 "UNIVERSAL-isa-" version ".tar.gz"))
6385 (sha256
6386 (base32
6387 "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
6388 (build-system perl-build-system)
6389 (native-inputs
6390 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
6391 (home-page "http://search.cpan.org/dist/UNIVERSAL-isa")
6392 (synopsis "UNIVERSAL::isa() reimplementation")
6393 (description "This module attempts to recover from people calling
6394 UNIVERSAL::isa as a function.")
6395 (license (package-license perl))))
6396
6397 (define-public perl-variable-magic
6398 (package
6399 (name "perl-variable-magic")
6400 (version "0.55")
6401 (source
6402 (origin
6403 (method url-fetch)
6404 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
6405 "Variable-Magic-" version ".tar.gz"))
6406 (sha256
6407 (base32
6408 "0xzh2vy45ph80bp09j5fcjy8ydgn8yaxsa0fj831q6p1spvyniwg"))))
6409 (build-system perl-build-system)
6410 (home-page "http://search.cpan.org/dist/Variable-Magic")
6411 (synopsis "Associate user-defined magic to variables from Perl")
6412 (description "Magic is Perl's way of enhancing variables. This mechanism
6413 lets the user add extra data to any variable and hook syntactical
6414 operations (such as access, assignment or destruction) that can be applied to
6415 it. With this module, you can add your own magic to any variable without
6416 having to write a single line of XS.")
6417 (license (package-license perl))))
6418
6419 (define-public perl-yaml
6420 (package
6421 (name "perl-yaml")
6422 (version "1.14")
6423 (source
6424 (origin
6425 (method url-fetch)
6426 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
6427 "YAML-" version ".tar.gz"))
6428 (sha256
6429 (base32
6430 "0sswbkyisgny7ksw34n7zdaxrhsbbn7dgjb9gjybpzhcnml476kc"))))
6431 (build-system perl-build-system)
6432 (native-inputs
6433 `(("perl-test-yaml" ,perl-test-yaml)))
6434 (home-page "http://search.cpan.org/dist/YAML")
6435 (synopsis "YAML for Perl")
6436 (description "The YAML.pm module implements a YAML Loader and Dumper based
6437 on the YAML 1.0 specification.")
6438 (license (package-license perl))))
6439
6440 (define-public perl-yaml-tiny
6441 (package
6442 (name "perl-yaml-tiny")
6443 (version "1.66")
6444 (source
6445 (origin
6446 (method url-fetch)
6447 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6448 "YAML-Tiny-" version ".tar.gz"))
6449 (sha256
6450 (base32
6451 "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
6452 (build-system perl-build-system)
6453 (native-inputs
6454 `(("perl-json-maybexs" ,perl-json-maybexs)
6455 ("perl-module-build-tiny" ,perl-module-build-tiny)))
6456 (arguments
6457 `(#:tests? #f)) ;requires Test::More >= 0.99
6458 (home-page "http://search.cpan.org/dist/YAML-Tiny")
6459 (synopsis "Read/Write YAML files")
6460 (description "YAML::Tiny is a perl class for reading and writing
6461 YAML-style files, written with as little code as possible, reducing load time
6462 and memory overhead.")
6463 (license (package-license perl))))
6464
6465 \f
6466 ;;; Some packaged modules need versions of core modules that are newer than
6467 ;;; those in our perl 5.16.1.
6468
6469 (define-public perl-cpan-meta
6470 (package
6471 (name "perl-cpan-meta")
6472 (version "2.143240")
6473 (source
6474 (origin
6475 (method url-fetch)
6476 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6477 "CPAN-Meta-" version ".tar.gz"))
6478 (sha256
6479 (base32
6480 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
6481 (build-system perl-build-system)
6482 (propagated-inputs
6483 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
6484 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
6485 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
6486 (home-page "http://search.cpan.org/dist/CPAN-Meta")
6487 (synopsis "Distribution metadata for a CPAN dist")
6488 (description "Software distributions released to the CPAN include a
6489 META.json or, for older distributions, META.yml, which describes the
6490 distribution, its contents, and the requirements for building and installing
6491 the distribution. The data structure stored in the META.json file is
6492 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
6493 represent this distribution metadata (or distmeta), along with some helpful
6494 methods for interrogating that data.")
6495 (license (package-license perl))))
6496
6497 (define-public perl-cpan-meta-requirements
6498 (package
6499 (name "perl-cpan-meta-requirements")
6500 (version "2.131")
6501 (source
6502 (origin
6503 (method url-fetch)
6504 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6505 "CPAN-Meta-Requirements-" version ".tar.gz"))
6506 (sha256
6507 (base32
6508 "12p5s7w3cwcrbpcrxzanvpr0syswhwlqzbaki6m044c45jix2fss"))))
6509 (build-system perl-build-system)
6510 (home-page "http://search.cpan.org/dist/CPAN-Meta-Requirements")
6511 (synopsis "Set of version requirements for a CPAN dist")
6512 (description "A CPAN::Meta::Requirements object models a set of version
6513 constraints like those specified in the META.yml or META.json files in CPAN
6514 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
6515 adding more and more constraints, and will reduce them to the simplest
6516 representation.")
6517 (license (package-license perl))))
6518
6519 (define-public perl-cpan-meta-yaml
6520 (package
6521 (name "perl-cpan-meta-yaml")
6522 (version "0.012")
6523 (source
6524 (origin
6525 (method url-fetch)
6526 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6527 "CPAN-Meta-YAML-" version ".tar.gz"))
6528 (sha256
6529 (base32
6530 "0a0d62w8d81kkas4j1h48znk0f0vrpibl31gvz9r8hm77dbqqwkw"))))
6531 (build-system perl-build-system)
6532 (arguments
6533 `(#:tests? #f)) ;Tests require Test::More >= 0.99
6534 (home-page "http://search.cpan.org/dist/CPAN-Meta-YAML")
6535 (synopsis "Read and write a subset of YAML for CPAN Meta files")
6536 (description "This module implements a subset of the YAML specification
6537 for use in reading and writing CPAN metadata files like META.yml and
6538 MYMETA.yml.")
6539 (license (package-license perl))))
6540
6541 (define-public perl-module-build
6542 (package
6543 (name "perl-module-build")
6544 (version "0.4211")
6545 (source
6546 (origin
6547 (method url-fetch)
6548 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
6549 "Module-Build-" version ".tar.gz"))
6550 (sha256
6551 (base32
6552 "1c5hfhajr963w4mdjivsc7yz4vf4pz1rrfch5a93fbac1x2mr58h"))))
6553 (build-system perl-build-system)
6554 (propagated-inputs
6555 `(("perl-cpan-meta" ,perl-cpan-meta)))
6556 (home-page "http://search.cpan.org/dist/Module-Build")
6557 (synopsis "Build and install Perl modules")
6558 (description "@code{Module::Build} is a system for building, testing, and
6559 installing Perl modules; it used to be part of Perl itself until version 5.22,
6560 which dropped it. It is meant to be an alternative to
6561 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
6562 through subclassing in a much more straightforward way than with
6563 @code{MakeMaker}. It also does not require a @command{make} on your
6564 system---most of the @code{Module::Build} code is pure-Perl.")
6565 (license (package-license perl))))
6566
6567 (define-public perl-parse-cpan-meta
6568 (package
6569 (name "perl-parse-cpan-meta")
6570 (version "1.4414")
6571 (source
6572 (origin
6573 (method url-fetch)
6574 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6575 "Parse-CPAN-Meta-" version ".tar.gz"))
6576 (sha256
6577 (base32
6578 "06ya2rg599qanqb1fxiyrd489mvmdgzbw4ph23hwjwpv9lahhxnd"))))
6579 (build-system perl-build-system)
6580 (propagated-inputs
6581 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
6582 (home-page "http://search.cpan.org/dist/Parse-CPAN-Meta")
6583 (synopsis "Parse META.yml and META.json CPAN metadata files")
6584 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
6585 files, using JSON::PP and/or CPAN::Meta::YAML.")
6586 (license (package-license perl))))
6587
6588 (define-public perl-scalar-list-utils
6589 (package
6590 (name "perl-scalar-list-utils")
6591 (version "1.41")
6592 (source
6593 (origin
6594 (method url-fetch)
6595 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
6596 "Scalar-List-Utils-" version ".tar.gz"))
6597 (sha256
6598 (base32
6599 "04l1q4hps9n8b1hk9kpgpc1cryim7pl9sfdyb7fz5nq4gmz307j7"))))
6600 (build-system perl-build-system)
6601 (home-page "http://search.cpan.org/dist/Scalar-List-Utils")
6602 (synopsis "Common Scalar and List utility subroutines")
6603 (description "This package contains a selection of subroutines that people
6604 have expressed would be nice to have in the perl core, but the usage would not
6605 really be high enough to warrant the use of a keyword, and the size so small
6606 such that being individual extensions would be wasteful.")
6607 (license (package-license perl))))
6608
6609 (define-public perl-shell-command
6610 (package
6611 (name "perl-shell-command")
6612 (version "0.06")
6613 (source
6614 (origin
6615 (method url-fetch)
6616 (uri (string-append
6617 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
6618 version
6619 ".tar.gz"))
6620 (sha256
6621 (base32
6622 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
6623 (build-system perl-build-system)
6624 (home-page
6625 "http://search.cpan.org/dist/Shell-Command")
6626 (synopsis
6627 "Cross-platform functions emulating common shell commands")
6628 (description
6629 "Shell::Command is a thin wrapper around ExtUtils::Command.")
6630 (license (package-license perl))))
6631
6632 ;;; END: Core module overrides