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