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