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