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