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 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.04")
693 (source
694 (origin
695 (method url-fetch)
696 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
697 "Carp-Clan-" version ".tar.gz"))
698 (sha256
699 (base32
700 "1v71k8s1pi16l5y579gnrg372c6pdvy6qqm6iddm8h1dx7n16bjl"))))
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.28")
960 (source
961 (origin
962 (method url-fetch)
963 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
964 "Class-Inspector-" version ".tar.gz"))
965 (sha256
966 (base32
967 "04iij8dbcgaim7g109frpyf7mh4ydsd8zh53r53chk0zxnivg91w"))))
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.24")
1200 (source
1201 (origin
1202 (method url-fetch)
1203 (uri (string-append "mirror://cpan/authors/id/B/BR/BRICAS/"
1204 "Config-Any-" version ".tar.gz"))
1205 (sha256
1206 (base32
1207 "06n6jn3q3xhk57icwip0ihzqixxav6sgp6rrb35hahj1z748y3vi"))))
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.06")
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 "0ymxizwd2zfx8b4bmrmv4k439qwfwf2522jrvn4hlay5v6z459dr"))))
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.14")
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 "0yl296y0qfwybwjgqjzd4j2w2bj5a2nz342qqgxchnf5bqynl1c9"))))
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.17")
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 "0qkfjk7bm7jwn9d9qaldg298zvkqh2f19fgvfh5j1rp66mwzql1c"))))
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.13")
2919 (source
2920 (origin
2921 (method url-fetch)
2922 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2923 "File-Find-Rule-Perl-" version ".tar.gz"))
2924 (sha256
2925 (base32
2926 "0xi4ppqr6r57l5xlkwxpvkvpb9p7dvz053d76v2m9pwdfxqb5v6j"))))
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.00")
2966 (source
2967 (origin
2968 (method url-fetch)
2969 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2970 "File-HomeDir-" version ".tar.gz"))
2971 (sha256
2972 (base32
2973 "0hvihydd0y4gdxafi8dpybk9ll8q35bz5ycibfic0gh92cslzfc5"))))
2974 (build-system perl-build-system)
2975 (propagated-inputs
2976 `(("perl-file-which" ,perl-file-which)
2977 ("perl-file-temp" ,perl-file-temp)))
2978 (arguments `(#:tests? #f)) ;Not appropriate for chroot
2979 (home-page "http://search.cpan.org/dist/File-HomeDir")
2980 (synopsis "Find your home and other directories on any platform")
2981 (description "File::HomeDir is a module for locating the directories that
2982 are \"owned\" by a user (typically your user) and to solve the various issues
2983 that arise trying to find them consistently across a wide variety of
2984 platforms.")
2985 (license (package-license perl))))
2986
2987 (define-public perl-file-path
2988 (package
2989 (name "perl-file-path")
2990 (version "2.13")
2991 (source
2992 (origin
2993 (method url-fetch)
2994 (uri (string-append
2995 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
2996 version
2997 ".tar.gz"))
2998 (sha256
2999 (base32
3000 "039gc0i5cbdmidl8j8x195yykwcdmzwawmpapnysvljl8l33jqwj"))))
3001 (build-system perl-build-system)
3002 (home-page "http://search.cpan.org/dist/File-Path")
3003 (synopsis "Create or remove directory trees")
3004 (description "This module provide a convenient way to create directories
3005 of arbitrary depth and to delete an entire directory subtree from the
3006 file system.")
3007 (license (package-license perl))))
3008
3009 (define-public perl-file-pushd
3010 (package
3011 (name "perl-file-pushd")
3012 (version "1.014")
3013 (source
3014 (origin
3015 (method url-fetch)
3016 (uri (string-append
3017 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
3018 version
3019 ".tar.gz"))
3020 (sha256
3021 (base32
3022 "02rlqvyy7gly3dsqwaa81aisyy9c791b8xvwzczcbgmcwgzkgaxm"))))
3023 (build-system perl-build-system)
3024 (home-page
3025 "http://search.cpan.org/dist/File-pushd")
3026 (synopsis
3027 "Change directory temporarily for a limited scope")
3028 (description "@code{File::pushd} does a temporary @code{chdir} that is
3029 easily and automatically reverted, similar to @code{pushd} in some Unix
3030 command shells. It works by creating an object that caches the original
3031 working directory. When the object is destroyed, the destructor calls
3032 @code{chdir} to revert to the original working directory. By storing the
3033 object in a lexical variable with a limited scope, this happens automatically
3034 at the end of the scope.")
3035 (license asl2.0)))
3036
3037 (define-public perl-file-list
3038 (package
3039 (name "perl-file-list")
3040 (version "0.3.1")
3041 (source (origin
3042 (method url-fetch)
3043 (uri (string-append
3044 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
3045 version ".tar.gz"))
3046 (sha256
3047 (base32
3048 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
3049 (build-system perl-build-system)
3050 (arguments
3051 `(#:phases
3052 (alist-cons-after
3053 'unpack 'cd
3054 (lambda* _
3055 (chdir "List"))
3056 %standard-phases)))
3057 (license (package-license perl))
3058 (synopsis "Perl extension for crawling directory trees and compiling
3059 lists of files")
3060 (description
3061 "The File::List module crawls the directory tree starting at the
3062 provided base directory and can return files (and/or directories if desired)
3063 matching a regular expression.")
3064 (home-page "http://search.cpan.org/~dopacki/File-List/")))
3065
3066 (define-public perl-file-remove
3067 (package
3068 (name "perl-file-remove")
3069 (version "1.52")
3070 (source
3071 (origin
3072 (method url-fetch)
3073 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3074 "File-Remove-" version ".tar.gz"))
3075 (sha256
3076 (base32
3077 "1p8bal9qhwkjbghivxn1d5m3qdj2qwm1agrjbmakm6la9dbxqm21"))))
3078 (build-system perl-build-system)
3079 (home-page "http://search.cpan.org/dist/File-Remove")
3080 (synopsis "Remove files and directories in Perl")
3081 (description "File::Remove::remove removes files and directories. It acts
3082 like /bin/rm, for the most part. Although \"unlink\" can be given a list of
3083 files, it will not remove directories; this module remedies that. It also
3084 accepts wildcards, * and ?, as arguments for file names.")
3085 (license (package-license perl))))
3086
3087 (define-public perl-file-sharedir
3088 (package
3089 (name "perl-file-sharedir")
3090 (version "1.102")
3091 (source
3092 (origin
3093 (method url-fetch)
3094 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3095 "File-ShareDir-" version ".tar.gz"))
3096 (sha256
3097 (base32
3098 "04blqn4cms9zjmhlfvwyx6mrglaaq1mmy4xwv7xqf9c8fjwk8wvw"))))
3099 (build-system perl-build-system)
3100 (native-inputs
3101 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3102 (propagated-inputs
3103 `(("perl-class-inspector" ,perl-class-inspector)))
3104 (home-page "http://search.cpan.org/dist/File-ShareDir")
3105 (synopsis "Locate per-dist and per-module shared files")
3106 (description "The intent of File::ShareDir is to provide a companion to
3107 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3108 module to have access to a large amount of read-only data that is stored on
3109 the file-system at run-time. Once the files have been installed to the
3110 correct directory, you can use File::ShareDir to find your files again after
3111 the installation.")
3112 (license (package-license perl))))
3113
3114 (define-public perl-file-sharedir-install
3115 (package
3116 (name "perl-file-sharedir-install")
3117 (version "0.10")
3118 (source
3119 (origin
3120 (method url-fetch)
3121 (uri (string-append "mirror://cpan/authors/id/G/GW/GWYN/"
3122 "File-ShareDir-Install-" version ".tar.gz"))
3123 (sha256
3124 (base32
3125 "1xz60bi7x8755lq24rx7y1jkyk3icssn7s55z665mysdxhfzg2kh"))))
3126 (build-system perl-build-system)
3127 (home-page "http://search.cpan.org/dist/File-ShareDir-Install")
3128 (synopsis "Install shared files")
3129 (description "File::ShareDir::Install allows you to install read-only data
3130 files from a distribution. It is a companion module to File::ShareDir, which
3131 allows you to locate these files after installation.")
3132 (license (package-license perl))))
3133
3134 (define-public perl-file-slurp
3135 (package
3136 (name "perl-file-slurp")
3137 (version "9999.19")
3138 (source
3139 (origin
3140 (method url-fetch)
3141 (uri (string-append "mirror://cpan/authors/id/U/UR/URI/"
3142 "File-Slurp-" version ".tar.gz"))
3143 (sha256
3144 (base32
3145 "0hrn4nipwx40d6ji8ssgr5nw986z9iqq8cn0kdpbszh9jplynaff"))))
3146 (build-system perl-build-system)
3147 (home-page "http://search.cpan.org/dist/File-Slurp")
3148 (synopsis "Reading/Writing/Modifying of complete files")
3149 (description "File::Slurp provides subroutines to read or write entire
3150 files with a simple call. It also has a subroutine for reading the list of
3151 file names in a directory.")
3152 (license (package-license perl))))
3153
3154 (define-public perl-file-slurper
3155 (package
3156 (name "perl-file-slurper")
3157 (version "0.008")
3158 (source
3159 (origin
3160 (method url-fetch)
3161 (uri (string-append
3162 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3163 version
3164 ".tar.gz"))
3165 (sha256
3166 (base32
3167 "0cyjspspms6zyjcqz9v18dbs574g085h2jzjh41xvsrc1qa8bxhh"))))
3168 (build-system perl-build-system)
3169 (propagated-inputs
3170 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3171 (home-page "http://search.cpan.org/dist/File-Slurper")
3172 (synopsis "Simple, sane and efficient module to slurp a file")
3173 (description "This module provides functions for fast and correct file
3174 slurping and spewing. All functions are optionally exported.")
3175 (license (package-license perl))))
3176
3177 (define-public perl-file-slurp-tiny
3178 (package
3179 (name "perl-file-slurp-tiny")
3180 (version "0.004")
3181 (source (origin
3182 (method url-fetch)
3183 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3184 "File-Slurp-Tiny-" version ".tar.gz"))
3185 (sha256
3186 (base32
3187 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3188 (build-system perl-build-system)
3189 (home-page "http://search.cpan.org/dist/File-Slurp-Tiny")
3190 (synopsis "Simple file reader and writer")
3191 (description
3192 "This module provides functions for fast reading and writing of files.")
3193 (license (package-license perl))))
3194
3195 (define-public perl-file-temp
3196 (package
3197 (name "perl-file-temp")
3198 (version "0.2304")
3199 (source
3200 (origin
3201 (method url-fetch)
3202 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3203 "File-Temp-" version ".tar.gz"))
3204 (sha256
3205 (base32
3206 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
3207 (build-system perl-build-system)
3208 (propagated-inputs
3209 `(("perl-parent" ,perl-parent)))
3210 (home-page "http://search.cpan.org/dist/File-Temp")
3211 (synopsis "Return name and handle of a temporary file safely")
3212 (description "File::Temp can be used to create and open temporary files in
3213 a safe way.")
3214 (license (package-license perl))))
3215
3216 (define-public perl-file-which
3217 (package
3218 (name "perl-file-which")
3219 (version "1.09")
3220 (source (origin
3221 (method url-fetch)
3222 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3223 "File-Which-" version ".tar.gz"))
3224 (sha256
3225 (base32
3226 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
3227 (build-system perl-build-system)
3228 (native-inputs `(("test-script" ,perl-test-script)))
3229 (synopsis "Portable implementation of the `which' utility")
3230 (description
3231 "File::Which was created to be able to get the paths to executable
3232 programs on systems under which the `which' program wasn't implemented in the
3233 shell.")
3234 (home-page (string-append "http://search.cpan.org/~adamk/"
3235 "File-Which-" version))
3236 (license (package-license perl))))
3237
3238 (define-public perl-file-zglob
3239 (package
3240 (name "perl-file-zglob")
3241 (version "0.11")
3242 (source (origin
3243 (method url-fetch)
3244 (uri (string-append
3245 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
3246 version ".tar.gz"))
3247 (sha256
3248 (base32
3249 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
3250 (build-system perl-build-system)
3251 (home-page "http://search.cpan.org/dist/File-Zglob")
3252 (synopsis "Extended Unix style glob functionality")
3253 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
3254 functionality; it returns a list of file names that match the given pattern.
3255 For instance, it supports the @code{**/*.pm} form.")
3256 (license (package-license perl))))
3257
3258 (define-public perl-getopt-long
3259 (package
3260 (name "perl-getopt-long")
3261 (version "v2.49.1")
3262 (source
3263 (origin
3264 (method url-fetch)
3265 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
3266 "Getopt-Long-" (substring version 1) ".tar.gz"))
3267 (sha256
3268 (base32
3269 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
3270 (build-system perl-build-system)
3271 (home-page "http://search.cpan.org/dist/Getopt-Long")
3272 (synopsis "Module to handle parsing command line options")
3273 (description "The @code{Getopt::Long} module implements an extended getopt
3274 function called @code{GetOptions()}. It parses the command line from
3275 @code{ARGV}, recognizing and removing specified options and their possible
3276 values.
3277
3278 This function adheres to the POSIX syntax for command line options, with GNU
3279 extensions. In general, this means that options have long names instead of
3280 single letters, and are introduced with a double dash \"--\". Support for
3281 bundling of command line options, as was the case with the more traditional
3282 single-letter approach, is provided but not enabled by default.")
3283 ;; Can be used with either license.
3284 (license (list (package-license perl) gpl2+))))
3285
3286 (define-public perl-getopt-long-descriptive
3287 (package
3288 (name "perl-getopt-long-descriptive")
3289 (version "0.098")
3290 (source
3291 (origin
3292 (method url-fetch)
3293 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3294 "Getopt-Long-Descriptive-" version ".tar.gz"))
3295 (sha256
3296 (base32
3297 "08lphvqshcajvvd6z4rvcda6rx5kz8pysrsip4nfv2mbks95p9ma"))))
3298 (build-system perl-build-system)
3299 (native-inputs
3300 `(("perl-test-fatal" ,perl-test-fatal)
3301 ("perl-test-warnings" ,perl-test-warnings)))
3302 (propagated-inputs
3303 `(("perl-params-validate" ,perl-params-validate)
3304 ("perl-sub-exporter" ,perl-sub-exporter)))
3305 (home-page "http://search.cpan.org/dist/Getopt-Long-Descriptive")
3306 (synopsis "Getopt::Long, but simpler and more powerful")
3307 (description "Getopt::Long::Descriptive is yet another Getopt library.
3308 It's built atop Getopt::Long, and gets a lot of its features, but tries to
3309 avoid making you think about its huge array of options. It also provides
3310 usage (help) messages, data validation, and a few other useful features.")
3311 (license (package-license perl))))
3312
3313 (define-public perl-getopt-tabular
3314 (package
3315 (name "perl-getopt-tabular")
3316 (version "0.3")
3317 (source (origin
3318 (method url-fetch)
3319 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
3320 "Getopt-Tabular-" version ".tar.gz"))
3321 (sha256
3322 (base32
3323 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
3324 (build-system perl-build-system)
3325 (synopsis "Table-driven argument parsing for Perl")
3326 (description
3327 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
3328 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
3329 (home-page (string-append "http://search.cpan.org/~gward/"
3330 "Getopt-Tabular-" version))
3331 (license (package-license perl))))
3332
3333 (define-public perl-graph
3334 (package
3335 (name "perl-graph")
3336 (version "0.9704")
3337 (source
3338 (origin
3339 (method url-fetch)
3340 (uri (string-append
3341 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
3342 version
3343 ".tar.gz"))
3344 (sha256
3345 (base32
3346 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
3347 (build-system perl-build-system)
3348 (home-page "http://search.cpan.org/dist/Graph")
3349 (synopsis "Graph data structures and algorithms")
3350 (description "This is @code{Graph}, a Perl module for dealing with graphs,
3351 the abstract data structures.")
3352 (license (package-license perl))))
3353
3354 (define-public perl-guard
3355 (package
3356 (name "perl-guard")
3357 (version "1.023")
3358 (source (origin
3359 (method url-fetch)
3360 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
3361 version ".tar.gz"))
3362 (sha256
3363 (base32
3364 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
3365 (build-system perl-build-system)
3366 (home-page "http://search.cpan.org/dist/Guard")
3367 (synopsis "Safe cleanup blocks implemented as guards")
3368 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
3369 something (usually an object) that \"guards\" a resource, ensuring that it is
3370 cleaned up when expected.
3371
3372 Specifically, this module supports two different types of guards: guard
3373 objects, which execute a given code block when destroyed, and scoped guards,
3374 which are tied to the scope exit.")
3375 (license (package-license perl))))
3376
3377 (define-public perl-hash-merge
3378 (package
3379 (name "perl-hash-merge")
3380 (version "0.200")
3381 (source
3382 (origin
3383 (method url-fetch)
3384 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3385 "Hash-Merge-" version ".tar.gz"))
3386 (sha256
3387 (base32
3388 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
3389 (build-system perl-build-system)
3390 (home-page "http://search.cpan.org/dist/Hash-Merge")
3391 (synopsis "Merge arbitrarily deep hashes into a single hash")
3392 (description "Hash::Merge merges two arbitrarily deep hashes into a single
3393 hash. That is, at any level, it will add non-conflicting key-value pairs from
3394 one hash to the other, and follows a set of specific rules when there are key
3395 value conflicts. The hash is followed recursively, so that deeply nested
3396 hashes that are at the same level will be merged when the parent hashes are
3397 merged.")
3398 (license (package-license perl))))
3399
3400 (define-public perl-hash-multivalue
3401 (package
3402 (name "perl-hash-multivalue")
3403 (version "0.15")
3404 (source
3405 (origin
3406 (method url-fetch)
3407 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
3408 "Hash-MultiValue-" version ".tar.gz"))
3409 (sha256
3410 (base32
3411 "1jc37kwpa1fl88va8bd1p95h0vjv1gsvmn7pc2pxj62ga6x0wpc0"))))
3412 (build-system perl-build-system)
3413 (home-page "http://search.cpan.org/dist/Hash-MultiValue")
3414 (synopsis "Store multiple values per key")
3415 (description "Hash::MultiValue is an object (and a plain hash reference)
3416 that may contain multiple values per key, inspired by MultiDict of WebOb.")
3417 (license (package-license perl))))
3418
3419 (define-public perl-import-into
3420 (package
3421 (name "perl-import-into")
3422 (version "1.002004")
3423 (source
3424 (origin
3425 (method url-fetch)
3426 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3427 "Import-Into-" version ".tar.gz"))
3428 (sha256
3429 (base32
3430 "110hifk3cj14lxgjq2vaa2qfja21gll4lpn8vbimy0gzqadjbjyy"))))
3431 (build-system perl-build-system)
3432 (propagated-inputs
3433 `(("perl-module-runtime" ,perl-module-runtime)))
3434 (home-page "http://search.cpan.org/dist/Import-Into")
3435 (synopsis "Import packages into other packages")
3436 (description "Writing exporters is a pain. Some use Exporter, some use
3437 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
3438 some things are pragmas. Exporting on someone else's behalf is harder. The
3439 exporters don't provide a consistent API for this, and pragmas need to have
3440 their import method called directly, since they effect the current unit of
3441 compilation. Import::Into provides global methods to make this painless.")
3442 (license (package-license perl))))
3443
3444 (define-public perl-inc-latest
3445 (package
3446 (name "perl-inc-latest")
3447 (version "0.500")
3448 (source
3449 (origin
3450 (method url-fetch)
3451 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3452 "inc-latest-" version ".tar.gz"))
3453 (sha256
3454 (base32
3455 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
3456 (build-system perl-build-system)
3457 (home-page "http://search.cpan.org/dist/inc-latest")
3458 (synopsis "Use modules in inc/ if newer than installed")
3459 (description "The inc::latest module helps bootstrap configure-time
3460 dependencies for CPAN distributions. These dependencies get bundled into the
3461 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
3462 (license asl2.0)))
3463
3464 (define-public perl-io-captureoutput
3465 (package
3466 (name "perl-io-captureoutput")
3467 (version "1.1104")
3468 (source
3469 (origin
3470 (method url-fetch)
3471 (uri (string-append
3472 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
3473 version
3474 ".tar.gz"))
3475 (sha256
3476 (base32
3477 "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
3478 (build-system perl-build-system)
3479 (home-page "http://search.cpan.org/dist/IO-CaptureOutput")
3480 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
3481 (description "@code{IO::CaptureOutput} provides routines for capturing
3482 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
3483 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
3484
3485 This module is no longer recommended by its maintainer. Users are advised to
3486 try @code{Capture::Tiny} instead.")
3487 (license (package-license perl))))
3488
3489 (define-public perl-io-interactive
3490 (package
3491 (name "perl-io-interactive")
3492 (version "0.0.6")
3493 (source
3494 (origin
3495 (method url-fetch)
3496 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
3497 "IO-Interactive-" version ".tar.gz"))
3498 (sha256
3499 (base32
3500 "1303q6rbcf2cag5z08pq3d1y91wls5q51jrpw4kh0l2bv75idh4w"))))
3501 (build-system perl-build-system)
3502 (home-page "http://search.cpan.org/dist/IO-Interactive")
3503 (synopsis "Utilities for interactive I/O")
3504 (description "This module provides three utility subroutines that make it
3505 easier to develop interactive applications: is_interactive(), interactive(),
3506 and busy().")
3507 (license (package-license perl))))
3508
3509 (define-public perl-io-string
3510 (package
3511 (name "perl-io-string")
3512 (version "1.08")
3513 (source
3514 (origin
3515 (method url-fetch)
3516 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3517 "IO-String-" version ".tar.gz"))
3518 (sha256
3519 (base32
3520 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
3521 (build-system perl-build-system)
3522 (home-page "http://search.cpan.org/~gaas/IO-String-1.08/")
3523 (synopsis "Emulate file interface for in-core strings")
3524 (description "IO::String is an IO::File (and IO::Handle) compatible class
3525 that reads or writes data from in-core strings.")
3526 (license (package-license perl))))
3527
3528 (define-public perl-io-stringy
3529 (package
3530 (name "perl-io-stringy")
3531 (version "2.110")
3532 (source
3533 (origin
3534 (method url-fetch)
3535 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
3536 "IO-stringy-" version ".tar.gz"))
3537 (sha256
3538 (base32
3539 "1vh4n0k22hx20rwvf6h7lp25wb7spg0089shrf92d2lkncwg8g3y"))))
3540 (build-system perl-build-system)
3541 (home-page "http://search.cpan.org/dist/IO-stringy")
3542 (synopsis "IO:: interface for reading/writing an array of lines")
3543 (description "This toolkit primarily provides modules for performing both
3544 traditional and object-oriented i/o) on things *other* than normal
3545 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
3546 (license (package-license perl))))
3547
3548 (define-public perl-io-tty
3549 (package
3550 (name "perl-io-tty")
3551 (version "1.11")
3552 (source (origin
3553 (method url-fetch)
3554 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
3555 version ".tar.gz"))
3556 (sha256
3557 (base32
3558 "0lgd9xcbi4gf4gw1ka6fj94my3w1f3k1zamb4pfln0qxz45zlxx4"))))
3559 (build-system perl-build-system)
3560 (home-page "http://search.cpan.org/~toddr/IO-Tty/")
3561 (synopsis "Perl interface to pseudo ttys")
3562 (description
3563 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
3564 pseudo ttys.")
3565 (license (package-license perl))))
3566
3567 (define-public perl-ipc-cmd
3568 (package
3569 (name "perl-ipc-cmd")
3570 (version "0.96")
3571 (source
3572 (origin
3573 (method url-fetch)
3574 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
3575 version ".tar.gz"))
3576 (sha256
3577 (base32
3578 "0a2v44x70gj9fd5wa8i08f9z6n14qppj1j49m1hc333wh72mzk6i"))))
3579 (build-system perl-build-system)
3580 (home-page "http://search.cpan.org/dist/IPC-Cmd")
3581 (synopsis "Run interactive command-line programs")
3582 (description "@code{IPC::Cmd} allows for the searching and execution of
3583 any binary on your system. It adheres to verbosity settings and is able to
3584 run interactively. It also has an option to capture output/error buffers.")
3585 (license (package-license perl))))
3586
3587 (define-public perl-ipc-run
3588 (package
3589 (name "perl-ipc-run")
3590 (version "0.94")
3591 (source
3592 (origin
3593 (method url-fetch)
3594 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
3595 "IPC-Run-" version ".tar.gz"))
3596 (sha256
3597 (base32
3598 "0nv0lpw31zaz6vi42q7ihjj3j382j4njicp5k0gsczib3b4kdcrf"))))
3599 (build-system perl-build-system)
3600 (propagated-inputs
3601 `(("perl-io-tty" ,perl-io-tty)))
3602 (arguments
3603 `(#:phases (modify-phases %standard-phases
3604 (add-before
3605 'check 'disable-w32-test
3606 (lambda _
3607 ;; This test fails, and we're not really interested in
3608 ;; it, so disable it.
3609 (delete-file "t/win32_compile.t"))))))
3610 (home-page "http://search.cpan.org/dist/IPC-Run")
3611 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
3612 (description "IPC::Run allows you run and interact with child processes
3613 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
3614 are supported and may be mixed. Likewise, functional and OO API styles are
3615 both supported and may be mixed.")
3616 (license (package-license perl))))
3617
3618 (define-public perl-ipc-run3
3619 (package
3620 (name "perl-ipc-run3")
3621 (version "0.048")
3622 (source (origin
3623 (method url-fetch)
3624 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3625 "IPC-Run3-" version ".tar.gz"))
3626 (sha256
3627 (base32
3628 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
3629 (build-system perl-build-system)
3630 (synopsis "Run a subprocess with input/output redirection")
3631 (description
3632 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
3633 stdout, and/or stderr to files and perl data structures. It aims to satisfy
3634 99% of the need for using system, qx, and open3 with a simple, extremely
3635 Perlish API and none of the bloat and rarely used features of IPC::Run.")
3636 (home-page (string-append "http://search.cpan.org/~rjbs/"
3637 "IPC-Run3-" version))
3638 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
3639 ;; licenses, any version."
3640 (license (list bsd-3 gpl3+))))
3641
3642 (define-public perl-ipc-sharelite
3643 (package
3644 (name "perl-ipc-sharelite")
3645 (version "0.17")
3646 (source
3647 (origin
3648 (method url-fetch)
3649 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
3650 "IPC-ShareLite-" version ".tar.gz"))
3651 (sha256
3652 (base32
3653 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
3654 (build-system perl-build-system)
3655 (home-page "http://search.cpan.org/dist/IPC-ShareLite")
3656 (synopsis "Lightweight interface to shared memory")
3657 (description "IPC::ShareLite provides a simple interface to shared memory,
3658 allowing data to be efficiently communicated between processes.")
3659 (license (package-license perl))))
3660
3661 (define-public perl-ipc-system-simple
3662 (package
3663 (name "perl-ipc-system-simple")
3664 (version "1.25")
3665 (source (origin
3666 (method url-fetch)
3667 (uri (string-append
3668 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
3669 version ".tar.gz"))
3670 (sha256
3671 (base32
3672 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
3673 (build-system perl-build-system)
3674 (home-page "http://search.cpan.org/dist/IPC-System-Simple")
3675 (synopsis "Run commands simply, with detailed diagnostics")
3676 (description "Calling Perl's in-built @code{system} function is easy,
3677 determining if it was successful is hard. Let's face it, @code{$?} isn't the
3678 nicest variable in the world to play with, and even if you do check it,
3679 producing a well-formatted error string takes a lot of work.
3680
3681 @code{IPC::System::Simple} takes the hard work out of calling external
3682 commands.")
3683 (license (package-license perl))))
3684
3685 (define-public perl-json
3686 (package
3687 (name "perl-json")
3688 (version "2.90")
3689 (source
3690 (origin
3691 (method url-fetch)
3692 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
3693 "JSON-" version ".tar.gz"))
3694 (sha256
3695 (base32
3696 "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
3697 (build-system perl-build-system)
3698 (propagated-inputs
3699 `(("perl-json-xs" ,perl-json-xs))) ;recommended
3700 (home-page "http://search.cpan.org/dist/JSON")
3701 (synopsis "JSON encoder/decoder for Perl")
3702 (description "This module converts Perl data structures to JSON and vice
3703 versa using either JSON::XS or JSON::PP.")
3704 (license (package-license perl))))
3705
3706 (define-public perl-json-any
3707 (package
3708 (name "perl-json-any")
3709 (version "1.38")
3710 (source
3711 (origin
3712 (method url-fetch)
3713 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3714 "JSON-Any-" version ".tar.gz"))
3715 (sha256
3716 (base32
3717 "0mk6shg82i7y852bvj5d0qqma1d9k0jh10k4mg62hbgr800gb2m4"))))
3718 (build-system perl-build-system)
3719 (native-inputs
3720 `(("perl-test-fatal" ,perl-test-fatal)
3721 ("perl-test-requires" ,perl-test-requires)
3722 ("perl-test-warnings" ,perl-test-warnings)
3723 ("perl-test-without-module" ,perl-test-without-module)))
3724 (propagated-inputs
3725 `(("perl-namespace-clean" ,perl-namespace-clean)))
3726 (home-page "http://search.cpan.org/dist/JSON-Any")
3727 (synopsis "Wrapper for Perl JSON classes")
3728 (description
3729 "This module tries to provide a coherent API to bring together the
3730 various JSON modules currently on CPAN. This module will allow you to code to
3731 any JSON API and have it work regardless of which JSON module is actually
3732 installed.")
3733 (license (package-license perl))))
3734
3735 (define-public perl-json-maybexs
3736 (package
3737 (name "perl-json-maybexs")
3738 (version "1.003003")
3739 (source
3740 (origin
3741 (method url-fetch)
3742 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3743 "JSON-MaybeXS-" version ".tar.gz"))
3744 (sha256
3745 (base32
3746 "0q21wzz87drrvblxcm2py8fcvkzwx1hxzfybynz8ln7wv66vbx3f"))))
3747 (build-system perl-build-system)
3748 (native-inputs
3749 `(("perl-test-without-module" ,perl-test-without-module)))
3750 (inputs
3751 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
3752 (home-page "http://search.cpan.org/dist/JSON-MaybeXS")
3753 (synopsis "Cpanel::JSON::XS with fallback")
3754 (description "This module first checks to see if either Cpanel::JSON::XS
3755 or JSON::XS is already loaded, in which case it uses that module. Otherwise
3756 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
3757 either uses the first module it finds or throws an error.")
3758 (license (package-license perl))))
3759
3760 (define-public perl-json-xs
3761 (package
3762 (name "perl-json-xs")
3763 (version "3.01")
3764 (source
3765 (origin
3766 (method url-fetch)
3767 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
3768 "JSON-XS-" version ".tar.gz"))
3769 (sha256
3770 (base32
3771 "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
3772 (build-system perl-build-system)
3773 (propagated-inputs
3774 `(("perl-common-sense" ,perl-common-sense)
3775 ("perl-types-serialiser" ,perl-types-serialiser)))
3776 (home-page "http://search.cpan.org/dist/JSON-XS")
3777 (synopsis "JSON serialising/deserialising for Perl")
3778 (description "This module converts Perl data structures to JSON and vice
3779 versa.")
3780 (license (package-license perl))))
3781
3782 (define-public perl-log-any
3783 (package
3784 (name "perl-log-any")
3785 (version "1.040")
3786 (source
3787 (origin
3788 (method url-fetch)
3789 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
3790 version ".tar.gz"))
3791 (sha256
3792 (base32
3793 "0r1q7cclgwl24gzdnjzvd8y0r7j17dngjk492x35w198zhdj2ncp"))))
3794 (build-system perl-build-system)
3795 (home-page "http://search.cpan.org/dist/Log-Any")
3796 (synopsis "Bringing loggers and listeners together")
3797 (description "@code{Log::Any} provides a standard log production API for
3798 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
3799 for log consumption, whether screen, file or another logging mechanism like
3800 @code{Log::Dispatch} or @code{Log::Log4perl}.
3801
3802 A CPAN module uses @code{Log::Any} to get a log producer object. An
3803 application, in turn, may choose one or more logging mechanisms via
3804 @code{Log::Any::Adapter}, or none at all.
3805
3806 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
3807 itself, which makes it appropriate for even small CPAN modules to use. It
3808 defaults to 'null' logging activity, so a module can safely log without
3809 worrying about whether the application has chosen (or will ever choose) a
3810 logging mechanism.")
3811 (license (package-license perl))))
3812
3813 (define-public perl-log-any-adapter-log4perl
3814 (package
3815 (name "perl-log-any-adapter-log4perl")
3816 (version "0.08")
3817 (source
3818 (origin
3819 (method url-fetch)
3820 (uri (string-append
3821 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-Adapter-Log4perl-"
3822 version
3823 ".tar.gz"))
3824 (sha256
3825 (base32
3826 "0xf4fnrsznvg0hf36q481124ja1hp3lybki1xjgnk82z9990jmxn"))))
3827 (build-system perl-build-system)
3828 (propagated-inputs
3829 `(("perl-log-any" ,perl-log-any)
3830 ("perl-log-log4perl" ,perl-log-log4perl)))
3831 (home-page
3832 "http://search.cpan.org/dist/Log-Any-Adapter-Log4perl")
3833 (synopsis "Log::Any adapter for Log::Log4perl")
3834 (description "@code{Log::Any::Adapter::Log4perl} provides a
3835 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
3836 (license (package-license perl))))
3837
3838 (define-public perl-log-log4perl
3839 (package
3840 (name "perl-log-log4perl")
3841 (version "1.47")
3842 (source
3843 (origin
3844 (method url-fetch)
3845 (uri (string-append
3846 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
3847 version
3848 ".tar.gz"))
3849 (sha256
3850 (base32
3851 "0vxraq9navx5mgf8y8g6l5rbl3dv2ml8bishka5m69hj07nxs0ch"))))
3852 (build-system perl-build-system)
3853 (home-page
3854 "http://search.cpan.org/dist/Log-Log4perl")
3855 (synopsis "Log4j implementation for Perl")
3856 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
3857 the logging behaviour of your system from the outside. It implements the
3858 widely popular (Java-based) Log4j logging package in pure Perl.")
3859 (license (package-license perl))))
3860
3861 (define-public perl-log-report-optional
3862 (package
3863 (name "perl-log-report-optional")
3864 (version "1.01")
3865 (source (origin
3866 (method url-fetch)
3867 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
3868 "Log-Report-Optional-" version ".tar.gz"))
3869 (sha256
3870 (base32
3871 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
3872 (build-system perl-build-system)
3873 (propagated-inputs
3874 `(("perl-string-print" ,perl-string-print)))
3875 (home-page "http://search.cpan.org/dist/Log-Report-Optional")
3876 (synopsis "Log::Report in the lightest form")
3877 (description
3878 "This module allows libraries to have a dependency to a small module
3879 instead of the full Log-Report distribution. The full power of
3880 @code{Log::Report} is only released when the main program uses that module.
3881 In that case, the module using the 'Optional' will also use the full
3882 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
3883 version.")
3884 (license (package-license perl))))
3885
3886 (define-public perl-log-report
3887 (package
3888 (name "perl-log-report")
3889 (version "1.10")
3890 (source (origin
3891 (method url-fetch)
3892 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
3893 "Log-Report-" version ".tar.gz"))
3894 (sha256
3895 (base32
3896 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
3897 (build-system perl-build-system)
3898 (propagated-inputs
3899 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
3900 ("perl-log-report-optional" ,perl-log-report-optional)
3901 ("perl-string-print" ,perl-string-print)))
3902 (home-page "http://search.cpan.org/dist/Log-Report")
3903 (synopsis "Get messages to users and logs")
3904 (description
3905 "@code{Log::Report} combines three tasks which are closely related in
3906 one: logging, exceptions, and translations.")
3907 (license (package-license perl))))
3908
3909 (define-public perl-lingua-translit
3910 (package
3911 (name "perl-lingua-translit")
3912 (version "0.26")
3913 (source
3914 (origin
3915 (method url-fetch)
3916 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
3917 "Lingua-Translit-" version ".tar.gz"))
3918 (sha256
3919 (base32
3920 "161589h08kzliga17i2g0hb0yn4cjmb8rdiyadq5bw97974bac14"))))
3921 (build-system perl-build-system)
3922 (home-page "http://search.cpan.org/dist/Lingua-Translit")
3923 (synopsis "Transliterate text between writing systems")
3924 (description "@code{Lingua::Translit} can be used to convert text from one
3925 writing system to another, based on national or international transliteration
3926 tables. Where possible a reverse transliteration is supported.")
3927 (license (package-license perl))))
3928
3929 (define-public perl-list-allutils
3930 (package
3931 (name "perl-list-allutils")
3932 (version "0.09")
3933 (source
3934 (origin
3935 (method url-fetch)
3936 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3937 "List-AllUtils-" version ".tar.gz"))
3938 (sha256
3939 (base32
3940 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
3941 (build-system perl-build-system)
3942 (native-inputs
3943 `(("perl-test-warnings" ,perl-test-warnings)))
3944 (propagated-inputs
3945 `(("perl-list-moreutils" ,perl-list-moreutils)
3946 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
3947 (home-page "http://search.cpan.org/dist/List-AllUtils")
3948 (synopsis "Combination of List::Util and List::MoreUtils")
3949 (description "This module exports all of the functions that either
3950 List::Util or List::MoreUtils defines, with preference to List::Util.")
3951 (license (package-license perl))))
3952
3953 (define-public perl-list-compare
3954 (package
3955 (name "perl-list-compare")
3956 (version "0.53")
3957 (source
3958 (origin
3959 (method url-fetch)
3960 (uri (string-append
3961 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
3962 version
3963 ".tar.gz"))
3964 (sha256
3965 (base32
3966 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
3967 (build-system perl-build-system)
3968 (native-inputs
3969 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
3970 (home-page "http://search.cpan.org/dist/List-Compare")
3971 (synopsis "Compare elements of two or more lists")
3972 (description "@code{List::Compare} provides a module to perform
3973 comparative operations on two or more lists. Provided operations include
3974 intersections, unions, unique elements, complements and many more.")
3975 (license (package-license perl))))
3976
3977 (define-public perl-list-moreutils
3978 (package
3979 (name "perl-list-moreutils")
3980 (version "0.402")
3981 (source
3982 (origin
3983 (method url-fetch)
3984 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3985 "List-MoreUtils-" version ".tar.gz"))
3986 (sha256
3987 (base32
3988 "1i0k7kqg1m9nf2xvq9l4lyf38fxvi9952vmmvhcdaf3qa95pxb24"))))
3989 (build-system perl-build-system)
3990 (native-inputs
3991 `(("perl-config-autoconf" ,perl-config-autoconf)
3992 ("perl-inc-latest" ,perl-inc-latest)
3993 ("perl-test-writevariants" ,perl-test-writevariants)))
3994 (propagated-inputs
3995 `(("perl-exporter-tiny" ,perl-exporter-tiny)))
3996 (home-page "http://search.cpan.org/dist/List-MoreUtils")
3997 (synopsis "Provide the stuff missing in List::Util")
3998 (description "List::MoreUtils provides some trivial but commonly needed
3999 functionality on lists which is not going to go into List::Util.")
4000 (license (package-license perl))))
4001
4002 (define-public perl-list-someutils
4003 (package
4004 (name "perl-list-someutils")
4005 (version "0.52")
4006 (source
4007 (origin
4008 (method url-fetch)
4009 (uri (string-append
4010 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
4011 version
4012 ".tar.gz"))
4013 (sha256
4014 (base32
4015 "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
4016 (build-system perl-build-system)
4017 (native-inputs
4018 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
4019 (inputs
4020 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4021 ("perl-module-implementation"
4022 ,perl-module-implementation)))
4023 (home-page "http://search.cpan.org/dist/List-SomeUtils")
4024 (synopsis "Provide the stuff missing in List::Util")
4025 (description "@code{List::SomeUtils} provides some trivial but commonly
4026 needed functionality on lists which is not going to go into @code{List::Util}.
4027
4028 All of the below functions are implementable in only a couple of lines of Perl
4029 code. Using the functions from this module however should give slightly
4030 better performance as everything is implemented in C. The pure-Perl
4031 implementation of these functions only serves as a fallback in case the C
4032 portions of this module couldn't be compiled on this machine.")
4033 (license (package-license perl))))
4034
4035 (define-public perl-memoize-expirelru
4036 (package
4037 (name "perl-memoize-expirelru")
4038 (version "0.55")
4039 (source
4040 (origin
4041 (method url-fetch)
4042 (uri (string-append "mirror://cpan/authors/id/B/BP/BPOWERS/"
4043 "Memoize-ExpireLRU-" version ".tar.gz"))
4044 (sha256
4045 (base32
4046 "0klk0vj78lr259mnv1rbxib8gzf2cfp4zhkhbcxyhadkkl73myvj"))))
4047 (build-system perl-build-system)
4048 (home-page "http://search.cpan.org/dist/Memoize-ExpireLRU")
4049 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
4050 (description "This module implements an expiry policy for Memoize that
4051 follows LRU semantics, that is, the last n results, where n is specified as
4052 the argument to the CACHESIZE parameter, will be cached.")
4053 (license (package-license perl))))
4054
4055 (define-public perl-mime-charset
4056 (package
4057 (name "perl-mime-charset")
4058 (version "1.012")
4059 (source (origin
4060 (method url-fetch)
4061 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
4062 "MIME-Charset-" version ".tar.gz"))
4063 (sha256
4064 (base32
4065 "1kfc5p4g1x9c0ffhg125wvhravcviny3alwrgnhnrm2a33ad3rff"))))
4066 (build-system perl-build-system)
4067 (home-page "http://search.cpan.org/dist/MIME-Charset")
4068 (synopsis "Charset information for MIME messages")
4069 (description
4070 "@code{MIME::Charset} provides information about character sets used for
4071 MIME messages on Internet.")
4072 (license (package-license perl))))
4073
4074 (define-public perl-mime-types
4075 (package
4076 (name "perl-mime-types")
4077 (version "2.09")
4078 (source
4079 (origin
4080 (method url-fetch)
4081 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4082 "MIME-Types-" version ".tar.gz"))
4083 (sha256
4084 (base32
4085 "0s7s2z9xc1nc2l59rk80iaa04r36k0y95231212kz5p3ln7szk1c"))))
4086 (build-system perl-build-system)
4087 (home-page "http://search.cpan.org/dist/MIME-Types")
4088 (synopsis "Definition of MIME types")
4089 (description "This module provides a list of known mime-types, combined
4090 from various sources. For instance, it contains all IANA types and the
4091 knowledge of Apache.")
4092 (license (package-license perl))))
4093
4094 (define-public perl-mixin-linewise
4095 (package
4096 (name "perl-mixin-linewise")
4097 (version "0.108")
4098 (source (origin
4099 (method url-fetch)
4100 (uri (string-append
4101 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
4102 version ".tar.gz"))
4103 (sha256
4104 (base32
4105 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
4106 (build-system perl-build-system)
4107 (inputs
4108 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
4109 ("perl-sub-exporter" ,perl-sub-exporter)))
4110 (home-page "http://search.cpan.org/dist/Mixin-Linewise")
4111 (synopsis "Write your linewise code for handles; this does the rest")
4112 (description "It's boring to deal with opening files for IO, converting
4113 strings to handle-like objects, and all that. With
4114 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
4115 just write a method to handle handles, and methods for handling strings and
4116 file names are added for you.")
4117 (license (package-license perl))))
4118
4119 (define-public perl-modern-perl
4120 (package
4121 (name "perl-modern-perl")
4122 (version "1.20150127")
4123 (source
4124 (origin
4125 (method url-fetch)
4126 (uri (string-append
4127 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
4128 version
4129 ".tar.gz"))
4130 (sha256
4131 (base32
4132 "0iv2crfxl3xh6mq36g1gv9fr8iqq3kpbj8afxy5qi60hh7v3xhcl"))))
4133 (build-system perl-build-system)
4134 (native-inputs
4135 `(("perl-module-build" ,perl-module-build)))
4136 (home-page
4137 "http://search.cpan.org/dist/Modern-Perl")
4138 (synopsis
4139 "Enable all of the features of Modern Perl with one import")
4140 (description "@code{Modern::Perl} provides a simple way to enable
4141 multiple, by now, standard libraries in a Perl program.")
4142 (license (package-license perl))))
4143
4144 (define-public perl-module-build-tiny
4145 (package
4146 (name "perl-module-build-tiny")
4147 (version "0.039")
4148 (source
4149 (origin
4150 (method url-fetch)
4151 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4152 "Module-Build-Tiny-" version ".tar.gz"))
4153 (sha256
4154 (base32
4155 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
4156 (build-system perl-build-system)
4157 (native-inputs
4158 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
4159 ("perl-extutils-config" ,perl-extutils-config)
4160 ("perl-extutils-helpers" ,perl-extutils-helpers)
4161 ("perl-test-harness" ,perl-test-harness)))
4162 (propagated-inputs
4163 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
4164 ("perl-extutils-config" ,perl-extutils-config)
4165 ("perl-extutils-helpers" ,perl-extutils-helpers)
4166 ("perl-test-harness" ,perl-test-harness)))
4167 (home-page "http://search.cpan.org/dist/Module-Build-Tiny")
4168 (synopsis "Tiny replacement for Module::Build")
4169 (description "Many Perl distributions use a Build.PL file instead of a
4170 Makefile.PL file to drive distribution configuration, build, test and
4171 installation. Traditionally, Build.PL uses Module::Build as the underlying
4172 build system. This module provides a simple, lightweight, drop-in
4173 replacement. Whereas Module::Build has over 6,700 lines of code; this module
4174 has less than 120, yet supports the features needed by most distributions.")
4175 (license (package-license perl))))
4176
4177 (define-public perl-module-build-xsutil
4178 (package
4179 (name "perl-module-build-xsutil")
4180 (version "0.16")
4181 (source (origin
4182 (method url-fetch)
4183 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
4184 "Module-Build-XSUtil-" version ".tar.gz"))
4185 (sha256
4186 (base32
4187 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
4188 (build-system perl-build-system)
4189 (native-inputs
4190 `(("perl-capture-tiny" ,perl-capture-tiny)
4191 ("perl-cwd-guard" ,perl-cwd-guard)
4192 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
4193 ("perl-module-build" ,perl-module-build)))
4194 (propagated-inputs
4195 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
4196 (home-page "http://search.cpan.org/dist/Module-Build-XSUtil")
4197 (synopsis "Module::Build class for building XS modules")
4198 (description
4199 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
4200 for support building XS modules.
4201
4202 This is a list of a new parameters in the @code{Module::Build::new} method:
4203
4204 @enumerate
4205 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
4206 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
4207 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
4208 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
4209 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
4210 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
4211 @file{ppport.h}, and defines some portability stuff which are not supported by
4212 @file{ppport.h}.
4213
4214 It is ported from @code{Module::Install::XSUtil}.
4215 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
4216 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
4217 debug options.
4218 @end enumerate")
4219 (license (package-license perl))))
4220
4221 (define-public perl-module-find
4222 (package
4223 (name "perl-module-find")
4224 (version "0.12")
4225 (source
4226 (origin
4227 (method url-fetch)
4228 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
4229 "Module-Find-" version ".tar.gz"))
4230 (sha256
4231 (base32
4232 "1lc33jdv4pgmm7nkr9bff0lhwjhhw91kaf6iiy2n7i7mw8dfv47l"))))
4233 (build-system perl-build-system)
4234 (home-page "http://search.cpan.org/dist/Module-Find")
4235 (synopsis "Find and use installed modules in a (sub)category")
4236 (description "Module::Find lets you find and use modules in categories.
4237 This can be useful for auto-detecting driver or plugin modules. You can
4238 differentiate between looking in the category itself or in all
4239 subcategories.")
4240 (license (package-license perl))))
4241
4242 (define-public perl-module-implementation
4243 (package
4244 (name "perl-module-implementation")
4245 (version "0.09")
4246 (source
4247 (origin
4248 (method url-fetch)
4249 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4250 "Module-Implementation-" version ".tar.gz"))
4251 (sha256
4252 (base32
4253 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
4254 (build-system perl-build-system)
4255 (native-inputs
4256 `(("perl-test-fatal" ,perl-test-fatal)
4257 ("perl-test-requires" ,perl-test-requires)))
4258 (propagated-inputs
4259 `(("perl-module-runtime" ,perl-module-runtime)
4260 ("perl-try-tiny" ,perl-try-tiny)))
4261 (home-page "http://search.cpan.org/dist/Module-Implementation")
4262 (synopsis "Loads alternate underlying implementations for a module")
4263 (description "This module abstracts out the process of choosing one of
4264 several underlying implementations for a module. This can be used to provide
4265 XS and pure Perl implementations of a module, or it could be used to load an
4266 implementation for a given OS or any other case of needing to provide multiple
4267 implementations.")
4268 (license artistic2.0)))
4269
4270 (define-public perl-module-install
4271 (package
4272 (name "perl-module-install")
4273 (version "1.14")
4274 (source
4275 (origin
4276 (method url-fetch)
4277 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/"
4278 "Module-Install-" version ".tar.gz"))
4279 (sha256
4280 (base32
4281 "0j8dz87k60i1khd9xadd8kl6bgm9s5s5zl86rzsz5bq36siz00iz"))))
4282 (build-system perl-build-system)
4283 (native-inputs
4284 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
4285 (propagated-inputs
4286 `(("perl-archive-zip" ,perl-archive-zip)
4287 ("perl-file-homedir" ,perl-file-homedir)
4288 ("perl-file-remove" ,perl-file-remove)
4289 ("perl-json" ,perl-json)
4290 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
4291 ;; would cause a circular dependency with (gnu packages web), so we
4292 ;; leave it out. It may be resolved at runtime, however.
4293 ;("perl-libwww-perl" ,perl-libwww-perl)
4294 ("perl-module-scandeps" ,perl-module-scandeps)
4295 ("perl-par-dist" ,perl-par-dist)
4296 ("perl-yaml-tiny" ,perl-yaml-tiny)))
4297 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
4298 ;; character handling.
4299 (arguments `(#:tests? #f))
4300 (home-page "http://search.cpan.org/dist/Module-Install")
4301 (synopsis "Standalone, extensible Perl module installer")
4302 (description "Module::Install is a package for writing installers for
4303 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
4304 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
4305 installation version 5.005 or newer.")
4306 (license (package-license perl))))
4307
4308 (define-public perl-module-pluggable
4309 (package
4310 (name "perl-module-pluggable")
4311 (version "5.2")
4312 (source
4313 (origin
4314 (method url-fetch)
4315 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
4316 "Module-Pluggable-" version ".tar.gz"))
4317 (sha256
4318 (base32
4319 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
4320 (patches (search-patches "perl-module-pluggable-search.patch"))))
4321 (build-system perl-build-system)
4322 (home-page "http://search.cpan.org/dist/Module-Pluggable")
4323 (synopsis "Give your Perl module the ability to have plugins")
4324 (description "This module provides a simple but extensible way of having
4325 'plugins' for your Perl module.")
4326 (license (package-license perl))))
4327
4328 (define-public perl-module-runtime
4329 (package
4330 (name "perl-module-runtime")
4331 (version "0.014")
4332 (source
4333 (origin
4334 (method url-fetch)
4335 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
4336 "Module-Runtime-" version ".tar.gz"))
4337 (sha256
4338 (base32
4339 "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
4340 (build-system perl-build-system)
4341 (native-inputs `(("perl-module-build" ,perl-module-build)))
4342 (home-page "http://search.cpan.org/dist/Module-Runtime")
4343 (synopsis "Perl runtime module handling")
4344 (description "The functions exported by this module deal with runtime
4345 handling of Perl modules, which are normally handled at compile time.")
4346 (license (package-license perl))))
4347
4348 (define-public perl-module-runtime-conflicts
4349 (package
4350 (name "perl-module-runtime-conflicts")
4351 (version "0.003")
4352 (source
4353 (origin
4354 (method url-fetch)
4355 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4356 "Module-Runtime-Conflicts-" version ".tar.gz"))
4357 (sha256
4358 (base32
4359 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
4360 (build-system perl-build-system)
4361 (native-inputs
4362 `(("perl-module-build" ,perl-module-build)))
4363 (propagated-inputs
4364 `(("perl-module-runtime" ,perl-module-runtime)
4365 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
4366 (home-page "http://search.cpan.org/dist/Module-Runtime-Conflicts")
4367 (synopsis "Provide information on conflicts for Module::Runtime")
4368 (description "This module provides conflicts checking for Module::Runtime,
4369 which had a recent release that broke some versions of Moose. It is called
4370 from Moose::Conflicts and moose-outdated.")
4371 (license (package-license perl))))
4372
4373 (define-public perl-module-scandeps
4374 (package
4375 (name "perl-module-scandeps")
4376 (version "1.18")
4377 (source
4378 (origin
4379 (method url-fetch)
4380 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
4381 "Module-ScanDeps-" version ".tar.gz"))
4382 (sha256
4383 (base32
4384 "17mbyqwd8c20nqw01hjshl524vkw8pq6y2lwndmw36xkqr945npz"))))
4385 (build-system perl-build-system)
4386 (native-inputs
4387 `(("perl-test-requires" ,perl-test-requires)))
4388 (home-page "http://search.cpan.org/dist/Module-ScanDeps")
4389 (synopsis "Recursively scan Perl code for dependencies")
4390 (description "Module::ScanDeps is a module to recursively scan Perl
4391 programs for dependencies.")
4392 (license (package-license perl))))
4393
4394 (define-public perl-module-util
4395 (package
4396 (name "perl-module-util")
4397 (version "1.09")
4398 (source
4399 (origin
4400 (method url-fetch)
4401 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
4402 "Module-Util-" version ".tar.gz"))
4403 (sha256
4404 (base32
4405 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
4406 (build-system perl-build-system)
4407 (native-inputs
4408 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
4409 (home-page "http://search.cpan.org/dist/Module-Util")
4410 (synopsis "Module name tools and transformations")
4411 (description "This module provides a few useful functions for manipulating
4412 module names. Its main aim is to centralise some of the functions commonly
4413 used by modules that manipulate other modules in some way, like converting
4414 module names to relative paths.")
4415 (license (package-license perl))))
4416
4417 (define-public perl-moo
4418 (package
4419 (name "perl-moo")
4420 (version "1.007000")
4421 (source
4422 (origin
4423 (method url-fetch)
4424 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4425 "Moo-" version ".tar.gz"))
4426 (sha256
4427 (base32
4428 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
4429 (build-system perl-build-system)
4430 (native-inputs
4431 `(("perl-test-fatal" ,perl-test-fatal)))
4432 (propagated-inputs
4433 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
4434 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
4435 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4436 ("perl-import-into" ,perl-import-into)
4437 ("perl-module-runtime" ,perl-module-runtime)
4438 ("perl-role-tiny" ,perl-role-tiny)
4439 ("perl-strictures" ,perl-strictures)))
4440 (home-page "http://search.cpan.org/dist/Moo")
4441 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
4442 (description "Moo is an extremely light-weight Object Orientation system.
4443 It allows one to concisely define objects and roles with a convenient syntax
4444 that avoids the details of Perl's object system. Moo contains a subset of
4445 Moose and is optimised for rapid startup.")
4446 (license (package-license perl))))
4447
4448 (define-public perl-moose
4449 (package
4450 (name "perl-moose")
4451 (version "2.2004")
4452 (source (origin
4453 (method url-fetch)
4454 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4455 "Moose-" version ".tar.gz"))
4456 (sha256
4457 (base32
4458 "1c6jx2lnrh2mi9wlj2c0sirj6345xmbpr34ax8d85mcginzq3j74"))))
4459 (build-system perl-build-system)
4460 (native-inputs
4461 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4462 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4463 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
4464 ("perl-test-fatal" ,perl-test-fatal)
4465 ("perl-test-requires" ,perl-test-requires)
4466 ("perl-test-warnings" ,perl-test-warnings)))
4467 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
4468 ;; # === Other Modules ===
4469 ;; #
4470 ;; # Module Want Have
4471 ;; # ---------------------------- ---- -------
4472 ;; # Algorithm::C3 any missing
4473 ;; # DBM::Deep any missing
4474 ;; # DateTime any missing
4475 ;; # DateTime::Calendar::Mayan any missing
4476 ;; # DateTime::Format::MySQL any missing
4477 ;; # Declare::Constraints::Simple any missing
4478 ;; # Dist::CheckConflicts any 0.11
4479 ;; # HTTP::Headers any missing
4480 ;; # IO::File any 1.16
4481 ;; # IO::String any missing
4482 ;; # Locale::US any missing
4483 ;; # Module::Refresh any missing
4484 ;; # MooseX::NonMoose any missing
4485 ;; # Params::Coerce any missing
4486 ;; # Regexp::Common any missing
4487 ;; # SUPER any missing
4488 ;; # Test::Deep any missing
4489 ;; # Test::DependentModules any missing
4490 ;; # Test::LeakTrace any missing
4491 ;; # Test::Output any missing
4492 ;; # URI any missing
4493 (propagated-inputs
4494 `(("perl-class-load" ,perl-class-load)
4495 ("perl-class-load-xs" ,perl-class-load-xs)
4496 ("perl-data-optlist" ,perl-data-optlist)
4497 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4498 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
4499 ("perl-devel-partialdump" ,perl-devel-partialdump)
4500 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
4501 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4502 ("perl-eval-closure" ,perl-eval-closure)
4503 ("perl-list-moreutils" ,perl-list-moreutils)
4504 ("perl-module-runtime" ,perl-module-runtime)
4505 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
4506 ("perl-mro-compat" ,perl-mro-compat)
4507 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
4508 ("perl-package-stash" ,perl-package-stash)
4509 ("perl-package-stash-xs" ,perl-package-stash-xs)
4510 ("perl-params-util" ,perl-params-util)
4511 ("perl-parent" ,perl-parent)
4512 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
4513 ("perl-sub-exporter" ,perl-sub-exporter)
4514 ("perl-sub-name" ,perl-sub-name)
4515 ("perl-task-weaken" ,perl-task-weaken)
4516 ("perl-try-tiny" ,perl-try-tiny)))
4517 (home-page "http://search.cpan.org/dist/Moose")
4518 (synopsis "Postmodern object system for Perl 5")
4519 (description
4520 "Moose is a complete object system for Perl 5. It provides keywords for
4521 attribute declaration, object construction, inheritance, and maybe more. With
4522 Moose, you define your class declaratively, without needing to know about
4523 blessed hashrefs, accessor methods, and so on. You can concentrate on the
4524 logical structure of your classes, focusing on \"what\" rather than \"how\".
4525 A class definition with Moose reads like a list of very concise English
4526 sentences.")
4527 (license (package-license perl))))
4528
4529 (define-public perl-moosex-emulate-class-accessor-fast
4530 (package
4531 (name "perl-moosex-emulate-class-accessor-fast")
4532 (version "0.00903")
4533 (source
4534 (origin
4535 (method url-fetch)
4536 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
4537 "MooseX-Emulate-Class-Accessor-Fast-"
4538 version ".tar.gz"))
4539 (sha256
4540 (base32
4541 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
4542 (build-system perl-build-system)
4543 (native-inputs
4544 `(("perl-test-exception" ,perl-test-exception)))
4545 (propagated-inputs
4546 `(("perl-moose" ,perl-moose)))
4547 (home-page "http://search.cpan.org/dist/MooseX-Emulate-Class-Accessor-Fast")
4548 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
4549 (description "This module attempts to emulate the behavior of
4550 Class::Accessor::Fast as accurately as possible using the Moose attribute
4551 system. The public API of Class::Accessor::Fast is wholly supported, but the
4552 private methods are not.")
4553 (license (package-license perl))))
4554
4555 (define-public perl-moosex-getopt
4556 (package
4557 (name "perl-moosex-getopt")
4558 (version "0.65")
4559 (source
4560 (origin
4561 (method url-fetch)
4562 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4563 "MooseX-Getopt-" version ".tar.gz"))
4564 (sha256
4565 (base32
4566 "1nkzvbsiwldmpn6207ns7rinh860djnw098h6cnvywf429rjnz60"))))
4567 (build-system perl-build-system)
4568 (native-inputs
4569 `(("perl-module-build" ,perl-module-build)
4570 ("perl-test-deep" ,perl-test-deep)
4571 ("perl-test-fatal" ,perl-test-fatal)
4572 ("perl-test-requires" ,perl-test-requires)
4573 ("perl-test-trap" ,perl-test-trap)
4574 ("perl-test-warnings" ,perl-test-warnings)))
4575 (propagated-inputs
4576 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
4577 ("perl-moose" ,perl-moose)
4578 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
4579 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4580 (home-page "http://search.cpan.org/dist/MooseX-Getopt")
4581 (synopsis "Moose role for processing command line options")
4582 (description "This is a Moose role which provides an alternate constructor
4583 for creating objects using parameters passed in from the command line.")
4584 (license (package-license perl))))
4585
4586 (define-public perl-moosex-markasmethods
4587 (package
4588 (name "perl-moosex-markasmethods")
4589 (version "0.15")
4590 (source
4591 (origin
4592 (method url-fetch)
4593 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
4594 "MooseX-MarkAsMethods-" version ".tar.gz"))
4595 (sha256
4596 (base32
4597 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
4598 (build-system perl-build-system)
4599 (inputs
4600 `(("perl-moose" ,perl-moose)
4601 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4602 (home-page "http://search.cpan.org/dist/MooseX-MarkAsMethods")
4603 (synopsis "Mark overload code symbols as methods")
4604 (description "MooseX::MarkAsMethods allows one to easily mark certain
4605 functions as Moose methods. This will allow other packages such as
4606 namespace::autoclean to operate without blowing away your overloads. After
4607 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
4608 being methods, and class extension as well as composition from roles with
4609 overloads will \"just work\".")
4610 (license lgpl2.1)))
4611
4612 (define-public perl-moosex-methodattributes
4613 (package
4614 (name "perl-moosex-methodattributes")
4615 (version "0.29")
4616 (source
4617 (origin
4618 (method url-fetch)
4619 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4620 "MooseX-MethodAttributes-" version ".tar.gz"))
4621 (sha256
4622 (base32
4623 "1pz3i67gadfmgzj87m1xp2ilcg3yhppdylcng2h6c11dy0a06hdk"))))
4624 (build-system perl-build-system)
4625 (native-inputs
4626 `(("perl-module-build-tiny" ,perl-module-build-tiny)
4627 ("perl-test-fatal" ,perl-test-fatal)
4628 ("perl-test-requires" ,perl-test-requires)))
4629 (propagated-inputs
4630 `(("perl-moose" ,perl-moose)
4631 ("perl-moosex-types" ,perl-moosex-types)
4632 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4633 (home-page "http://search.cpan.org/dist/MooseX-MethodAttributes")
4634 (synopsis "Code attribute introspection")
4635 (description "This module allows code attributes of methods to be
4636 introspected using Moose meta method objects.")
4637 (license (package-license perl))))
4638
4639 (define-public perl-moosex-nonmoose
4640 (package
4641 (name "perl-moosex-nonmoose")
4642 (version "0.26")
4643 (source
4644 (origin
4645 (method url-fetch)
4646 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4647 "MooseX-NonMoose-" version ".tar.gz"))
4648 (sha256
4649 (base32
4650 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
4651 (build-system perl-build-system)
4652 (native-inputs
4653 `(("perl-moose" ,perl-moose)
4654 ("perl-test-fatal" ,perl-test-fatal)))
4655 (propagated-inputs
4656 `(("perl-list-moreutils" ,perl-list-moreutils)
4657 ("perl-module-runtime" ,perl-module-runtime)
4658 ("perl-moose" ,perl-moose)
4659 ("perl-try-tiny" ,perl-try-tiny)))
4660 (home-page "http://search.cpan.org/dist/MooseX-NonMoose")
4661 (synopsis "Subclassing of non-Moose classes")
4662 (description "MooseX::NonMoose allows for easily subclassing non-Moose
4663 classes with Moose, taking care of the details connected with doing this, such
4664 as setting up proper inheritance from Moose::Object and installing (and
4665 inlining, at make_immutable time) a constructor that makes sure things like
4666 BUILD methods are called. It tries to be as non-intrusive as possible.")
4667 (license (package-license perl))))
4668
4669 (define-public perl-moosex-params-validate
4670 (package
4671 (name "perl-moosex-params-validate")
4672 (version "0.19")
4673 (source
4674 (origin
4675 (method url-fetch)
4676 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4677 "MooseX-Params-Validate-" version ".tar.gz"))
4678 (sha256
4679 (base32
4680 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
4681 (build-system perl-build-system)
4682 (native-inputs
4683 `(("perl-moose" ,perl-moose)
4684 ("perl-test-fatal" ,perl-test-fatal)))
4685 (propagated-inputs
4686 `(("perl-devel-caller" ,perl-devel-caller)
4687 ("perl-moose" ,perl-moose)
4688 ("perl-params-validate" ,perl-params-validate)
4689 ("perl-sub-exporter" ,perl-sub-exporter)))
4690 (home-page "http://search.cpan.org/dist/MooseX-Params-Validate")
4691 (synopsis "Extension of Params::Validate using Moose's types")
4692 (description "This module fills a gap in Moose by adding method parameter
4693 validation to Moose.")
4694 (license (package-license perl))))
4695
4696 (define-public perl-moosex-relatedclassroles
4697 (package
4698 (name "perl-moosex-relatedclassroles")
4699 (version "0.004")
4700 (source
4701 (origin
4702 (method url-fetch)
4703 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
4704 "MooseX-RelatedClassRoles-" version ".tar.gz"))
4705 (sha256
4706 (base32
4707 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
4708 (build-system perl-build-system)
4709 (propagated-inputs
4710 `(("perl-moose" ,perl-moose)
4711 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
4712 (home-page "http://search.cpan.org/dist/MooseX-RelatedClassRoles")
4713 (synopsis "Apply roles to a related Perl class")
4714 (description "This module applies roles to make a subclass instead of
4715 manually setting up a subclass.")
4716 (license (package-license perl))))
4717
4718 (define-public perl-moosex-role-parameterized
4719 (package
4720 (name "perl-moosex-role-parameterized")
4721 (version "1.08")
4722 (source
4723 (origin
4724 (method url-fetch)
4725 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4726 "MooseX-Role-Parameterized-" version ".tar.gz"))
4727 (sha256
4728 (base32
4729 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
4730 (build-system perl-build-system)
4731 (native-inputs
4732 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4733 ("perl-module-build" ,perl-module-build)
4734 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
4735 ("perl-test-fatal" ,perl-test-fatal)
4736 ("perl-test-requires" ,perl-test-requires)))
4737 (propagated-inputs
4738 `(("perl-moose" ,perl-moose)
4739 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4740 (home-page "http://search.cpan.org/dist/MooseX-Role-Parameterized")
4741 (synopsis "Moose roles with composition parameters")
4742 (description "Because Moose roles serve many different masters, they
4743 usually provide only the least common denominator of functionality. To
4744 empower roles further, more configurability than -alias and -excludes is
4745 required. Perhaps your role needs to know which method to call when it is
4746 done processing, or what default value to use for its url attribute.
4747 Parameterized roles offer a solution to these (and other) kinds of problems.")
4748 (license (package-license perl))))
4749
4750 (define-public perl-moosex-role-withoverloading
4751 (package
4752 (name "perl-moosex-role-withoverloading")
4753 (version "0.16")
4754 (source
4755 (origin
4756 (method url-fetch)
4757 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4758 "MooseX-Role-WithOverloading-" version ".tar.gz"))
4759 (sha256
4760 (base32
4761 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
4762 (build-system perl-build-system)
4763 (propagated-inputs
4764 `(("perl-aliased" ,perl-aliased)
4765 ("perl-moose" ,perl-moose)
4766 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4767 (home-page "http://search.cpan.org/dist/MooseX-Role-WithOverloading")
4768 (synopsis "Roles which support overloading")
4769 (description "MooseX::Role::WithOverloading allows you to write a
4770 Moose::Role which defines overloaded operators and allows those overload
4771 methods to be composed into the classes/roles/instances it's compiled to,
4772 where plain Moose::Roles would lose the overloading.")
4773 (license (package-license perl))))
4774
4775 (define-public perl-moosex-semiaffordanceaccessor
4776 (package
4777 (name "perl-moosex-semiaffordanceaccessor")
4778 (version "0.10")
4779 (source
4780 (origin
4781 (method url-fetch)
4782 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4783 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
4784 (sha256
4785 (base32
4786 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
4787 (build-system perl-build-system)
4788 (propagated-inputs
4789 `(("perl-moose" ,perl-moose)))
4790 (home-page "http://search.cpan.org/dist/MooseX-SemiAffordanceAccessor")
4791 (synopsis "Name your accessors foo() and set_foo()")
4792 (description "This module does not provide any methods. Simply loading it
4793 changes the default naming policy for the loading class so that accessors are
4794 separated into get and set methods. The get methods have the same name as the
4795 accessor, while set methods are prefixed with \"_set_\".")
4796 (license artistic2.0)))
4797
4798 (define-public perl-moosex-strictconstructor
4799 (package
4800 (name "perl-moosex-strictconstructor")
4801 (version "0.19")
4802 (source
4803 (origin
4804 (method url-fetch)
4805 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4806 "MooseX-StrictConstructor-" version ".tar.gz"))
4807 (sha256
4808 (base32
4809 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
4810 (build-system perl-build-system)
4811 (native-inputs
4812 `(("perl-moose" ,perl-moose)
4813 ("perl-test-fatal" ,perl-test-fatal)))
4814 (propagated-inputs
4815 `(("perl-moose" ,perl-moose)
4816 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4817 (home-page "http://search.cpan.org/dist/MooseX-StrictConstructor")
4818 (synopsis "Strict object constructors for Moose")
4819 (description "Simply loading this module makes your constructors
4820 \"strict\". If your constructor is called with an attribute init argument
4821 that your class does not declare, then it calls Moose->throw_error().")
4822 (license artistic2.0)))
4823
4824 (define-public perl-moosex-traits-pluggable
4825 (package
4826 (name "perl-moosex-traits-pluggable")
4827 (version "0.12")
4828 (source
4829 (origin
4830 (method url-fetch)
4831 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
4832 "MooseX-Traits-Pluggable-" version ".tar.gz"))
4833 (sha256
4834 (base32
4835 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
4836 (build-system perl-build-system)
4837 (native-inputs
4838 `(("perl-moose" ,perl-moose)
4839 ("perl-test-exception" ,perl-test-exception)))
4840 (propagated-inputs
4841 `(("perl-class-load" ,perl-class-load)
4842 ("perl-list-moreutils" ,perl-list-moreutils)
4843 ("perl-moose" ,perl-moose)
4844 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4845 (home-page
4846 "http://search.cpan.org/dist/MooseX-Traits-Pluggable")
4847 (synopsis "Trait loading and resolution for Moose")
4848 (description "Adds support on top of MooseX::Traits for class precedence
4849 search for traits and some extra attributes.")
4850 (license (package-license perl))))
4851
4852 (define-public perl-moosex-types
4853 (package
4854 (name "perl-moosex-types")
4855 (version "0.45")
4856 (source
4857 (origin
4858 (method url-fetch)
4859 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4860 "MooseX-Types-" version ".tar.gz"))
4861 (sha256
4862 (base32
4863 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
4864 (build-system perl-build-system)
4865 (native-inputs
4866 `(("perl-module-build" ,perl-module-build)
4867 ("perl-test-fatal" ,perl-test-fatal)
4868 ("perl-test-requires" ,perl-test-requires)))
4869 (propagated-inputs
4870 `(("perl-carp-clan" ,perl-carp-clan)
4871 ("perl-moose" ,perl-moose)
4872 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4873 (home-page "http://search.cpan.org/dist/MooseX-Types")
4874 (synopsis "Organise your Moose types in libraries")
4875 (description "This package lets you declare types using short names, but
4876 behind the scenes it namespaces all your type declarations, effectively
4877 prevent name clashes between packages.")
4878 (license (package-license perl))))
4879
4880 (define-public perl-moosex-types-datetime
4881 (package
4882 (name "perl-moosex-types-datetime")
4883 (version "0.10")
4884 (source
4885 (origin
4886 (method url-fetch)
4887 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4888 "MooseX-Types-DateTime-" version ".tar.gz"))
4889 (sha256
4890 (base32
4891 "03p66rx0qj2p23n2i2rj7c7x41621jzzaxscrpg95mb3mqmravc0"))))
4892 (build-system perl-build-system)
4893 (native-inputs
4894 `(("perl-module-build-tiny" ,perl-module-build-tiny)
4895 ("perl-moose" ,perl-moose)
4896 ("perl-test-fatal" ,perl-test-fatal)
4897 ("perl-test-simple" ,perl-test-simple)))
4898 (propagated-inputs
4899 `(("perl-datetime" ,perl-datetime)
4900 ("perl-datetime-locale" ,perl-datetime-locale)
4901 ("perl-datetime-timezone" ,perl-datetime-timezone)
4902 ("perl-moose" ,perl-moose)
4903 ("perl-moosex-types" ,perl-moosex-types)
4904 ("perl-namespace-clean" ,perl-namespace-clean)))
4905 (home-page "http://search.cpan.org/dist/MooseX-Types-DateTime")
4906 (synopsis "DateTime related constraints and coercions for Moose")
4907 (description "This module packages several Moose::Util::TypeConstraints
4908 with coercions, designed to work with the DateTime suite of objects.")
4909 (license (package-license perl))))
4910
4911 (define-public perl-moosex-types-datetime-morecoercions
4912 (package
4913 (name "perl-moosex-types-datetime-morecoercions")
4914 (version "0.14")
4915 (source
4916 (origin
4917 (method url-fetch)
4918 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4919 "MooseX-Types-DateTime-MoreCoercions-"
4920 version ".tar.gz"))
4921 (sha256
4922 (base32
4923 "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
4924 (build-system perl-build-system)
4925 (native-inputs
4926 `(("perl-module-build-tiny" ,perl-module-build-tiny)
4927 ("perl-test-fatal" ,perl-test-fatal)
4928 ("perl-test-simple" ,perl-test-simple)))
4929 (propagated-inputs
4930 `(("perl-datetime" ,perl-datetime)
4931 ("perl-datetimex-easy" ,perl-datetimex-easy)
4932 ("perl-moose" ,perl-moose)
4933 ("perl-moosex-types" ,perl-moosex-types)
4934 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
4935 ("perl-namespace-clean" ,perl-namespace-clean)
4936 ("perl-time-duration-parse" ,perl-time-duration-parse)))
4937 (home-page
4938 "http://search.cpan.org/dist/MooseX-Types-DateTime-MoreCoercions")
4939 (synopsis "Extensions to MooseX::Types::DateTime")
4940 (description "This module builds on MooseX::Types::DateTime to add
4941 additional custom types and coercions. Since it builds on an existing type,
4942 all coercions and constraints are inherited.")
4943 (license (package-license perl))))
4944
4945 (define-public perl-moosex-types-loadableclass
4946 (package
4947 (name "perl-moosex-types-loadableclass")
4948 (version "0.013")
4949 (source
4950 (origin
4951 (method url-fetch)
4952 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4953 "MooseX-Types-LoadableClass-" version ".tar.gz"))
4954 (sha256
4955 (base32
4956 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
4957 (build-system perl-build-system)
4958 (native-inputs
4959 `(("perl-module-build-tiny" ,perl-module-build-tiny)
4960 ("perl-namespace-clean" ,perl-namespace-clean)
4961 ("perl-moose" ,perl-moose)
4962 ("perl-test-fatal" ,perl-test-fatal)
4963 ("perl-class-load" ,perl-class-load)))
4964 (propagated-inputs
4965 `(("perl-module-runtime" ,perl-module-runtime)
4966 ("perl-moosex-types" ,perl-moosex-types)
4967 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4968 (home-page "http://search.cpan.org/dist/MooseX-Types-LoadableClass")
4969 (synopsis "ClassName type constraints for Moose")
4970 (description "MooseX::Types::LoadableClass provides a ClassName type
4971 constraint with coercion to load the class.")
4972 (license (package-license perl))))
4973
4974 (define-public perl-moox-types-mooselike
4975 (package
4976 (name "perl-moox-types-mooselike")
4977 (version "0.28")
4978 (source
4979 (origin
4980 (method url-fetch)
4981 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
4982 "MooX-Types-MooseLike-" version ".tar.gz"))
4983 (sha256
4984 (base32
4985 "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
4986 (build-system perl-build-system)
4987 (native-inputs
4988 `(("perl-moo" ,perl-moo)
4989 ("perl-test-fatal" ,perl-test-fatal)))
4990 (propagated-inputs
4991 `(("perl-module-runtime" ,perl-module-runtime)
4992 ("perl-strictures" ,perl-strictures)))
4993 (home-page "http://search.cpan.org/dist/MooX-Types-MooseLike")
4994 (synopsis "Moosish types and type builder")
4995 (description "MooX::Types::MooseLike provides a possibility to build your
4996 own set of Moose-like types. These custom types can then be used to describe
4997 fields in Moo-based classes.")
4998 (license (package-license perl))))
4999
5000 (define-public perl-mouse
5001 (package
5002 (name "perl-mouse")
5003 (version "2.4.9")
5004 (source (origin
5005 (method url-fetch)
5006 (uri (string-append
5007 "mirror://cpan/authors/id/S/SY/SYOHEX/Mouse-v"
5008 version
5009 ".tar.gz"))
5010 (sha256
5011 (base32
5012 "1y20sl97x1h4y1iid47hj0w1hb2887dchh4nfffgmqpyggkslh4n"))))
5013 (build-system perl-build-system)
5014 (native-inputs
5015 `(("perl-module-build" ,perl-module-build)
5016 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
5017 ("perl-test-exception" ,perl-test-exception)
5018 ("perl-test-fatal" ,perl-test-fatal)
5019 ("perl-test-leaktrace" ,perl-test-leaktrace)
5020 ("perl-test-output" ,perl-test-output)
5021 ("perl-test-requires" ,perl-test-requires)
5022 ("perl-try-tiny" ,perl-try-tiny)))
5023 (home-page "https://github.com/gfx/p5-Mouse")
5024 (synopsis "Fast Moose-compatible object system for perl5")
5025 (description
5026 "Mouse is a @code{Moose} compatible object system that implements a
5027 subset of the functionality for reduced startup time.")
5028 (license (package-license perl))))
5029
5030 (define-public perl-mousex-nativetraits
5031 (package
5032 (name "perl-mousex-nativetraits")
5033 (version "1.09")
5034 (source (origin
5035 (method url-fetch)
5036 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
5037 "MouseX-NativeTraits-" version ".tar.gz"))
5038 (sha256
5039 (base32
5040 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
5041 (build-system perl-build-system)
5042 (native-inputs
5043 `(("perl-any-moose" ,perl-any-moose)
5044 ("perl-test-fatal" ,perl-test-fatal)))
5045 (propagated-inputs
5046 `(("perl-mouse" ,perl-mouse)))
5047 (home-page "http://search.cpan.org/dist/MouseX-NativeTraits")
5048 (synopsis "Extend attribute interfaces for Mouse")
5049 (description
5050 "While @code{Mouse} attributes provide a way to name your accessors,
5051 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
5052 provides commonly used attribute helper methods for more specific types
5053 of data.")
5054 (license (package-license perl))))
5055
5056 (define-public perl-mozilla-ca
5057 (package
5058 (name "perl-mozilla-ca")
5059 (version "20160104")
5060 (source
5061 (origin
5062 (method url-fetch)
5063 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
5064 version ".tar.gz"))
5065 (sha256
5066 (base32
5067 "0aizn08lrdrgjz9vagkjmw2c7sxn46fzz521v9dbcqii4jd0d9r7"))))
5068 (build-system perl-build-system)
5069 (home-page "http://search.cpan.org/dist/Mozilla-CA")
5070 (synopsis "Mozilla's CA cert bundle in PEM format")
5071 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
5072 Certificate Authority certificates in a form that can be consumed by modules
5073 and libraries based on OpenSSL.")
5074 (license mpl2.0)))
5075
5076 (define-public perl-mro-compat
5077 (package
5078 (name "perl-mro-compat")
5079 (version "0.12")
5080 (source
5081 (origin
5082 (method url-fetch)
5083 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
5084 "MRO-Compat-" version ".tar.gz"))
5085 (sha256
5086 (base32
5087 "1mhma2g83ih9f8nkmg2k9l0x6izhhbb6k5lli4rpllxad4wbk9dv"))))
5088 (build-system perl-build-system)
5089 (home-page "http://search.cpan.org/dist/MRO-Compat")
5090 (synopsis "MRO interface compatibility for Perls < 5.9.5")
5091 (description "The \"mro\" namespace provides several utilities for dealing
5092 with method resolution order and method caching in general in Perl 5.9.5 and
5093 higher. This module provides those interfaces for earlier versions of
5094 Perl (back to 5.6.0).")
5095 (license (package-license perl))))
5096
5097 (define-public perl-namespace-autoclean
5098 (package
5099 (name "perl-namespace-autoclean")
5100 (version "0.28")
5101 (source
5102 (origin
5103 (method url-fetch)
5104 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5105 "namespace-autoclean-" version ".tar.gz"))
5106 (sha256
5107 (base32
5108 "0fbcq99yaix1aa99jl3v811dbw24il9jxnh5i2i23mddh4b0lhfd"))))
5109 (build-system perl-build-system)
5110 (native-inputs
5111 `(("perl-module-build" ,perl-module-build)
5112 ("perl-test-requires" ,perl-test-requires)))
5113 (propagated-inputs
5114 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
5115 ("perl-namespace-clean" ,perl-namespace-clean)
5116 ("perl-sub-identify" ,perl-sub-identify)))
5117 (home-page "http://search.cpan.org/dist/namespace-autoclean")
5118 (synopsis "Keep imports out of your namespace")
5119 (description "The namespace::autoclean pragma will remove all imported
5120 symbols at the end of the current package's compile cycle. Functions called
5121 in the package itself will still be bound by their name, but they won't show
5122 up as methods on your class or instances. It is very similar to
5123 namespace::clean, except it will clean all imported functions, no matter if
5124 you imported them before or after you used the pragma. It will also not touch
5125 anything that looks like a method.")
5126 (license (package-license perl))))
5127
5128 (define-public perl-namespace-clean
5129 (package
5130 (name "perl-namespace-clean")
5131 (version "0.25")
5132 (source
5133 (origin
5134 (method url-fetch)
5135 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
5136 "namespace-clean-" version ".tar.gz"))
5137 (sha256
5138 (base32
5139 "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
5140 (build-system perl-build-system)
5141 (propagated-inputs
5142 `(("perl-package-stash" ,perl-package-stash)
5143 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
5144 (home-page "http://search.cpan.org/dist/namespace-clean")
5145 (synopsis "Keep imports and functions out of your namespace")
5146 (description "The namespace::clean pragma will remove all previously
5147 declared or imported symbols at the end of the current package's compile
5148 cycle. Functions called in the package itself will still be bound by their
5149 name, but they won't show up as methods on your class or instances.")
5150 (license (package-license perl))))
5151
5152 (define-public perl-net-statsd
5153 (package
5154 (name "perl-net-statsd")
5155 (version "0.12")
5156 (source
5157 (origin
5158 (method url-fetch)
5159 (uri (string-append
5160 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
5161 version
5162 ".tar.gz"))
5163 (sha256
5164 (base32
5165 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
5166 (build-system perl-build-system)
5167 (home-page
5168 "http://search.cpan.org/dist/Net-Statsd")
5169 (synopsis "Perl client for Etsy's statsd daemon")
5170 (description "This module implement a UDP client for the statsd statistics
5171 collector daemon in use at Etsy.com.")
5172 (license (package-license perl))))
5173
5174 (define-public perl-number-compare
5175 (package
5176 (name "perl-number-compare")
5177 (version "0.03")
5178 (source
5179 (origin
5180 (method url-fetch)
5181 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
5182 "Number-Compare-" version ".tar.gz"))
5183 (sha256
5184 (base32
5185 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
5186 (build-system perl-build-system)
5187 (home-page "http://search.cpan.org/dist/Number-Compare")
5188 (synopsis "Numeric comparisons")
5189 (description "Number::Compare compiles a simple comparison to an anonymous
5190 subroutine, which you can call with a value to be tested against.")
5191 (license (package-license perl))))
5192
5193 (define-public perl-object-signature
5194 (package
5195 (name "perl-object-signature")
5196 (version "1.07")
5197 (source
5198 (origin
5199 (method url-fetch)
5200 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
5201 "Object-Signature-" version ".tar.gz"))
5202 (sha256
5203 (base32
5204 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
5205 (build-system perl-build-system)
5206 (home-page "http://search.cpan.org/dist/Object-Signature")
5207 (synopsis "Generate cryptographic signatures for objects")
5208 (description "Object::Signature is an abstract base class that you can
5209 inherit from in order to allow your objects to generate unique cryptographic
5210 signatures.")
5211 (license (package-license perl))))
5212
5213 (define-public perl-ole-storage-lite
5214 (package
5215 (name "perl-ole-storage-lite")
5216 (version "0.19")
5217 (source
5218 (origin
5219 (method url-fetch)
5220 (uri (string-append
5221 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
5222 version
5223 ".tar.gz"))
5224 (sha256
5225 (base32
5226 "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"))))
5227 (build-system perl-build-system)
5228 (home-page "http://search.cpan.org/dist/OLE-Storage_Lite")
5229 (synopsis "Read and write OLE storage files")
5230 (description "This module allows you to read and write
5231 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
5232 technology to store hierarchical information such as links to other
5233 documents within a single file.")
5234 (license (package-license perl))))
5235
5236 (define-public perl-package-anon
5237 (package
5238 (name "perl-package-anon")
5239 (version "0.05")
5240 (source
5241 (origin
5242 (method url-fetch)
5243 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
5244 "Package-Anon-" version ".tar.gz"))
5245 (sha256
5246 (base32
5247 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
5248 (build-system perl-build-system)
5249 (propagated-inputs
5250 `(("perl-sub-exporter" ,perl-sub-exporter)
5251 ("perl-params-util" ,perl-params-util)))
5252 (home-page "http://search.cpan.org/dist/Package-Anon")
5253 (synopsis "Anonymous packages")
5254 (description "This module allows for anonymous packages that are
5255 independent of the main namespace and only available through an object
5256 instance, not by name.")
5257 (license (package-license perl))))
5258
5259 (define-public perl-package-deprecationmanager
5260 (package
5261 (name "perl-package-deprecationmanager")
5262 (version "0.17")
5263 (source
5264 (origin
5265 (method url-fetch)
5266 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5267 "Package-DeprecationManager-" version ".tar.gz"))
5268 (sha256
5269 (base32
5270 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
5271 (build-system perl-build-system)
5272 (native-inputs
5273 `(("perl-test-fatal" ,perl-test-fatal)
5274 ("perl-test-requires" ,perl-test-requires)
5275 ("perl-test-output" ,perl-test-output)))
5276 (propagated-inputs
5277 `(("perl-list-moreutils" ,perl-list-moreutils)
5278 ("perl-params-util" ,perl-params-util)
5279 ("perl-sub-install" ,perl-sub-install)))
5280 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
5281 (home-page "http://search.cpan.org/dist/Package-DeprecationManager")
5282 (synopsis "Manage deprecation warnings for your distribution")
5283 (description "This module allows you to manage a set of deprecations for
5284 one or more modules.")
5285 (license artistic2.0)))
5286
5287 (define-public perl-package-stash
5288 (package
5289 (name "perl-package-stash")
5290 (version "0.37")
5291 (source
5292 (origin
5293 (method url-fetch)
5294 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5295 "Package-Stash-" version ".tar.gz"))
5296 (sha256
5297 (base32
5298 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
5299 (build-system perl-build-system)
5300 (native-inputs
5301 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5302 ("perl-test-fatal" ,perl-test-fatal)
5303 ("perl-test-requires" ,perl-test-requires)
5304 ("perl-package-anon" ,perl-package-anon)))
5305 (propagated-inputs
5306 `(("perl-module-implementation" ,perl-module-implementation)
5307 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5308 ("perl-package-stash-xs" ,perl-package-stash-xs)))
5309 (home-page "http://search.cpan.org/dist/Package-Stash")
5310 (synopsis "Routines for manipulating stashes")
5311 (description "Manipulating stashes (Perl's symbol tables) is occasionally
5312 necessary, but incredibly messy, and easy to get wrong. This module hides all
5313 of that behind a simple API.")
5314 (license (package-license perl))))
5315
5316 (define-public perl-package-stash-xs
5317 (package
5318 (name "perl-package-stash-xs")
5319 (version "0.28")
5320 (source
5321 (origin
5322 (method url-fetch)
5323 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5324 "Package-Stash-XS-" version ".tar.gz"))
5325 (sha256
5326 (base32
5327 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
5328 (build-system perl-build-system)
5329 (native-inputs
5330 `(("perl-test-fatal" ,perl-test-fatal)
5331 ("perl-test-requires" ,perl-test-requires)
5332 ("perl-package-anon" ,perl-package-anon)))
5333 (home-page "http://search.cpan.org/dist/Package-Stash-XS")
5334 (synopsis "Faster implementation of the Package::Stash API")
5335 (description "This is a backend for Package::Stash, which provides the
5336 functionality in a way that's less buggy and much faster. It will be used by
5337 default if it's installed, and should be preferred in all environments with a
5338 compiler.")
5339 (license (package-license perl))))
5340
5341 (define-public perl-padwalker
5342 (package
5343 (name "perl-padwalker")
5344 (version "2.0")
5345 (source
5346 (origin
5347 (method url-fetch)
5348 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
5349 "PadWalker-" version ".tar.gz"))
5350 (sha256
5351 (base32
5352 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
5353 (build-system perl-build-system)
5354 (home-page "http://search.cpan.org/dist/PadWalker")
5355 (synopsis "Play with other peoples' lexical variables")
5356 (description "PadWalker is a module which allows you to inspect (and even
5357 change) lexical variables in any subroutine which called you. It will only
5358 show those variables which are in scope at the point of the call. PadWalker
5359 is particularly useful for debugging.")
5360 (license (package-license perl))))
5361
5362 (define-public perl-parallel-forkmanager
5363 (package
5364 (name "perl-parallel-forkmanager")
5365 (version "1.19")
5366 (source
5367 (origin
5368 (method url-fetch)
5369 (uri (string-append
5370 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
5371 version
5372 ".tar.gz"))
5373 (sha256
5374 (base32
5375 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
5376 (build-system perl-build-system)
5377 (native-inputs
5378 `(("perl-test-warn" ,perl-test-warn)))
5379 (home-page "http://search.cpan.org/dist/Parallel-ForkManager")
5380 (synopsis "Simple parallel processing fork manager")
5381 (description "@code{Parallel::ForkManager} is intended for use in
5382 operations that can be done in parallel where the number of
5383 processes to be forked off should be limited.")
5384 (license (package-license perl))))
5385
5386 (define-public perl-params-util
5387 (package
5388 (name "perl-params-util")
5389 (version "1.07")
5390 (source
5391 (origin
5392 (method url-fetch)
5393 (uri (string-append
5394 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
5395 version ".tar.gz"))
5396 (sha256
5397 (base32
5398 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
5399 (build-system perl-build-system)
5400 (home-page "http://search.cpan.org/dist/Params-Util")
5401 (synopsis "Simple, compact and correct param-checking functions")
5402 (description
5403 "Params::Util provides a basic set of importable functions that makes
5404 checking parameters easier.")
5405 (license (package-license perl))))
5406
5407 (define-public perl-params-validate
5408 (package
5409 (name "perl-params-validate")
5410 (version "1.26")
5411 (source
5412 (origin
5413 (method url-fetch)
5414 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5415 "Params-Validate-" version ".tar.gz"))
5416 (sha256
5417 (base32
5418 "1vbj78qd46ip09i06dsbb62jfwpzp4bg7yi617v98nvim77w66l2"))))
5419 (build-system perl-build-system)
5420 (native-inputs
5421 `(("perl-module-build" ,perl-module-build)
5422 ("perl-test-fatal" ,perl-test-fatal)
5423 ("perl-test-requires" ,perl-test-requires)))
5424 (propagated-inputs
5425 `(("perl-module-implementation" ,perl-module-implementation)))
5426 (home-page "http://search.cpan.org/dist/Params-Validate")
5427 (synopsis "Validate method/function parameters")
5428 (description "The Params::Validate module allows you to validate method or
5429 function call parameters to an arbitrary level of specificity.")
5430 (license artistic2.0)))
5431
5432 (define-public perl-par-dist
5433 (package
5434 (name "perl-par-dist")
5435 (version "0.49")
5436 (source
5437 (origin
5438 (method url-fetch)
5439 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5440 "PAR-Dist-" version ".tar.gz"))
5441 (sha256
5442 (base32
5443 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
5444 (build-system perl-build-system)
5445 (home-page "http://search.cpan.org/dist/PAR-Dist")
5446 (synopsis "Create and manipulate PAR distributions")
5447 (description "PAR::Dist is a toolkit to create and manipulate PAR
5448 distributions.")
5449 (license (package-license perl))))
5450
5451 (define-public perl-parent
5452 (package
5453 (name "perl-parent")
5454 (version "0.228")
5455 (source
5456 (origin
5457 (method url-fetch)
5458 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
5459 "parent-" version ".tar.gz"))
5460 (sha256
5461 (base32
5462 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
5463 (build-system perl-build-system)
5464 (home-page "http://search.cpan.org/dist/parent")
5465 (synopsis "Establish an ISA relationship with base classes at compile time")
5466 (description "Allows you to both load one or more modules, while setting
5467 up inheritance from those modules at the same time.")
5468 (license (package-license perl))))
5469
5470 (define-public perl-path-class
5471 (package
5472 (name "perl-path-class")
5473 (version "0.35")
5474 (source
5475 (origin
5476 (method url-fetch)
5477 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
5478 "Path-Class-" version ".tar.gz"))
5479 (sha256
5480 (base32
5481 "1viaj8jyshcj135la0kgfgzalaw06xnbsg9h54jx09v1342v69lj"))))
5482 (build-system perl-build-system)
5483 (native-inputs `(("perl-module-build" ,perl-module-build)))
5484 (home-page "http://search.cpan.org/dist/Path-Class")
5485 (synopsis "Path specification manipulation")
5486 (description "Path::Class is a module for manipulation of file and
5487 directory specifications in a cross-platform manner.")
5488 (license (package-license perl))))
5489
5490 (define-public perl-path-tiny
5491 (package
5492 (name "perl-path-tiny")
5493 (version "0.096")
5494 (source (origin
5495 (method url-fetch)
5496 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
5497 "Path-Tiny-" version ".tar.gz"))
5498 (sha256
5499 (base32
5500 "08dmr6ijjg3dp7h9dxix0nmad0fw16c6qzs4qc0hdz500gd64sr2"))))
5501 (build-system perl-build-system)
5502 (arguments
5503 `(#:tests? #f)) ; Tests require additional test modules to be packaged
5504 ;; (native-inputs
5505 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
5506 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
5507 (inputs
5508 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
5509 (home-page "http://search.cpan.org/dist/Path-Tiny")
5510 (synopsis "File path utility")
5511 (description "This module provides a small, fast utility for working
5512 with file paths.")
5513 (license asl2.0)))
5514
5515 (define-public perl-perlio-utf8_strict
5516 (package
5517 (name "perl-perlio-utf8-strict")
5518 (version "0.006")
5519 (source (origin
5520 (method url-fetch)
5521 (uri (string-append
5522 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
5523 version ".tar.gz"))
5524 (sha256
5525 (base32
5526 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
5527 (build-system perl-build-system)
5528 (native-inputs
5529 `(("perl-test-exception" ,perl-test-exception)))
5530 (home-page
5531 "http://search.cpan.org/dist/PerlIO-utf8_strict")
5532 (synopsis "Fast and correct UTF-8 IO")
5533 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
5534 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
5535 for correctness.")
5536 (license (package-license perl))))
5537
5538 (define-public perl-pod-coverage
5539 (package
5540 (name "perl-pod-coverage")
5541 (version "0.23")
5542 (source
5543 (origin
5544 (method url-fetch)
5545 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
5546 "Pod-Coverage-" version ".tar.gz"))
5547 (sha256
5548 (base32
5549 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
5550 (build-system perl-build-system)
5551 (propagated-inputs
5552 `(("perl-devel-symdump" ,perl-devel-symdump)))
5553 (home-page "http://search.cpan.org/dist/Pod-Coverage")
5554 (synopsis "Check for comprehensive documentation of a module")
5555 (description "This module provides a mechanism for determining if the pod
5556 for a given module is comprehensive.")
5557 (license (package-license perl))))
5558
5559 (define-public perl-pod-simple
5560 (package
5561 (name "perl-pod-simple")
5562 (version "3.31")
5563 (source (origin
5564 (method url-fetch)
5565 (uri (string-append "mirror://cpan/authors/id/M/MA/MARCGREEN/"
5566 "Pod-Simple-" version ".tar.gz"))
5567 (sha256
5568 (base32
5569 "04705pcs31s71vpmnpfdy8ds0q700q4cs2dlyssyrdjbvx3ymq3l"))))
5570 (build-system perl-build-system)
5571 (home-page "http://search.cpan.org/dist/Pod-Simple/")
5572 (synopsis "Parsing library for text in Pod format")
5573 (description "Pod::Simple is a Perl library for parsing text in
5574 the Pod (plain old documentation) markup language that is typically
5575 used for writing documentation for Perl and for Perl modules.")
5576 (license (package-license perl))))
5577
5578 (define-public perl-posix-strftime-compiler
5579 (package
5580 (name "perl-posix-strftime-compiler")
5581 (version "0.41")
5582 (source
5583 (origin
5584 (method url-fetch)
5585 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
5586 "POSIX-strftime-Compiler-" version ".tar.gz"))
5587 (sha256
5588 (base32
5589 "0f9p3hx0vqx8zg5v24pz0s4zc8ln100c7c91ks681wq02phqj2v7"))))
5590 (build-system perl-build-system)
5591 (native-inputs `(("perl-module-build" ,perl-module-build)))
5592 (arguments `(#:tests? #f)) ;TODO: Timezone test failures
5593 (home-page "http://search.cpan.org/dist/POSIX-strftime-Compiler")
5594 (synopsis "GNU C library compatible strftime for loggers and servers")
5595 (description "POSIX::strftime::Compiler provides GNU C library compatible
5596 strftime(3). But this module is not affected by the system locale. This
5597 feature is useful when you want to write loggers, servers, and portable
5598 applications.")
5599 (license (package-license perl))))
5600
5601 (define-public perl-probe-perl
5602 (package
5603 (name "perl-probe-perl")
5604 (version "0.03")
5605 (source (origin
5606 (method url-fetch)
5607 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
5608 "Probe-Perl-" version ".tar.gz"))
5609 (sha256
5610 (base32
5611 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
5612 (build-system perl-build-system)
5613 (synopsis "Information about the currently running perl")
5614 (description
5615 "Probe::Perl provides methods for obtaining information about the
5616 currently running perl interpreter. It originally began life as code in the
5617 Module::Build project, but has been externalized here for general use.")
5618 (home-page (string-append "http://search.cpan.org/~kwilliams/"
5619 "Probe-Perl-" version))
5620 (license (package-license perl))))
5621
5622 (define-public perl-readonly
5623 (package
5624 (name "perl-readonly")
5625 (version "2.00")
5626 (source
5627 (origin
5628 (method url-fetch)
5629 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
5630 "Readonly-" version ".tar.gz"))
5631 (sha256
5632 (base32
5633 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
5634 (build-system perl-build-system)
5635 (native-inputs `(("perl-module-build" ,perl-module-build)))
5636 (home-page "http://search.cpan.org/dist/Readonly")
5637 (synopsis "Create read-only scalars, arrays, hashes")
5638 (description "This module provides a facility for creating non-modifiable
5639 variables in Perl. This is useful for configuration files, headers, etc. It
5640 can also be useful as a development and debugging tool for catching updates to
5641 variables that should not be changed.")
5642 (license (package-license perl))))
5643
5644 (define-public perl-regexp-common
5645 (package
5646 (name "perl-regexp-common")
5647 (version "2013031301")
5648 (source (origin
5649 (method url-fetch)
5650 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
5651 "Regexp-Common-" version ".tar.gz"))
5652 (sha256
5653 (base32
5654 "112wybsm0vr8yfannx6sdfvgp5vza28gjgr3pgn69ak4sac836kj"))))
5655 (build-system perl-build-system)
5656 (synopsis "Provide commonly requested regular expressions")
5657 (description
5658 "This module exports a single hash (`%RE') that stores or generates
5659 commonly needed regular expressions. Patterns currently provided include:
5660 balanced parentheses and brackets, delimited text (with escapes), integers and
5661 floating-point numbers in any base (up to 36), comments in 44 languages,
5662 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
5663 codes.")
5664 (home-page (string-append "http://search.cpan.org/~abigail/"
5665 "Regexp-Common-" version))
5666 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
5667 (license (list (package-license perl) x11 bsd-3))))
5668
5669 (define-public perl-role-tiny
5670 (package
5671 (name "perl-role-tiny")
5672 (version "1.003004")
5673 (source
5674 (origin
5675 (method url-fetch)
5676 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5677 "Role-Tiny-" version ".tar.gz"))
5678 (sha256
5679 (base32
5680 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
5681 (build-system perl-build-system)
5682 (native-inputs
5683 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
5684 ("perl-test-fatal" ,perl-test-fatal)))
5685 (propagated-inputs
5686 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
5687 (home-page "http://search.cpan.org/dist/Role-Tiny")
5688 (synopsis "Roles, as a slice of Moose")
5689 (description "Role::Tiny is a minimalist role composition tool.")
5690 (license (package-license perl))))
5691
5692 (define-public perl-safe-isa
5693 (package
5694 (name "perl-safe-isa")
5695 (version "1.000005")
5696 (source
5697 (origin
5698 (method url-fetch)
5699 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5700 "Safe-Isa-" version ".tar.gz"))
5701 (sha256
5702 (base32
5703 "1vib54cp64dy3ic4n73skadp1pl4gn8s9qpxmzvi078dm3mpnbcw"))))
5704 (build-system perl-build-system)
5705 (home-page "http://search.cpan.org/dist/Safe-Isa")
5706 (synopsis "Call isa, can, does, and DOES safely")
5707 (description "This module allows you to call isa, can, does, and DOES
5708 safely on things that may not be objects.")
5709 (license (package-license perl))))
5710
5711 (define-public perl-scope-guard
5712 (package
5713 (name "perl-scope-guard")
5714 (version "0.20")
5715 (source
5716 (origin
5717 (method url-fetch)
5718 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
5719 "Scope-Guard-" version ".tar.gz"))
5720 (sha256
5721 (base32
5722 "1lsagnz6pli035zvx5c1x4qm9fabi773vns86yd8lzfpldhfv3sv"))))
5723 (build-system perl-build-system)
5724 (home-page "http://search.cpan.org/dist/Scope-Guard")
5725 (synopsis "Lexically-scoped resource management")
5726 (description "This module provides a convenient way to perform cleanup or
5727 other forms of resource management at the end of a scope. It is particularly
5728 useful when dealing with exceptions: the Scope::Guard constructor takes a
5729 reference to a subroutine that is guaranteed to be called even if the thread
5730 of execution is aborted prematurely. This effectively allows lexically-scoped
5731 \"promises\" to be made that are automatically honoured by perl's garbage
5732 collector.")
5733 (license (package-license perl))))
5734
5735 (define-public perl-set-infinite
5736 (package
5737 (name "perl-set-infinite")
5738 (version "0.65")
5739 (source
5740 (origin
5741 (method url-fetch)
5742 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
5743 "Set-Infinite-" version ".tar.gz"))
5744 (sha256
5745 (base32
5746 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
5747 (build-system perl-build-system)
5748 (home-page "http://search.cpan.org/dist/Set-Infinite")
5749 (synopsis "Infinite sets")
5750 (description "Set::Infinite is a set theory module for infinite sets.")
5751 (license (package-license perl))))
5752
5753 (define-public perl-set-object
5754 (package
5755 (name "perl-set-object")
5756 (version "1.35")
5757 (source
5758 (origin
5759 (method url-fetch)
5760 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
5761 "Set-Object-" version ".tar.gz"))
5762 (sha256
5763 (base32
5764 "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
5765 (build-system perl-build-system)
5766 (propagated-inputs
5767 `(("perl-moose" ,perl-moose)
5768 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5769 (home-page "http://search.cpan.org/dist/Set-Object")
5770 (synopsis "Unordered collections of Perl Objects")
5771 (description "Set::Object provides efficient sets, unordered collections
5772 of Perl objects without duplicates for scalars and references.")
5773 (license artistic2.0)))
5774
5775 (define-public perl-set-scalar
5776 (package
5777 (name "perl-set-scalar")
5778 (version "1.29")
5779 (source
5780 (origin
5781 (method url-fetch)
5782 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
5783 "Set-Scalar-" version ".tar.gz"))
5784 (sha256
5785 (base32
5786 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
5787 (build-system perl-build-system)
5788 (home-page "http://search.cpan.org/dist/Set-Scalar")
5789 (synopsis "Set operations for Perl")
5790 (description "The first priority of Set::Scalar is to be a convenient
5791 interface to sets (as in: unordered collections of Perl scalars). While not
5792 designed to be slow or big, neither has it been designed to be fast or
5793 compact.")
5794 (license (package-license perl))))
5795
5796 (define-public perl-sort-key
5797 (package
5798 (name "perl-sort-key")
5799 (version "1.33")
5800 (source
5801 (origin
5802 (method url-fetch)
5803 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
5804 version ".tar.gz"))
5805 (sha256
5806 (base32
5807 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
5808 (build-system perl-build-system)
5809 (home-page "http://search.cpan.org/dist/Sort-Key")
5810 (synopsis "Sort arrays by one or multiple calculated keys")
5811 (description "This Perl module provides various functions to quickly sort
5812 arrays by one or multiple calculated keys.")
5813 (license (package-license perl))))
5814
5815 (define-public perl-spiffy
5816 (package
5817 (name "perl-spiffy")
5818 (version "0.46")
5819 (source
5820 (origin
5821 (method url-fetch)
5822 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
5823 "Spiffy-" version ".tar.gz"))
5824 (sha256
5825 (base32
5826 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
5827 (build-system perl-build-system)
5828 (home-page "http://search.cpan.org/dist/Spiffy")
5829 (synopsis "Spiffy Perl Interface Framework For You")
5830 (description "Spiffy is a framework and methodology for doing object
5831 oriented (OO) programming in Perl. Spiffy combines the best parts of
5832 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
5833 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
5834 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
5835 other OO languages like Python, Ruby, Java and Perl 6.")
5836 (license (package-license perl))))
5837
5838 (define-public perl-stream-buffered
5839 (package
5840 (name "perl-stream-buffered")
5841 (version "0.03")
5842 (source
5843 (origin
5844 (method url-fetch)
5845 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5846 "Stream-Buffered-" version ".tar.gz"))
5847 (sha256
5848 (base32
5849 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
5850 (build-system perl-build-system)
5851 (home-page "http://search.cpan.org/dist/Stream-Buffered")
5852 (synopsis "Temporary buffer to save bytes")
5853 (description "Stream::Buffered is a buffer class to store arbitrary length
5854 of byte strings and then get a seekable filehandle once everything is
5855 buffered. It uses PerlIO and/or temporary file to save the buffer depending
5856 on the length of the size.")
5857 (license (package-license perl))))
5858
5859 (define-public perl-strictures
5860 (package
5861 (name "perl-strictures")
5862 (version "1.005005")
5863 (source
5864 (origin
5865 (method url-fetch)
5866 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5867 "strictures-" version ".tar.gz"))
5868 (sha256
5869 (base32
5870 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
5871 (build-system perl-build-system)
5872 (home-page "http://search.cpan.org/dist/strictures")
5873 (synopsis "Turn on strict and make all warnings fatal")
5874 (description "Strictures turns on strict and make all warnings fatal when
5875 run from within a source-controlled directory.")
5876 (license (package-license perl))))
5877
5878 (define-public perl-string-camelcase
5879 (package
5880 (name "perl-string-camelcase")
5881 (version "0.02")
5882 (source
5883 (origin
5884 (method url-fetch)
5885 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
5886 "String-CamelCase-" version ".tar.gz"))
5887 (sha256
5888 (base32
5889 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
5890 (build-system perl-build-system)
5891 (home-page "http://search.cpan.org/dist/String-CamelCase")
5892 (synopsis "Camelcase and de-camelcase")
5893 (description "This module may be used to convert from under_score text to
5894 CamelCase and back again.")
5895 (license (package-license perl))))
5896
5897 (define-public perl-string-rewriteprefix
5898 (package
5899 (name "perl-string-rewriteprefix")
5900 (version "0.007")
5901 (source
5902 (origin
5903 (method url-fetch)
5904 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5905 "String-RewritePrefix-" version ".tar.gz"))
5906 (sha256
5907 (base32
5908 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
5909 (build-system perl-build-system)
5910 (propagated-inputs
5911 `(("perl-sub-exporter" ,perl-sub-exporter)))
5912 (home-page "http://search.cpan.org/dist/String-RewritePrefix")
5913 (synopsis "Rewrite strings based on a set of known prefixes")
5914 (description "This module allows you to rewrite strings based on a set of
5915 known prefixes.")
5916 (license (package-license perl))))
5917
5918 (define-public perl-string-print
5919 (package
5920 (name "perl-string-print")
5921 (version "0.15")
5922 (source (origin
5923 (method url-fetch)
5924 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5925 "String-Print-" version ".tar.gz"))
5926 (sha256
5927 (base32
5928 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
5929 (build-system perl-build-system)
5930 (propagated-inputs
5931 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
5932 (home-page "http://search.cpan.org/dist/String-Print")
5933 (synopsis "String printing alternatives to printf")
5934 (description
5935 "This module inserts values into (translated) strings. It provides
5936 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
5937 a functional interface.")
5938 (license (package-license perl))))
5939
5940 (define-public perl-sub-exporter
5941 (package
5942 (name "perl-sub-exporter")
5943 (version "0.987")
5944 (source
5945 (origin
5946 (method url-fetch)
5947 (uri (string-append
5948 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
5949 version ".tar.gz"))
5950 (sha256
5951 (base32
5952 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
5953 (build-system perl-build-system)
5954 (propagated-inputs
5955 `(("perl-data-optlist" ,perl-data-optlist)
5956 ("perl-params-util" ,perl-params-util)))
5957 (home-page "http://search.cpan.org/dist/Sub-Exporter")
5958 (synopsis "Sophisticated exporter for custom-built routines")
5959 (description
5960 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
5961 custom-built routines.")
5962 (license (package-license perl))))
5963
5964 (define-public perl-sub-exporter-progressive
5965 (package
5966 (name "perl-sub-exporter-progressive")
5967 (version "0.001011")
5968 (source
5969 (origin
5970 (method url-fetch)
5971 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
5972 "Sub-Exporter-Progressive-" version ".tar.gz"))
5973 (sha256
5974 (base32
5975 "01kwzbqwdhvadpphnczid03nlyj0h4cxaq3m3v2401bckkkcc606"))))
5976 (build-system perl-build-system)
5977 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
5978 (home-page "http://search.cpan.org/dist/Sub-Exporter-Progressive")
5979 (synopsis "Only use Sub::Exporter if you need it")
5980 (description "Sub::Exporter is an incredibly powerful module, but with
5981 that power comes great responsibility, as well as some runtime penalties.
5982 This module is a \"Sub::Exporter\" wrapper that will let your users just use
5983 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
5984 if your users try to use \"Sub::Exporter\"'s more advanced features, like
5985 renaming exports, if they try to use them.")
5986 (license (package-license perl))))
5987
5988 (define-public perl-sub-identify
5989 (package
5990 (name "perl-sub-identify")
5991 (version "0.10")
5992 (source
5993 (origin
5994 (method url-fetch)
5995 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
5996 "Sub-Identify-" version ".tar.gz"))
5997 (sha256
5998 (base32
5999 "087fjcg6w576w47i1slj6mjfd3gl1b0airgddmn3prn0nff6nn2m"))))
6000 (build-system perl-build-system)
6001 (home-page "http://search.cpan.org/dist/Sub-Identify")
6002 (synopsis "Retrieve names of code references")
6003 (description "Sub::Identify allows you to retrieve the real name of code
6004 references.")
6005 (license (package-license perl))))
6006
6007 (define-public perl-sub-install
6008 (package
6009 (name "perl-sub-install")
6010 (version "0.928")
6011 (source
6012 (origin
6013 (method url-fetch)
6014 (uri (string-append
6015 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
6016 version ".tar.gz"))
6017 (sha256
6018 (base32
6019 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
6020 (build-system perl-build-system)
6021 (home-page "http://search.cpan.org/dist/Sub-Install")
6022 (synopsis "Install subroutines into packages easily")
6023 (description
6024 "Sub::Install makes it easy to install subroutines into packages without
6025 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
6026 can see them.")
6027 (license (package-license perl))))
6028
6029 (define-public perl-sub-name
6030 (package
6031 (name "perl-sub-name")
6032 (version "0.21")
6033 (source
6034 (origin
6035 (method url-fetch)
6036 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6037 "Sub-Name-" version ".tar.gz"))
6038 (sha256
6039 (base32
6040 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
6041 (build-system perl-build-system)
6042 (native-inputs
6043 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
6044 (home-page "http://search.cpan.org/dist/Sub-Name")
6045 (synopsis "(Re)name a sub")
6046 (description "Assigns a new name to referenced sub. If package
6047 specification is omitted in the name, then the current package is used. The
6048 return value is the sub.")
6049 (license (package-license perl))))
6050
6051 (define-public perl-sub-uplevel
6052 (package
6053 (name "perl-sub-uplevel")
6054 (version "0.24")
6055 (source
6056 (origin
6057 (method url-fetch)
6058 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6059 "Sub-Uplevel-" version ".tar.gz"))
6060 (sha256
6061 (base32
6062 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
6063 (build-system perl-build-system)
6064 (home-page "http://search.cpan.org/dist/Sub-Uplevel")
6065 (synopsis "Apparently run a function in a higher stack frame")
6066 (description "Like Tcl's uplevel() function, but not quite so dangerous.
6067 The idea is just to fool caller(). All the really naughty bits of Tcl's
6068 uplevel() are avoided.")
6069 (license (package-license perl))))
6070
6071 (define-public perl-svg
6072 (package
6073 (name "perl-svg")
6074 (version "2.63")
6075 (source
6076 (origin
6077 (method url-fetch)
6078 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
6079 version ".tar.gz"))
6080 (sha256
6081 (base32
6082 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
6083 (build-system perl-build-system)
6084 (home-page "http://search.cpan.org/dist/SVG")
6085 (synopsis "Perl extension for generating SVG documents")
6086 (description "SVG is a Perl module which generates a nested data structure
6087 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
6088 Using SVG, you can generate SVG objects, embed other SVG instances into it,
6089 access the DOM object, create and access Javascript, and generate SMIL
6090 animation content.")
6091 (license (package-license perl))))
6092
6093 (define-public perl-switch
6094 (package
6095 (name "perl-switch")
6096 (version "2.17")
6097 (source
6098 (origin
6099 (method url-fetch)
6100 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
6101 version ".tar.gz"))
6102 (sha256
6103 (base32
6104 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
6105 (build-system perl-build-system)
6106 (home-page "http://search.cpan.org/dist/Switch")
6107 (synopsis "Switch statement for Perl")
6108 (description "Switch is a Perl module which implements a generalized case
6109 mechanism. The module augments the standard Perl syntax with two new
6110 statements: @code{switch} and @code{case}.")
6111 (license (package-license perl))))
6112
6113 (define-public perl-sys-cpu
6114 (package
6115 (name "perl-sys-cpu")
6116 (version "0.61")
6117 (source (origin
6118 (method url-fetch)
6119 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
6120 "Sys-CPU-" version ".tar.gz"))
6121 (sha256
6122 (base32
6123 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))))
6124 (build-system perl-build-system)
6125 (synopsis "Perl extension for getting CPU information")
6126 (description
6127 "Sys::CPU is a module for counting the number of CPUs on a system, and
6128 determining their type and clock speed.")
6129 (home-page (string-append "http://search.cpan.org/~mzsanford/"
6130 "Sys-CPU-" version))
6131 (license (package-license perl))))
6132
6133 (define-public perl-sys-hostname-long
6134 (package
6135 (name "perl-sys-hostname-long")
6136 (version "1.5")
6137 (source
6138 (origin
6139 (method url-fetch)
6140 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
6141 "Sys-Hostname-Long-" version ".tar.gz"))
6142 (sha256
6143 (base32
6144 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
6145 (build-system perl-build-system)
6146 (arguments `(#:tests? #f)) ;no `hostname' during build
6147 (home-page "http://search.cpan.org/dist/Sys-Hostname-Long")
6148 (synopsis "Get full hostname in Perl")
6149 (description "Sys::Hostname::Long tries very hard to get the full hostname
6150 of a system.")
6151 (license (package-license perl))))
6152
6153 (define-public perl-task-weaken
6154 (package
6155 (name "perl-task-weaken")
6156 (version "1.04")
6157 (source
6158 (origin
6159 (method url-fetch)
6160 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6161 "Task-Weaken-" version ".tar.gz"))
6162 (sha256
6163 (base32
6164 "1i7kd9v8fjsqyhr4rx4a1jv7n5vfjjm1v4agb24pizh0b72p3qk7"))))
6165 (build-system perl-build-system)
6166 (home-page "http://search.cpan.org/dist/Task-Weaken")
6167 (synopsis "Ensure that a platform has weaken support")
6168 (description "One recurring problem in modules that use Scalar::Util's
6169 weaken function is that it is not present in the pure-perl variant. If
6170 Scalar::Util is not available at all, it will issue a normal dependency on the
6171 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
6172 module does not have weaken, the install will bail out altogether with a long
6173 error encouraging the user to seek support.")
6174 (license (package-license perl))))
6175
6176 (define-public perl-template-toolkit
6177 (package
6178 (name "perl-template-toolkit")
6179 (version "2.26")
6180 (source
6181 (origin
6182 (method url-fetch)
6183 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
6184 "Template-Toolkit-" version ".tar.gz"))
6185 (sha256
6186 (base32
6187 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
6188 (build-system perl-build-system)
6189 (propagated-inputs
6190 `(("perl-appconfig" ,perl-appconfig)
6191 ("perl-test-leaktrace" ,perl-test-leaktrace)))
6192 (home-page "http://search.cpan.org/dist/Template-Toolkit")
6193 (synopsis "Template processing system for Perl")
6194 (description "The Template Toolkit is a collection of modules which
6195 implement an extensible template processing system. It was originally
6196 designed and remains primarily useful for generating dynamic web content, but
6197 it can be used equally well for processing any other kind of text based
6198 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
6199 (license (package-license perl))))
6200
6201 (define-public perl-template-timer
6202 (package
6203 (name "perl-template-timer")
6204 (version "1.00")
6205 (source
6206 (origin
6207 (method url-fetch)
6208 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
6209 "Template-Timer-" version ".tar.gz"))
6210 (sha256
6211 (base32
6212 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
6213 (build-system perl-build-system)
6214 (propagated-inputs
6215 `(("perl-template-toolkit" ,perl-template-toolkit)))
6216 (home-page "http://search.cpan.org/dist/Template-Timer")
6217 (synopsis "Profiling for Template Toolkit")
6218 (description "Template::Timer provides inline profiling of the template
6219 processing in Perl code.")
6220 (license (list gpl3 artistic2.0))))
6221
6222 (define-public perl-term-encoding
6223 (package
6224 (name "perl-term-encoding")
6225 (version "0.02")
6226 (source
6227 (origin
6228 (method url-fetch)
6229 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
6230 "Term-Encoding-" version ".tar.gz"))
6231 (sha256
6232 (base32
6233 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
6234 (build-system perl-build-system)
6235 (home-page "http://search.cpan.org/dist/Term-Encoding")
6236 (synopsis "Detect encoding of the current terminal")
6237 (description "Term::Encoding is a simple module to detect the encoding of
6238 the current terminal expects in various ways.")
6239 (license (package-license perl))))
6240
6241 (define-public perl-term-progressbar
6242 (package
6243 (name "perl-term-progressbar")
6244 (version "2.17")
6245 (source
6246 (origin
6247 (method url-fetch)
6248 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
6249 "Term-ProgressBar-" version ".tar.gz"))
6250 (sha256
6251 (base32
6252 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
6253 (build-system perl-build-system)
6254 (native-inputs
6255 `(("perl-capture-tiny" ,perl-capture-tiny)
6256 ("perl-test-exception" ,perl-test-exception)))
6257 (propagated-inputs
6258 `(("perl-class-methodmaker" ,perl-class-methodmaker)
6259 ("perl-term-readkey" ,perl-term-readkey)))
6260 (home-page "http://search.cpan.org/dist/Term-ProgressBar")
6261 (synopsis "Progress meter on a standard terminal")
6262 (description "Term::ProgressBar provides a simple progress bar on the
6263 terminal, to let the user know that something is happening, roughly how much
6264 stuff has been done, and maybe an estimate at how long remains.")
6265 (license (package-license perl))))
6266
6267 (define-public perl-term-progressbar-quiet
6268 (package
6269 (name "perl-term-progressbar-quiet")
6270 (version "0.31")
6271 (source
6272 (origin
6273 (method url-fetch)
6274 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
6275 "Term-ProgressBar-Quiet-" version ".tar.gz"))
6276 (sha256
6277 (base32
6278 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
6279 (build-system perl-build-system)
6280 (propagated-inputs
6281 `(("perl-io-interactive" ,perl-io-interactive)
6282 ("perl-term-progressbar" ,perl-term-progressbar)
6283 ("perl-test-mockobject" ,perl-test-mockobject)))
6284 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Quiet")
6285 (synopsis "Progress meter if run interactively")
6286 (description "Term::ProgressBar is a wonderful module for showing progress
6287 bars on the terminal. This module acts very much like that module when it is
6288 run interactively. However, when it is not run interactively (for example, as
6289 a cron job) then it does not show the progress bar.")
6290 (license (package-license perl))))
6291
6292 (define-public perl-term-progressbar-simple
6293 (package
6294 (name "perl-term-progressbar-simple")
6295 (version "0.03")
6296 (source
6297 (origin
6298 (method url-fetch)
6299 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
6300 "Term-ProgressBar-Simple-" version ".tar.gz"))
6301 (sha256
6302 (base32
6303 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
6304 (build-system perl-build-system)
6305 (propagated-inputs
6306 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
6307 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Simple")
6308 (synopsis "Simple progress bars")
6309 (description "Term::ProgressBar::Simple tells you how much work has been
6310 done, how much is left to do, and estimate how long it will take.")
6311 (license (package-license perl))))
6312
6313 (define-public perl-term-readkey
6314 (package
6315 (name "perl-term-readkey")
6316 (version "2.37")
6317 (source
6318 (origin
6319 (method url-fetch)
6320 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
6321 "TermReadKey-" version ".tar.gz"))
6322 (sha256
6323 (base32
6324 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
6325 (build-system perl-build-system)
6326 (home-page "http://search.cpan.org/dist/TermReadKey")
6327 (synopsis "Simple terminal control")
6328 (description "This module, ReadKey, provides ioctl control for terminals
6329 so the input modes can be changed (thus allowing reads of a single character
6330 at a time), and also provides non-blocking reads of stdin, as well as several
6331 other terminal related features, including retrieval/modification of the
6332 screen size, and retrieval/modification of the control characters.")
6333 (license (package-license perl))))
6334
6335 (define-public perl-test-base
6336 (package
6337 (name "perl-test-base")
6338 (version "0.88")
6339 (source
6340 (origin
6341 (method url-fetch)
6342 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
6343 "Test-Base-" version ".tar.gz"))
6344 (sha256
6345 (base32
6346 "0fch1cvivnszbnwhpfmwv1rin04j5xkj1n1ylfmlxg6bm72qqdjj"))))
6347 (build-system perl-build-system)
6348 (native-inputs
6349 `(("perl-algorithm-diff" ,perl-algorithm-diff)
6350 ("perl-text-diff" ,perl-text-diff)))
6351 (propagated-inputs
6352 `(("perl-spiffy" ,perl-spiffy)
6353 ("perl-test-deep" ,perl-test-deep)))
6354 (home-page "http://search.cpan.org/dist/Test-Base")
6355 (synopsis "Data-driven testing framework for Perl")
6356 (description "Test::Base gives a way to trivially write your own test
6357 framework base class. It concentrates on offering reusable data driven
6358 patterns, so that you can write tests with a minimum of code.")
6359 (license (package-license perl))))
6360
6361 (define-public perl-test-class
6362 (package
6363 (name "perl-test-class")
6364 (version "0.50")
6365 (source
6366 (origin
6367 (method url-fetch)
6368 (uri (string-append
6369 "https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Class-"
6370 version
6371 ".tar.gz"))
6372 (sha256
6373 (base32
6374 "0l0kk5jvxjkic2jkf1r7v41irb344aasnzr3f5ygjgxgiknm9489"))))
6375 (build-system perl-build-system)
6376 (native-inputs
6377 `(("perl-test-exception" ,perl-test-exception)))
6378 (inputs
6379 `(("perl-module-runtime" ,perl-module-runtime)
6380 ("perl-mro-compat" ,perl-mro-compat)
6381 ("perl-try-tiny" ,perl-try-tiny)))
6382 (home-page "http://search.cpan.org/dist/Test-Class")
6383 (synopsis "Easily create test classes in an xUnit/JUnit style")
6384 (description "@code{Test::Class} provides a simple way of creating classes
6385 and objects to test your code in an xUnit style.
6386
6387 Built using @code{Test::Builder}, it was designed to work with other
6388 @code{Test::Builder} based modules (@code{Test::More},
6389 @code{Test::Differences}, @code{Test::Exception}, etc.).")
6390 (license (package-license perl))))
6391
6392 (define-public perl-test-class-most
6393 (package
6394 (name "perl-test-class-most")
6395 (version "0.08")
6396 (source
6397 (origin
6398 (method url-fetch)
6399 (uri (string-append
6400 "mirror://cpan/authors/id/O/OV/OVID/Test-Class-Most-"
6401 version
6402 ".tar.gz"))
6403 (sha256
6404 (base32
6405 "1zvx9hil0mg0pnb8xfa4m0xgjpvh8s5gnbyprq3xwpdsdgcdwk33"))))
6406 (build-system perl-build-system)
6407 (native-inputs
6408 `(("perl-module-build" ,perl-module-build)))
6409 (inputs
6410 `(("perl-test-class" ,perl-test-class)
6411 ("perl-test-most" ,perl-test-most)
6412 ("perl-module-runtime" ,perl-module-runtime)
6413 ("perl-try-tiny" ,perl-try-tiny)
6414 ("perl-mro-compat" ,perl-mro-compat)))
6415 (home-page "http://search.cpan.org/dist/Test-Class-Most")
6416 (synopsis "Test classes the easy way")
6417 (description "@code{Test::Class::Most} provides some more convenience when
6418 using @code{Test::Class}.")
6419 (license (package-license perl))))
6420
6421 (define-public perl-test-cleannamespaces
6422 (package
6423 (name "perl-test-cleannamespaces")
6424 (version "0.22")
6425 (source
6426 (origin
6427 (method url-fetch)
6428 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6429 "Test-CleanNamespaces-" version ".tar.gz"))
6430 (sha256
6431 (base32
6432 "1jma95agqqy7iwdcl6jbg1waqz7mjqng4l046lpknhfxjhcj4al6"))))
6433 (build-system perl-build-system)
6434 (native-inputs
6435 `(("perl-file-pushd" ,perl-file-pushd)
6436 ("perl-test-requires" ,perl-test-requires)
6437 ("perl-test-deep" ,perl-test-deep)
6438 ("perl-test-warnings" ,perl-test-warnings)
6439 ("perl-test-tester" ,perl-test-tester)
6440 ("perl-test-needs" ,perl-test-needs)))
6441 (propagated-inputs
6442 `(("perl-namespace-clean" ,perl-namespace-clean)
6443 ("perl-package-stash" ,perl-package-stash)
6444 ("perl-sub-identify" ,perl-sub-identify)
6445 ("perl-sub-exporter" ,perl-sub-exporter)
6446 ("perl-file-find-rule" ,perl-file-find-rule)
6447 ("perl-file-find-rule-perl" ,perl-file-find-rule-perl)))
6448 (home-page "http://search.cpan.org/dist/Test-CleanNamespaces")
6449 (synopsis "Check for uncleaned imports")
6450 (description "This module lets you check your module's namespaces for
6451 imported functions you might have forgotten to remove with
6452 namespace::autoclean or namespace::clean and are therefore available to be
6453 called as methods, which usually isn't want you want.")
6454 (license (package-license perl))))
6455
6456 (define-public perl-test-deep
6457 (package
6458 (name "perl-test-deep")
6459 (version "1.120")
6460 (source (origin
6461 (method url-fetch)
6462 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
6463 "Test-Deep-" version ".tar.gz"))
6464 (sha256
6465 (base32
6466 "1kdy06r0yg7zwarqglc9163vbfb0sfc4s6ld4pw5q7i9f7mghzi0"))))
6467 (build-system perl-build-system)
6468 (inputs `(("perl-test-tester" ,perl-test-tester)
6469 ("perl-test-nowarnings" ,perl-test-nowarnings)))
6470 (synopsis "Flexible deep comparison for the Test::Builder framework")
6471 (description
6472 "Test::Deep compares two structures by going through each level, ensuring
6473 that the values match, that arrays and hashes have the same elements and that
6474 references are blessed into the correct class. It also handles circular data
6475 structures without getting caught in an infinite loop.")
6476 (home-page "http://search.cpan.org/dist/Test-Deep")
6477 (license gpl1+))) ; or "Artistic License"
6478
6479 (define-public perl-test-differences
6480 (package
6481 (name "perl-test-differences")
6482 (version "0.63")
6483 (source
6484 (origin
6485 (method url-fetch)
6486 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
6487 "Test-Differences-" version ".tar.gz"))
6488 (sha256
6489 (base32
6490 "0rhs4q6qn64ji06ns7lwl6iiiw3mggvd9xk9nkiqvx1jihbplrbw"))))
6491 (build-system perl-build-system)
6492 (native-inputs
6493 `(("perl-module-build" ,perl-module-build)))
6494 (propagated-inputs
6495 `(("perl-text-diff" ,perl-text-diff)
6496 ("perl-capture-tiny" ,perl-capture-tiny)))
6497 (home-page "http://search.cpan.org/dist/Test-Differences")
6498 (synopsis "Test strings and data structures and show differences")
6499 (description "This module exports three test functions and four diff-style
6500 functions.")
6501 ;; See LICENSE section of Test/Differences.pm, which reads "... GNU public
6502 ;; license, any version, ..."
6503 (license gpl3+)))
6504
6505 (define-public perl-test-directory
6506 (package
6507 (name "perl-test-directory")
6508 (version "0.041")
6509 (source
6510 (origin
6511 (method url-fetch)
6512 (uri (string-append "mirror://cpan/authors/id/S/SA/SANBEG/"
6513 "Test-Directory-" version ".tar.gz"))
6514 (sha256
6515 (base32
6516 "1ncql08cizhicbxwd753b4czns8nlcnlw0zfjcfrbdd41x4j6hqr"))))
6517 (build-system perl-build-system)
6518 (native-inputs `(("perl-test-exception" ,perl-test-exception)))
6519 (home-page "http://search.cpan.org/dist/Test-Directory")
6520 (synopsis "Perl extension for maintaining test directories")
6521 (description "Testing code can involve making sure that files are created
6522 and deleted as expected. Doing this manually can be error prone, as it's easy
6523 to forget a file, or miss that some unexpected file was added. This module
6524 simplifies maintaining test directories by tracking their status as they are
6525 modified or tested with this API, making it simple to test both individual
6526 files, as well as to verify that there are no missing or unknown files.")
6527 (license (package-license perl))))
6528
6529 (define-public perl-test-exception
6530 (package
6531 (name "perl-test-exception")
6532 (version "0.43")
6533 (source
6534 (origin
6535 (method url-fetch)
6536 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
6537 "Test-Exception-" version ".tar.gz"))
6538 (sha256
6539 (base32
6540 "0cxm7s4bg0xpxa6l6996a6iq3brr4j7p4hssnkc6dxv4fzq16sqm"))))
6541 (build-system perl-build-system)
6542 (native-inputs
6543 `(("perl-module-build" ,perl-module-build)))
6544 (propagated-inputs
6545 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
6546 (home-page "http://search.cpan.org/dist/Test-Exception")
6547 (synopsis "Test exception based code")
6548 (description "This module provides a few convenience methods for testing
6549 exception based code. It is built with Test::Builder and plays happily with
6550 Test::More and friends.")
6551 (license (package-license perl))))
6552
6553 (define-public perl-test-fatal
6554 (package
6555 (name "perl-test-fatal")
6556 (version "0.014")
6557 (source
6558 (origin
6559 (method url-fetch)
6560 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
6561 "Test-Fatal-" version ".tar.gz"))
6562 (sha256
6563 (base32
6564 "1c6bs68mss4q7cyapkv2c0jn66i21050p0faxf3s3417gdffzp5w"))))
6565 (build-system perl-build-system)
6566 (propagated-inputs `(("perl-try-tiny" ,perl-try-tiny)))
6567 (home-page "http://search.cpan.org/dist/Test-Fatal")
6568 (synopsis "Simple helpers for testing code with exceptions")
6569 (description "Test::Fatal is an alternative to the popular
6570 Test::Exception. It does much less, but should allow greater flexibility in
6571 testing exception-throwing code with about the same amount of typing.")
6572 (license (package-license perl))))
6573
6574 (define-public perl-test-files
6575 (package
6576 (name "perl-test-files")
6577 (version "0.14")
6578 (source
6579 (origin
6580 (method url-fetch)
6581 (uri (string-append
6582 "mirror://cpan/authors/id/P/PH/PHILCROW/Test-Files-"
6583 version
6584 ".tar.gz"))
6585 (sha256
6586 (base32
6587 "1zn33yigznq7i1jr4yjr4lxvc6bn7znkbqdzj7slhc146pqapkln"))))
6588 (build-system perl-build-system)
6589 (propagated-inputs
6590 `(("perl-algorithm-diff" ,perl-algorithm-diff)
6591 ("perl-text-diff" ,perl-text-diff)))
6592 (home-page "http://search.cpan.org/dist/Test-Files")
6593 (synopsis "Ease software testing with files and directories")
6594 (description "This library provides functions to enable testing of files
6595 and directories. For instance, the @code{file_ok} helper can test whether the
6596 contents of a file is equal to a particular string.")
6597 (license (package-license perl))))
6598
6599 (define-public perl-test-harness
6600 (package
6601 (name "perl-test-harness")
6602 (version "3.36")
6603 (source
6604 (origin
6605 (method url-fetch)
6606 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
6607 "Test-Harness-" version ".tar.gz"))
6608 (sha256
6609 (base32
6610 "0gmnjss0hjkyiwvgby50nl5nzv254pn7fjqqdysjil21n09nymp7"))))
6611 (build-system perl-build-system)
6612 (arguments
6613 `(#:phases (alist-cons-before
6614 'check 'patch-test
6615 (lambda* (#:key inputs #:allow-other-keys)
6616 ;; This test looks for "#!/usr/bin/perl" in some source.
6617 ;; Patch what the test looks for.
6618 (substitute* "t/source.t"
6619 (("#!/usr/bin/perl")
6620 (string-append "#!" (assoc-ref inputs "perl")
6621 "/bin/perl"))))
6622 %standard-phases)))
6623 (home-page "http://search.cpan.org/dist/Test-Harness")
6624 (synopsis "Run Perl standard test scripts with statistics")
6625 (description "Simple test harness which allows tests to be run and results
6626 automatically aggregated and output to STDOUT.")
6627 (license (package-license perl))))
6628
6629 (define-public perl-test-leaktrace
6630 (package
6631 (name "perl-test-leaktrace")
6632 (version "0.15")
6633 (source
6634 (origin
6635 (method url-fetch)
6636 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
6637 "Test-LeakTrace-" version ".tar.gz"))
6638 (sha256
6639 (base32
6640 "0pp6ip012c474ibw0mwd7jgig34gf98bb8xlqk4wdvw1d65vbf7g"))))
6641 (build-system perl-build-system)
6642 (home-page "http://search.cpan.org/dist/Test-LeakTrace")
6643 (synopsis "Traces memory leaks in Perl")
6644 (description "Test::LeakTrace provides several functions that trace memory
6645 leaks. This module scans arenas, the memory allocation system, so it can
6646 detect any leaked SVs in given blocks.")
6647 (license (package-license perl))))
6648
6649 (define-public perl-test-longstring
6650 (package
6651 (name "perl-test-longstring")
6652 (version "0.17")
6653 (source
6654 (origin
6655 (method url-fetch)
6656 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
6657 "Test-LongString-" version ".tar.gz"))
6658 (sha256
6659 (base32
6660 "0kwp7rfr1i2amz4ckigkv13ah7jr30q6l5k4wk0vxl84myg39i5b"))))
6661 (build-system perl-build-system)
6662 (home-page "http://search.cpan.org/dist/Test-LongString")
6663 (synopsis "Tests strings for equality, with more helpful failures")
6664 (description "This module provides some drop-in replacements for the
6665 string comparison functions of Test::More, but which are more suitable when
6666 you test against long strings.")
6667 (license (package-license perl))))
6668
6669 (define-public perl-test-manifest
6670 (package
6671 (name "perl-test-manifest")
6672 (version "2.02")
6673 (source (origin
6674 (method url-fetch)
6675 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
6676 "Test-Manifest-" version ".tar.gz"))
6677 (sha256
6678 (base32
6679 "15ik52l9macrrfizf4y6wj71d4lx7w590h2dfajnkmbxmz786iq6"))))
6680 (build-system perl-build-system)
6681 (native-inputs
6682 `(("perl-test-pod" ,perl-test-pod)
6683 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
6684 (home-page "http://search.cpan.org/dist/Test-Manifest")
6685 (synopsis "Interact with a t/test_manifest file")
6686 (description "@code{Test::Manifest} overrides the default test file order. Instead of
6687 running all of the t/*.t files in ASCII-betical order, it looks in the t/test_manifest
6688 file to find out which tests you want to run and the order in which you want to run them.
6689 It constructs the right value for the build system to do the right thing.")
6690 (license (package-license perl))))
6691
6692 (define-public perl-test-mockobject
6693 (package
6694 (name "perl-test-mockobject")
6695 (version "1.20150527")
6696 (source
6697 (origin
6698 (method url-fetch)
6699 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
6700 "Test-MockObject-" version ".tar.gz"))
6701 (sha256
6702 (base32
6703 "160xvhbpwqjaff4fgckvldknldzcbn1z3jvyzybs7cqlj1x3bwdd"))))
6704 (build-system perl-build-system)
6705 (native-inputs
6706 `(("perl-test-exception" ,perl-test-exception)
6707 ("perl-test-warn" ,perl-test-warn)))
6708 (propagated-inputs
6709 `(("perl-test-exception" ,perl-test-exception)
6710 ("perl-test-warn" ,perl-test-warn)
6711 ("perl-universal-can" ,perl-universal-can)
6712 ("perl-universal-isa" ,perl-universal-isa)))
6713 (arguments `(#:tests? #f)) ;TODO: tests require perl-cgi
6714 (home-page "http://search.cpan.org/dist/Test-MockObject")
6715 (synopsis "Emulate troublesome interfaces in Perl")
6716 (description "Test::MockObject allows you to create objects that conform
6717 to particular interfaces with very little code. You don't have to reimplement
6718 the behavior, just the input and the output.")
6719 (license (package-license perl))))
6720
6721 (define-public perl-test-mocktime
6722 (package
6723 (name "perl-test-mocktime")
6724 (version "0.13")
6725 (source
6726 (origin
6727 (method url-fetch)
6728 (uri (string-append "mirror://cpan/authors/id/D/DD/DDICK/"
6729 "Test-MockTime-" version ".tar.gz"))
6730 (sha256
6731 (base32
6732 "0yrqmjg33akannwz2f99rfm7dvvxpzsdj23lsvlvfi4qslrlqfvw"))))
6733 (build-system perl-build-system)
6734 (home-page "http://search.cpan.org/dist/Test-MockTime")
6735 (synopsis "Replaces actual time with simulated time")
6736 (description "This module was created to enable test suites to test code
6737 at specific points in time. Specifically it overrides localtime, gmtime and
6738 time at compile time and then relies on the user supplying a mock time via
6739 set_relative_time, set_absolute_time or set_fixed_time to alter future calls
6740 to gmtime,time or localtime.")
6741 (license (package-license perl))))
6742
6743 (define-public perl-test-most
6744 (package
6745 (name "perl-test-most")
6746 (version "0.34")
6747 (source
6748 (origin
6749 (method url-fetch)
6750 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
6751 "Test-Most-" version ".tar.gz"))
6752 (sha256
6753 (base32
6754 "0i72aih3pakm8gh73wx1n4dwq8lbx6dvxhla46gsapszws6hr0n2"))))
6755 (build-system perl-build-system)
6756 (propagated-inputs
6757 `(("perl-test-differences" ,perl-test-differences)
6758 ("perl-test-warn" ,perl-test-warn)
6759 ("perl-exception-class" ,perl-exception-class)
6760 ("perl-test-deep" ,perl-test-deep)
6761 ("perl-test-exception" ,perl-test-exception)))
6762 (home-page "http://search.cpan.org/dist/Test-Most")
6763 (synopsis "Most commonly needed test functions and features")
6764 (description "This module provides the most commonly used testing
6765 functions, along with automatically turning on strict and warning and gives a
6766 bit more fine-grained control over test suites.")
6767 (license (package-license perl))))
6768
6769 (define-public perl-test-needs
6770 (package
6771 (name "perl-test-needs")
6772 (version "0.002005")
6773 (source
6774 (origin
6775 (method url-fetch)
6776 (uri (string-append
6777 "mirror://cpan/authors/id/H/HA/HAARG/Test-Needs-"
6778 version
6779 ".tar.gz"))
6780 (sha256
6781 (base32
6782 "16gkgpmr9hvkz382iaqd3500269lk2d44fqaw3dsrvc66nc36kss"))))
6783 (build-system perl-build-system)
6784 (home-page
6785 "http://search.cpan.org/dist/Test-Needs")
6786 (synopsis
6787 "Skip tests when modules not available")
6788 (description "@code{Test::Needs} allows you to skip test scripts if
6789 modules are not available. The requested modules will be loaded, and
6790 optionally have their versions checked. If the module is missing, the test
6791 script will be skipped. Modules that are found but fail to compile will exit
6792 with an error rather than skip.
6793
6794 If used in a subtest, the remainder of the subtest will be skipped.")
6795 (license (package-license perl))))
6796
6797 (define-public perl-test-nowarnings
6798 (package
6799 (name "perl-test-nowarnings")
6800 (version "1.04")
6801 (source (origin
6802 (method url-fetch)
6803 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6804 "Test-NoWarnings-" version ".tar.gz"))
6805 (sha256
6806 (base32
6807 "0v385ch0hzz9naqwdw2az3zdqi15gka76pmiwlgsy6diiijmg2k3"))))
6808 (build-system perl-build-system)
6809 (inputs `(("perl-test-tester" ,perl-test-tester)))
6810 (synopsis "Ensure no warnings are produced while testing")
6811 (description
6812 "This modules causes any warnings during testing to be captured and
6813 stored. It automatically adds an extra test that will run when your script
6814 ends to check that there were no warnings. If there were any warnings, the
6815 test will fail and output diagnostics of where, when and what the warning was,
6816 including a stack trace of what was going on when it occurred.")
6817 (home-page (string-append "http://search.cpan.org/~adamk/"
6818 "Test-NoWarnings-" version))
6819 (license lgpl2.1)))
6820
6821 (define-public perl-test-number-delta
6822 (package
6823 (name "perl-test-number-delta")
6824 (version "1.06")
6825 (source (origin
6826 (method url-fetch)
6827 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6828 "Test-Number-Delta-" version ".tar.gz"))
6829 (sha256
6830 (base32
6831 "0jfhzhpzkc23mkrlbnv085ykpfncmy99hvppbzjnrpvgks8k0m2k"))))
6832 (build-system perl-build-system)
6833 (home-page "http://search.cpan.org/dist/Test-Number-Delta")
6834 (synopsis
6835 "Compare the difference between numbers against a given tolerance")
6836 (description
6837 "At some point or another, most programmers find they need to compare
6838 floating-point numbers for equality. The typical idiom is to test if the
6839 absolute value of the difference of the numbers is within a desired tolerance,
6840 usually called epsilon. This module provides such a function for use with
6841 @code{Test::More}.")
6842 (license asl2.0)))
6843
6844 (define-public perl-test-output
6845 (package
6846 (name "perl-test-output")
6847 (version "1.03")
6848 (source (origin
6849 (method url-fetch)
6850 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
6851 "Test-Output-" version ".tar.gz"))
6852 (sha256
6853 (base32
6854 "12991jnzj4cbw9whhprmqvnzd1ayii84g2mh8vxbjngwqrjsy41i"))))
6855 (build-system perl-build-system)
6856 (propagated-inputs
6857 `(("perl-capture-tiny" ,perl-capture-tiny)
6858 ("perl-test-tester" ,perl-test-tester)
6859 ("perl-sub-exporter" ,perl-sub-exporter)))
6860 (synopsis "Utilities to test STDOUT and STDERR messages")
6861 (description
6862 "Test::Output provides a simple interface for testing output sent to
6863 STDOUT or STDERR. A number of different utilities are included to try and be
6864 as flexible as possible to the tester.")
6865 (home-page (string-append "http://search.cpan.org/~bdfoy/"
6866 "Test-Output-" version))
6867 (license (package-license perl))))
6868
6869 (define-public perl-test-pod
6870 (package
6871 (name "perl-test-pod")
6872 (version "1.48")
6873 (source
6874 (origin
6875 (method url-fetch)
6876 (uri (string-append "mirror://cpan/authors/id/D/DW/DWHEELER/"
6877 "Test-Pod-" version ".tar.gz"))
6878 (sha256
6879 (base32
6880 "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"))))
6881 (build-system perl-build-system)
6882 (native-inputs `(("perl-module-build" ,perl-module-build)))
6883 (home-page "http://search.cpan.org/dist/Test-Pod")
6884 (synopsis "Check for POD errors in files")
6885 (description "Check POD files for errors or warnings in a test file, using
6886 Pod::Simple to do the heavy lifting.")
6887 (license (package-license perl))))
6888
6889 (define-public perl-test-pod-coverage
6890 (package
6891 (name "perl-test-pod-coverage")
6892 (version "1.10")
6893 (source
6894 (origin
6895 (method url-fetch)
6896 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
6897 "Test-Pod-Coverage-" version ".tar.gz"))
6898 (sha256
6899 (base32
6900 "1m203mhgfilz7iqc8mxaw4lw02fz391mni3n25sfx7nryylwrja8"))))
6901 (build-system perl-build-system)
6902 (propagated-inputs
6903 `(("perl-pod-coverage" ,perl-pod-coverage)))
6904 (home-page "http://search.cpan.org/dist/Test-Pod-Coverage")
6905 (synopsis "Check for pod coverage")
6906 (description "This module adds a test to your Perl distribution which
6907 checks for pod coverage of all appropriate files.")
6908 (license artistic2.0)))
6909
6910 (define-public perl-test-requires
6911 (package
6912 (name "perl-test-requires")
6913 (version "0.08")
6914 (source
6915 (origin
6916 (method url-fetch)
6917 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
6918 "Test-Requires-" version ".tar.gz"))
6919 (sha256
6920 (base32
6921 "08c29m0dn34384mmmpqqlbb899zpbkkc01c2lsp31mch1frv9cg7"))))
6922 (build-system perl-build-system)
6923 (home-page "http://search.cpan.org/dist/Test-Requires")
6924 (synopsis "Checks to see if the module can be loaded")
6925 (description "Test::Requires checks to see if the module can be loaded.
6926 If this fails, then rather than failing tests this skips all tests.")
6927 (license (package-license perl))))
6928
6929 (define-public perl-test-script
6930 (package
6931 (name "perl-test-script")
6932 (version "1.07")
6933 (source (origin
6934 (method url-fetch)
6935 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6936 "Test-Script-" version ".tar.gz"))
6937 (sha256
6938 (base32
6939 "15pb4zzsnm33msc1syhig2bk05xqc0pckmfyahdwbd177bj5w7p2"))))
6940 (build-system perl-build-system)
6941 (propagated-inputs
6942 `(("probe-perl" ,perl-probe-perl)
6943 ("ipc-run3" ,perl-ipc-run3)))
6944 (synopsis "Basic cross-platform tests for scripts")
6945 (description
6946 "The intent of the Test::Script module is to provide a series of basic
6947 tests for 80% of the testing you will need to do for scripts in the script (or
6948 bin as is also commonly used) paths of your Perl distribution.")
6949 (home-page (string-append "http://search.cpan.org/~adamk/"
6950 "Test-Script-" version))
6951 (license (package-license perl))))
6952
6953 (define-public perl-test-sharedfork
6954 (package
6955 (name "perl-test-sharedfork")
6956 (version "0.29")
6957 (source
6958 (origin
6959 (method url-fetch)
6960 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
6961 "Test-SharedFork-" version ".tar.gz"))
6962 (sha256
6963 (base32
6964 "0vlak10q4gcf0ch0rfcb9lvddav6r8h15iipzbkbgf9mrj47gbv3"))))
6965 (build-system perl-build-system)
6966 (native-inputs
6967 `(("perl-test-requires" ,perl-test-requires)))
6968 (home-page "http://search.cpan.org/dist/Test-SharedFork")
6969 (synopsis "Fork test in Perl")
6970 (description "Test::SharedFork is a utility module for Test::Builder. It
6971 makes fork(2) safe to use in test cases.")
6972 (license (package-license perl))))
6973
6974 (define-public perl-test-simple
6975 (package
6976 (name "perl-test-simple")
6977 (version "1.302078")
6978 (source (origin
6979 (method url-fetch)
6980 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
6981 "Test-Simple-" version ".tar.gz"))
6982 (sha256
6983 (base32
6984 "05acl24kmz3dgr2nayy162yaf0kz92h1j5vkiavyv6mdh2lz6ixb"))))
6985 (build-system perl-build-system)
6986 (synopsis "Basic utilities for writing tests")
6987 (description
6988 "Test::Simple contains basic utilities for writing tests.")
6989 (home-page (string-append "http://search.cpan.org/~exodist/"
6990 "Test-Simple-" version))
6991 (license (package-license perl))))
6992
6993 (define-public perl-test-tester
6994 (package
6995 (name "perl-test-tester")
6996 (version "0.109")
6997 (source (origin
6998 (method url-fetch)
6999 (uri (string-append "mirror://cpan/authors/id/F/FD/FDALY/"
7000 "Test-Tester-" version ".tar.gz"))
7001 (sha256
7002 (base32
7003 "0m9n28z09kq455r5nydj1bnr85lvmbfpcbjdkjfbpmfb5xgciiyk"))))
7004 (build-system perl-build-system)
7005 (synopsis "Simplify running Test::Builder tests")
7006 (description
7007 "Test::Tester allows testing of test modules based on Test::Builder with
7008 a minimum of effort.")
7009 (home-page (string-append "http://search.cpan.org/~fdaly/"
7010 "Test-Tester-" version))
7011 ;; "Under the same license as Perl itself"
7012 (license (package-license perl))))
7013
7014 (define-public perl-test-trap
7015 (package
7016 (name "perl-test-trap")
7017 (version "v0.3.0")
7018 (source
7019 (origin
7020 (method url-fetch)
7021 (uri (string-append "mirror://cpan/authors/id/E/EB/EBHANSSEN/"
7022 "Test-Trap-" version ".tar.gz"))
7023 (sha256
7024 (base32
7025 "05b4zc4087imwphls4yksg4chzx9yavbri301gaxas9kv1yhx13w"))))
7026 (build-system perl-build-system)
7027 (native-inputs
7028 `(("perl-module-build" ,perl-module-build)))
7029 (propagated-inputs
7030 `(("perl-test-tester" ,perl-test-tester)
7031 ("perl-data-dump" ,perl-data-dump)))
7032 (home-page "http://search.cpan.org/dist/Test-Trap")
7033 (synopsis "Trap exit codes, exceptions, output, and so on")
7034 (description "This module is primarily (but not exclusively) for use in
7035 test scripts: A block eval configurable and extensible but by default trapping
7036 STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return values
7037 from boxed blocks of test code.")
7038 (license (package-license perl))))
7039
7040 (define-public perl-test-utf8
7041 (package
7042 (name "perl-test-utf8")
7043 (version "1.01")
7044 (source
7045 (origin
7046 (method url-fetch)
7047 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKF/"
7048 "Test-utf8-" version ".tar.gz"))
7049 (sha256
7050 (base32
7051 "0yhvf735v334qqvp9zg7i66qyk6r4cbk5s2psv93d3fdd4bindzg"))))
7052 (build-system perl-build-system)
7053 (home-page "http://search.cpan.org/dist/Test-utf8")
7054 (synopsis "UTF-8 testing in Perl")
7055 (description "This module is a collection of tests useful for dealing with
7056 UTF-8 strings in Perl. This module has two types of tests: The validity tests
7057 check if a string is valid and not corrupt, whereas the characteristics tests
7058 will check that string has a given set of characteristics.")
7059 (license (package-license perl))))
7060
7061 (define-public perl-test-warn
7062 (package
7063 (name "perl-test-warn")
7064 (version "0.30")
7065 (source
7066 (origin
7067 (method url-fetch)
7068 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
7069 "Test-Warn-" version ".tar.gz"))
7070 (sha256
7071 (base32
7072 "0haf2ii7br5z0psmkvlvmx2z2q9qz1c70gx0969r378qjidmb5w1"))))
7073 (build-system perl-build-system)
7074 (propagated-inputs
7075 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
7076 (home-page "http://search.cpan.org/dist/Test-Warn")
7077 (synopsis "Perl extension to test methods for warnings")
7078 (description "This module provides a few convenience methods for testing
7079 warning based code.")
7080 (license (package-license perl))))
7081
7082 (define-public perl-test-warnings
7083 (package
7084 (name "perl-test-warnings")
7085 (version "0.026")
7086 (source
7087 (origin
7088 (method url-fetch)
7089 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7090 "Test-Warnings-" version ".tar.gz"))
7091 (sha256
7092 (base32
7093 "024srkwjckp15dxkni9lb1hc8bg4xwc52zz0iich8rv1nnqnhaxf"))))
7094 (build-system perl-build-system)
7095 (home-page "http://search.cpan.org/dist/Test-Warnings")
7096 (synopsis "Test for warnings and the lack of them")
7097 (description "This module is intended to be used as a drop-in replacement
7098 for Test::NoWarnings. It also adds an extra test, but runs this test before
7099 done_testing calculates the test count, rather than after. It does this by
7100 hooking into done_testing as well as via an END block. You can declare a
7101 plan, or not, and things will still Just Work.")
7102 (license (package-license perl))))
7103
7104 (define-public perl-test-without-module
7105 (package
7106 (name "perl-test-without-module")
7107 (version "0.18")
7108 (source
7109 (origin
7110 (method url-fetch)
7111 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
7112 "Test-Without-Module-" version ".tar.gz"))
7113 (sha256
7114 (base32
7115 "0zwc2dk5srd02j4p049w77m89iw5nbff381rmhcbaz8x2w5kdhz2"))))
7116 (build-system perl-build-system)
7117 (home-page "http://search.cpan.org/dist/Test-Without-Module")
7118 (synopsis "Test fallback behaviour in absence of modules")
7119 (description "This module allows you to deliberately hide modules from a
7120 program even though they are installed. This is mostly useful for testing
7121 modules that have a fallback when a certain dependency module is not
7122 installed.")
7123 (license (package-license perl))))
7124
7125 (define-public perl-test-writevariants
7126 (package
7127 (name "perl-test-writevariants")
7128 (version "0.010")
7129 (source
7130 (origin
7131 (method url-fetch)
7132 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7133 "Test-WriteVariants-" version ".tar.gz"))
7134 (sha256
7135 (base32
7136 "0kklp05fj98yiq8znyfx9lx1vmjay2ypfb868qdwv3kf93m5zjwr"))))
7137 (build-system perl-build-system)
7138 (native-inputs
7139 `(("perl-test-most" ,perl-test-most)
7140 ("perl-test-directory" ,perl-test-directory)))
7141 (propagated-inputs
7142 `(("perl-data-tumbler" ,perl-data-tumbler)
7143 ("perl-file-homedir" ,perl-file-homedir)
7144 ("perl-module-pluggable" ,perl-module-pluggable)))
7145 (home-page "http://search.cpan.org/dist/Test-WriteVariants")
7146 (synopsis "Dynamic generation of tests")
7147 (description "The Test::WriteVariants module provides for the dynamic
7148 generation of tests in nested combinations of contexts.")
7149 (license (package-license perl)))) ;See LICENSE
7150
7151 (define-public perl-test-yaml
7152 (package
7153 (name "perl-test-yaml")
7154 (version "1.05")
7155 (source
7156 (origin
7157 (method url-fetch)
7158 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7159 "Test-YAML-" version ".tar.gz"))
7160 (sha256
7161 (base32
7162 "079nayc0fp2fwjv8s2yr069bdffln699j6z3lqr5dpx1v2qg82ck"))))
7163 (build-system perl-build-system)
7164 (propagated-inputs
7165 `(("perl-test-base" ,perl-test-base)))
7166 (home-page "http://search.cpan.org/dist/Test-YAML")
7167 (synopsis "Testing module for YAML implementations")
7168 (description "Test::YAML is a subclass of Test::Base with YAML specific
7169 support.")
7170 (license (package-license perl))))
7171
7172 (define-public perl-text-aligner
7173 (package
7174 (name "perl-text-aligner")
7175 (version "0.12")
7176 (source
7177 (origin
7178 (method url-fetch)
7179 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
7180 "Text-Aligner-" version ".tar.gz"))
7181 (sha256
7182 (base32
7183 "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
7184 (build-system perl-build-system)
7185 (native-inputs `(("perl-module-build" ,perl-module-build)))
7186 (home-page "http://search.cpan.org/dist/Text-Aligner")
7187 (synopsis "Align text")
7188 (description "Text::Aligner exports a single function, align(), which is
7189 used to justify strings to various alignment styles.")
7190 (license x11)))
7191
7192 (define-public perl-text-balanced
7193 (package
7194 (name "perl-text-balanced")
7195 (version "2.02")
7196 (source
7197 (origin
7198 (method url-fetch)
7199 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
7200 "Text-Balanced-" version ".tar.gz"))
7201 (sha256
7202 (base32
7203 "1d3mba2sjpp044h16pkf231cksa34ripaz6rmgxp0ygpl917az57"))))
7204 (build-system perl-build-system)
7205 (home-page "http://search.cpan.org/dist/Text-Balanced")
7206 (synopsis "Extract delimited text sequences from strings")
7207 (description "The Text::Balanced module can be used to extract delimited
7208 text sequences from strings.")
7209 (license (package-license perl))))
7210
7211 (define-public perl-text-csv
7212 (package
7213 (name "perl-text-csv")
7214 (version "1.33")
7215 (source
7216 (origin
7217 (method url-fetch)
7218 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
7219 "Text-CSV-" version ".tar.gz"))
7220 (sha256
7221 (base32
7222 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
7223 (build-system perl-build-system)
7224 (home-page "http://search.cpan.org/dist/Text-CSV")
7225 (synopsis "Manipulate comma-separated values")
7226 (description "Text::CSV provides facilities for the composition and
7227 decomposition of comma-separated values. An instance of the Text::CSV class
7228 can combine fields into a CSV string and parse a CSV string into fields.")
7229 (license (package-license perl))))
7230
7231 (define-public perl-text-csv-xs
7232 (package
7233 (name "perl-text-csv-xs")
7234 (version "1.25")
7235 (source
7236 (origin
7237 (method url-fetch)
7238 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
7239 "Text-CSV_XS-" version ".tgz"))
7240 (sha256
7241 (base32
7242 "06zlfbqrwbl0g2g3bhk6046yy5pf2rz80fzcp8aj47rnswz2yx5k"))))
7243 (build-system perl-build-system)
7244 (home-page "http://search.cpan.org/dist/Text-CSV_XS")
7245 (synopsis "Rountines for manipulating CSV files")
7246 (description "@code{Text::CSV_XS} provides facilities for the composition
7247 and decomposition of comma-separated values. An instance of the
7248 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
7249 CSV string into fields. The module accepts either strings or files as input
7250 and support the use of user-specified characters for delimiters, separators,
7251 and escapes.")
7252 (license (package-license perl))))
7253
7254 (define-public perl-text-diff
7255 (package
7256 (name "perl-text-diff")
7257 (version "1.44")
7258 (source
7259 (origin
7260 (method url-fetch)
7261 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
7262 "Text-Diff-" version ".tar.gz"))
7263 (sha256
7264 (base32
7265 "041v92zla2acdc433f47giridf6p820sdczs7x5d71fhsyza1xsp"))))
7266 (build-system perl-build-system)
7267 (propagated-inputs
7268 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
7269 (home-page "http://search.cpan.org/dist/Text-Diff")
7270 (synopsis "Perform diffs on files and record sets")
7271 (description "Text::Diff provides a basic set of services akin to the GNU
7272 diff utility. It is not anywhere near as feature complete as GNU diff, but it
7273 is better integrated with Perl and available on all platforms. It is often
7274 faster than shelling out to a system's diff executable for small files, and
7275 generally slower on larger files.")
7276 (license (package-license perl))))
7277
7278 (define-public perl-text-glob
7279 (package
7280 (name "perl-text-glob")
7281 (version "0.09")
7282 (source
7283 (origin
7284 (method url-fetch)
7285 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
7286 "Text-Glob-" version ".tar.gz"))
7287 (sha256
7288 (base32
7289 "0lr76wrsj8wcxrq4wi8z1640w4dmdbkznp06q744rg3g0bd238d5"))))
7290 (build-system perl-build-system)
7291 (native-inputs `(("perl-module-build" ,perl-module-build)))
7292 (home-page "http://search.cpan.org/dist/Text-Glob")
7293 (synopsis "Match globbing patterns against text")
7294 (description "Text::Glob implements glob(3) style matching that can be
7295 used to match against text, rather than fetching names from a file system. If
7296 you want to do full file globbing use the File::Glob module instead.")
7297 (license (package-license perl))))
7298
7299 (define-public perl-text-neattemplate
7300 (package
7301 (name "perl-text-neattemplate")
7302 (version "0.1101")
7303 (source
7304 (origin
7305 (method url-fetch)
7306 (uri (string-append
7307 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
7308 "Text-NeatTemplate-" version ".tar.gz"))
7309 (sha256
7310 (base32
7311 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
7312 (build-system perl-build-system)
7313 (native-inputs
7314 `(("perl-module-build" ,perl-module-build)))
7315 (home-page
7316 "http://search.cpan.org/dist/Text-NeatTemplate")
7317 (synopsis "Fast, middleweight template engine")
7318 (description
7319 "Text::NeatTemplate provides a simple, middleweight but fast
7320 template engine, for when you need speed rather than complex features,
7321 yet need more features than simple variable substitution.")
7322 (license (package-license perl))))
7323
7324 (define-public perl-text-roman
7325 (package
7326 (name "perl-text-roman")
7327 (version "3.5")
7328 (source
7329 (origin
7330 (method url-fetch)
7331 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
7332 version ".tar.gz"))
7333 (sha256
7334 (base32
7335 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
7336 (build-system perl-build-system)
7337 (home-page "http://search.cpan.org/dist/Text-Roman")
7338 (synopsis "Convert between Roman and Arabic algorisms")
7339 (description "This package provides functions to convert between Roman and
7340 Arabic algorisms. It supports both conventional Roman algorisms (which range
7341 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
7342 algorism to indicate multiplication by 1000.")
7343 (license (package-license perl))))
7344
7345 (define-public perl-text-simpletable
7346 (package
7347 (name "perl-text-simpletable")
7348 (version "2.03")
7349 (source
7350 (origin
7351 (method url-fetch)
7352 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
7353 "Text-SimpleTable-" version ".tar.gz"))
7354 (sha256
7355 (base32
7356 "15hpry9jwrf1vbjyk21s65rllxrdvp2fdzzv9gsvczggby2yyzfs"))))
7357 (build-system perl-build-system)
7358 (home-page "http://search.cpan.org/dist/Text-SimpleTable")
7359 (synopsis "Simple ASCII tables")
7360 (description "Text::SimpleTable draws simple ASCII tables.")
7361 (license artistic2.0)))
7362
7363 (define-public perl-text-table
7364 (package
7365 (name "perl-text-table")
7366 (version "1.130")
7367 (source
7368 (origin
7369 (method url-fetch)
7370 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
7371 "Text-Table-" version ".tar.gz"))
7372 (sha256
7373 (base32
7374 "02c8v38k639r23dgxwgvsy4myjjzvgdb238kpiffsiz25ab3xp5j"))))
7375 (build-system perl-build-system)
7376 (native-inputs
7377 `(("perl-module-build" ,perl-module-build)))
7378 (propagated-inputs
7379 `(("perl-text-aligner" ,perl-text-aligner)))
7380 (home-page "http://search.cpan.org/dist/Text-Table")
7381 (synopsis "Organize Data in Tables")
7382 (description "Text::Table renders plaintext tables.")
7383 (license x11)))
7384
7385 (define-public perl-text-unidecode
7386 (package
7387 (name "perl-text-unidecode")
7388 (version "1.23")
7389 (source
7390 (origin
7391 (method url-fetch)
7392 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
7393 "Text-Unidecode-" version ".tar.gz"))
7394 (sha256
7395 (base32
7396 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
7397 (build-system perl-build-system)
7398 (home-page "http://search.cpan.org/dist/Text-Unidecode")
7399 (synopsis "Provide plain ASCII transliterations of Unicode text")
7400 (description "Text::Unidecode provides a function, unidecode(...) that
7401 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
7402 universally displayable characters between 0x00 and 0x7F). The representation
7403 is almost always an attempt at transliteration-- i.e., conveying, in Roman
7404 letters, the pronunciation expressed by the text in some other writing
7405 system.")
7406 (license (package-license perl))))
7407
7408 (define-public perl-throwable
7409 (package
7410 (name "perl-throwable")
7411 (version "0.200012")
7412 (source
7413 (origin
7414 (method url-fetch)
7415 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7416 "Throwable-" version ".tar.gz"))
7417 (sha256
7418 (base32
7419 "0cy8kza9pd9y5m7k5385asf4xqm54vdqnqm0am10z6j2mrxwr527"))))
7420 (build-system perl-build-system)
7421 (native-inputs
7422 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
7423 (propagated-inputs
7424 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
7425 ("perl-module-runtime" ,perl-module-runtime)
7426 ("perl-moo" ,perl-moo)))
7427 (home-page "http://search.cpan.org/dist/Throwable")
7428 (synopsis "Role for classes that can be thrown")
7429 (description "Throwable is a role for classes that are meant to be thrown
7430 as exceptions to standard program flow.")
7431 (license (package-license perl))))
7432
7433 (define-public perltidy
7434 (package
7435 (name "perltidy")
7436 (version "20160302")
7437 (source (origin
7438 (method url-fetch)
7439 (uri (string-append "mirror://sourceforge/perltidy/" version
7440 "/Perl-Tidy-" version ".tar.gz"))
7441 (sha256
7442 (base32
7443 "19yw63yh5s3pq7k3nkw6nsamg5b8vvwyhgbizslgxg0mqgc4xl3d"))))
7444 (build-system perl-build-system)
7445 (home-page "http://perltidy.sourceforge.net/")
7446 (synopsis "Perl script tidier")
7447 (description "This package contains a Perl script which indents and
7448 reformats Perl scripts to make them easier to read. The formatting can be
7449 controlled with command line parameters. The default parameter settings
7450 approximately follow the suggestions in the Perl Style Guide.")
7451 (license gpl2+)))
7452
7453 (define-public perl-tie-cycle
7454 (package
7455 (name "perl-tie-cycle")
7456 (version "1.221")
7457 (source
7458 (origin
7459 (method url-fetch)
7460 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
7461 version ".tar.gz"))
7462 (sha256
7463 (base32
7464 "10g6kirf6jfaldckg98y4pl87vrm7grqlg6ymb7a9vhrznyn7qn6"))))
7465 (build-system perl-build-system)
7466 (home-page "http://search.cpan.org/dist/Tie-Cycle")
7467 (synopsis "Cycle through a list of values")
7468 (description "You use @code{Tie::Cycle} to go through a list over and over
7469 again. Once you get to the end of the list, you go back to the beginning.")
7470 (license (package-license perl))))
7471
7472 (define-public perl-tie-ixhash
7473 (package
7474 (name "perl-tie-ixhash")
7475 (version "1.23")
7476 (source
7477 (origin
7478 (method url-fetch)
7479 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
7480 "Tie-IxHash-" version ".tar.gz"))
7481 (sha256
7482 (base32
7483 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
7484 (build-system perl-build-system)
7485 (native-inputs `(("perl-module-build" ,perl-module-build)))
7486 (home-page "http://search.cpan.org/dist/Tie-IxHash")
7487 (synopsis "Ordered associative arrays for Perl")
7488 (description "This Perl module implements Perl hashes that preserve the
7489 order in which the hash elements were added. The order is not affected when
7490 values corresponding to existing keys in the IxHash are changed. The elements
7491 can also be set to any arbitrary supplied order. The familiar perl array
7492 operations can also be performed on the IxHash.")
7493 (license (package-license perl))))
7494
7495 (define-public perl-tie-toobject
7496 (package
7497 (name "perl-tie-toobject")
7498 (version "0.03")
7499 (source
7500 (origin
7501 (method url-fetch)
7502 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
7503 "Tie-ToObject-" version ".tar.gz"))
7504 (sha256
7505 (base32
7506 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
7507 (build-system perl-build-system)
7508 (propagated-inputs
7509 `(("perl-test-simple" ,perl-test-simple)))
7510 (home-page "http://search.cpan.org/dist/Tie-ToObject")
7511 (synopsis "Tie to an existing Perl object")
7512 (description "This class provides a tie constructor that returns the
7513 object it was given as it's first argument. This way side effects of calling
7514 $object->TIEHASH are avoided.")
7515 (license (package-license perl))))
7516
7517 (define-public perl-time-duration
7518 (package
7519 (name "perl-time-duration")
7520 (version "1.1")
7521 (source
7522 (origin
7523 (method url-fetch)
7524 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
7525 "Time-Duration-" version ".tar.gz"))
7526 (sha256
7527 (base32
7528 "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
7529 (build-system perl-build-system)
7530 (native-inputs
7531 `(("perl-test-pod" ,perl-test-pod)
7532 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7533 (home-page "http://search.cpan.org/dist/Time-Duration")
7534 (synopsis "English expression of durations")
7535 (description "This module provides functions for expressing durations in
7536 rounded or exact terms.")
7537 (license (package-license perl))))
7538
7539 (define-public perl-time-duration-parse
7540 (package
7541 (name "perl-time-duration-parse")
7542 (version "0.13")
7543 (source
7544 (origin
7545 (method url-fetch)
7546 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
7547 "Time-Duration-Parse-" version ".tar.gz"))
7548 (sha256
7549 (base32
7550 "0affdzhsiy7dr6dzj2p6m9lynmjh53k31bprfsfa21pz8551hjj1"))))
7551 (build-system perl-build-system)
7552 (native-inputs
7553 `(("perl-time-duration" ,perl-time-duration)))
7554 (propagated-inputs
7555 `(("perl-exporter-lite" ,perl-exporter-lite)))
7556 (home-page "http://search.cpan.org/dist/Time-Duration-Parse")
7557 (synopsis "Parse time duration strings")
7558 (description "Time::Duration::Parse is a module to parse human readable
7559 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
7560 (license (package-license perl))))
7561
7562 (define-public perl-time-local
7563 (package
7564 (name "perl-time-local")
7565 (version "1.2300")
7566 (source
7567 (origin
7568 (method url-fetch)
7569 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7570 "Time-Local-" version ".tar.gz"))
7571 (sha256
7572 (base32
7573 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
7574 (build-system perl-build-system)
7575 (home-page "http://search.cpan.org/dist/Time-Local")
7576 (synopsis "Efficiently compute time from local and GMT time")
7577 (description "This module provides functions that are the inverse of
7578 built-in perl functions localtime() and gmtime(). They accept a date as a
7579 six-element array, and return the corresponding time(2) value in seconds since
7580 the system epoch.")
7581 (license (package-license perl))))
7582
7583 (define-public perl-timedate
7584 (package
7585 (name "perl-timedate")
7586 (version "2.30")
7587 (source
7588 (origin
7589 (method url-fetch)
7590 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
7591 "TimeDate-" version ".tar.gz"))
7592 (sha256
7593 (base32
7594 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
7595 (build-system perl-build-system)
7596 (home-page "http://search.cpan.org/dist/TimeDate")
7597 (synopsis "Date parsing/formatting subroutines")
7598 (description "This module provides routines for parsing date string into
7599 time values and formatting dates into ASCII strings.")
7600 (license (package-license perl))))
7601
7602 (define-public perl-time-mock
7603 (package
7604 (name "perl-time-mock")
7605 (version "v0.0.2")
7606 (source
7607 (origin
7608 (method url-fetch)
7609 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
7610 "Time-Mock-" version ".tar.gz"))
7611 (sha256
7612 (base32
7613 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
7614 (build-system perl-build-system)
7615 (native-inputs
7616 `(("perl-module-build" ,perl-module-build)))
7617 (propagated-inputs
7618 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
7619 (home-page "http://search.cpan.org/dist/Time-Mock")
7620 (synopsis "Shift and scale time")
7621 (description "This module allows you to speed up your sleep(), alarm(),
7622 and time() calls.")
7623 (license (package-license perl))))
7624
7625 (define-public perl-tree-simple
7626 (package
7627 (name "perl-tree-simple")
7628 (version "1.25")
7629 (source
7630 (origin
7631 (method url-fetch)
7632 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
7633 "Tree-Simple-" version ".tgz"))
7634 (sha256
7635 (base32
7636 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
7637 (build-system perl-build-system)
7638 (native-inputs
7639 `(("perl-module-build" ,perl-module-build)
7640 ("perl-test-exception" ,perl-test-exception)))
7641 (propagated-inputs
7642 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
7643 (home-page "http://search.cpan.org/dist/Tree-Simple")
7644 (synopsis "Simple tree object")
7645 (description "This module in a fully object-oriented implementation of a
7646 simple n-ary tree.")
7647 (license (package-license perl))))
7648
7649 (define-public perl-tree-simple-visitorfactory
7650 (package
7651 (name "perl-tree-simple-visitorfactory")
7652 (version "0.12")
7653 (source
7654 (origin
7655 (method url-fetch)
7656 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
7657 "Tree-Simple-VisitorFactory-" version ".tgz"))
7658 (sha256
7659 (base32
7660 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
7661 (build-system perl-build-system)
7662 (native-inputs
7663 `(("perl-module-build" ,perl-module-build)
7664 ("perl-test-exception" ,perl-test-exception)))
7665 (propagated-inputs
7666 `(("perl-tree-simple" ,perl-tree-simple)
7667 ("perl-base" ,perl-base)))
7668 (home-page "http://search.cpan.org/dist/Tree-Simple-VisitorFactory")
7669 (synopsis "Factory object for dispensing Visitor objects")
7670 (description "This module is a factory for dispensing
7671 Tree::Simple::Visitor::* objects.")
7672 (license (package-license perl))))
7673
7674 (define-public perl-try-tiny
7675 (package
7676 (name "perl-try-tiny")
7677 (version "0.22")
7678 (source
7679 (origin
7680 (method url-fetch)
7681 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
7682 "Try-Tiny-" version ".tar.gz"))
7683 (sha256
7684 (base32
7685 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
7686 (build-system perl-build-system)
7687 (home-page "http://search.cpan.org/dist/Try-Tiny")
7688 (synopsis "Minimal try/catch with proper preservation of $@@")
7689 (description "This module provides bare bones try/catch/finally statements
7690 that are designed to minimize common mistakes with eval blocks, and nothing
7691 else.")
7692 (license x11)))
7693
7694 (define-public perl-types-serialiser
7695 (package
7696 (name "perl-types-serialiser")
7697 (version "1.0")
7698 (source
7699 (origin
7700 (method url-fetch)
7701 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
7702 "Types-Serialiser-" version ".tar.gz"))
7703 (sha256
7704 (base32
7705 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
7706 (build-system perl-build-system)
7707 (propagated-inputs
7708 `(("perl-common-sense" ,perl-common-sense)))
7709 (home-page "http://search.cpan.org/dist/Types-Serialiser")
7710 (synopsis "Data types for common serialisation formats")
7711 (description "This module provides some extra datatypes that are used by
7712 common serialisation formats such as JSON or CBOR.")
7713 (license (package-license perl))))
7714
7715 (define-public perl-unicode-normalize
7716 (package
7717 (name "perl-unicode-normalize")
7718 (version "1.25")
7719 (source
7720 (origin
7721 (method url-fetch)
7722 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
7723 "Unicode-Normalize-" version ".tar.gz"))
7724 (sha256
7725 (base32
7726 "0v04bcyjfcfap4kfpc8q3ikq3j7s68nym4ckw3iasmmksdskmcq0"))))
7727 (build-system perl-build-system)
7728 (home-page "http://search.cpan.org/dist/Unicode-Normalize")
7729 (synopsis "Unicode normalization forms")
7730 (description "This Perl module provides Unicode normalization forms.")
7731 (license (package-license perl))))
7732
7733 (define-public perl-unicode-collate
7734 (package
7735 (name "perl-unicode-collate")
7736 (version "1.18")
7737 (source
7738 (origin
7739 (method url-fetch)
7740 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
7741 "Unicode-Collate-" version ".tar.gz"))
7742 (sha256
7743 (base32
7744 "1lq4p3mqqljhhy8wyiyahris33j4m5qfzpi6iacmcqjzw5g4afbm"))))
7745 (build-system perl-build-system)
7746 (propagated-inputs
7747 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
7748 (home-page "http://search.cpan.org/dist/Unicode-Collate")
7749 (synopsis "Unicode collation algorithm")
7750 (description "This package provides tools for sorting and comparing
7751 Unicode data.")
7752 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
7753 ;; license.
7754 (license (list (package-license perl) expat))))
7755
7756 (define-public perl-unicode-linebreak
7757 (package
7758 (name "perl-unicode-linebreak")
7759 (version "2016.003")
7760 (source (origin
7761 (method url-fetch)
7762 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
7763 "Unicode-LineBreak-" version ".tar.gz"))
7764 (sha256
7765 (base32
7766 "096wf5x99swx7l7yd8pm2aw50g596nf50rkq7250zjcc1acjskp6"))))
7767 (build-system perl-build-system)
7768 (propagated-inputs
7769 `(("perl-mime-charset" ,perl-mime-charset)))
7770 (home-page "http://search.cpan.org/dist/Unicode-LineBreak")
7771 (synopsis "Unicode line breaking algorithm")
7772 (description
7773 "@code{Unicode::LineBreak} implements the line breaking algorithm
7774 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
7775 defined by Annex #11 is used to determine breaking positions.")
7776 (license (package-license perl))))
7777
7778 (define-public perl-unicode-utf8
7779 (package
7780 (name "perl-unicode-utf8")
7781 (version "0.60")
7782 (source (origin
7783 (method url-fetch)
7784 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
7785 "Unicode-UTF8-" version ".tar.gz"))
7786 (sha256
7787 (base32
7788 "1g3fp47slsk7wbz3189kpg342lfs7lpsy570jxnx7s9v59dg5k7n"))))
7789 (build-system perl-build-system)
7790 (native-inputs
7791 `(("perl-test-fatal" ,perl-test-fatal)
7792 ("perl-test-leaktrace" ,perl-test-leaktrace)
7793 ("perl-variable-magic" ,perl-variable-magic)
7794 ("perl-test-pod" ,perl-test-pod)))
7795 (home-page "http://search.cpan.org/dist/Unicode-UTF8")
7796 (synopsis "Encoding and decoding of UTF-8 encoding form")
7797 (description
7798 "This module provides functions to encode and decode UTF-8 encoding form
7799 as specified by Unicode and ISO/IEC 10646:2011.")
7800 (license (package-license perl))))
7801
7802 (define-public perl-universal-can
7803 (package
7804 (name "perl-universal-can")
7805 (version "1.20140328")
7806 (source
7807 (origin
7808 (method url-fetch)
7809 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
7810 "UNIVERSAL-can-" version ".tar.gz"))
7811 (sha256
7812 (base32
7813 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
7814 (build-system perl-build-system)
7815 (home-page "http://search.cpan.org/dist/UNIVERSAL-can")
7816 (synopsis "UNIVERSAL::can() reimplementation")
7817 (description "This module attempts to work around people calling
7818 UNIVERSAL::can() as a function, which it is not.")
7819 (license (package-license perl))))
7820
7821 (define-public perl-universal-isa
7822 (package
7823 (name "perl-universal-isa")
7824 (version "1.20140927")
7825 (source
7826 (origin
7827 (method url-fetch)
7828 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7829 "UNIVERSAL-isa-" version ".tar.gz"))
7830 (sha256
7831 (base32
7832 "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
7833 (build-system perl-build-system)
7834 (native-inputs
7835 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
7836 (home-page "http://search.cpan.org/dist/UNIVERSAL-isa")
7837 (synopsis "UNIVERSAL::isa() reimplementation")
7838 (description "This module attempts to recover from people calling
7839 UNIVERSAL::isa as a function.")
7840 (license (package-license perl))))
7841
7842 (define-public perl-variable-magic
7843 (package
7844 (name "perl-variable-magic")
7845 (version "0.61")
7846 (source
7847 (origin
7848 (method url-fetch)
7849 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
7850 "Variable-Magic-" version ".tar.gz"))
7851 (sha256
7852 (base32
7853 "1mx6z36c3wk61x6lag6kyws5g1cba68cw20vrb92wan7ahpfkbxq"))))
7854 (build-system perl-build-system)
7855 (home-page "http://search.cpan.org/dist/Variable-Magic")
7856 (synopsis "Associate user-defined magic to variables from Perl")
7857 (description "Magic is Perl's way of enhancing variables. This mechanism
7858 lets the user add extra data to any variable and hook syntactical
7859 operations (such as access, assignment or destruction) that can be applied to
7860 it. With this module, you can add your own magic to any variable without
7861 having to write a single line of XS.")
7862 (license (package-license perl))))
7863
7864 (define-public perl-xml-writer
7865 (package
7866 (name "perl-xml-writer")
7867 (version "0.625")
7868 (source
7869 (origin
7870 (method url-fetch)
7871 (uri (string-append
7872 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
7873 version
7874 ".tar.gz"))
7875 (sha256
7876 (base32
7877 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
7878 (build-system perl-build-system)
7879 (home-page "http://search.cpan.org/dist/XML-Writer")
7880 (synopsis "Easily generate well-formed, namespace-aware XML")
7881 (description "@code{XML::Writer} is a simple Perl module for writing XML
7882 documents: it takes care of constructing markup and escaping data correctly.
7883 By default, it also performs a significant amount of well-formedness checking
7884 on the output to make certain (for example) that start and end tags match,
7885 that there is exactly one document element, and that there are not duplicate
7886 attribute names.")
7887 ;; Redistribution and use in source and compiled forms, with or without
7888 ;; modification, are permitted under any circumstances. No warranty.
7889 (license public-domain)))
7890
7891 (define-public perl-xs-object-magic
7892 (package
7893 (name "perl-xs-object-magic")
7894 (version "0.04")
7895 (source (origin
7896 (method url-fetch)
7897 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
7898 "XS-Object-Magic-" version ".tar.gz"))
7899 (sha256
7900 (base32
7901 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
7902 (build-system perl-build-system)
7903 (native-inputs
7904 `(("perl-extutils-depends" ,perl-extutils-depends)
7905 ("perl-test-fatal" ,perl-test-fatal)))
7906 (home-page "http://search.cpan.org/dist/XS-Object-Magic")
7907 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
7908 (description
7909 "This way of associating structs with Perl space objects is designed to
7910 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
7911 (structs can be associated with any data type) and opaque (the C pointer is
7912 neither visible nor modifiable from Perl space).")
7913 (license (package-license perl))))
7914
7915 (define-public perl-yaml
7916 (package
7917 (name "perl-yaml")
7918 (version "1.23")
7919 (source
7920 (origin
7921 (method url-fetch)
7922 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7923 "YAML-" version ".tar.gz"))
7924 (sha256
7925 (base32
7926 "0kf8mllrgnrmlvjijxc6srjj1y9i8rik5jpjvm8jh4yx70h9gn1a"))))
7927 (build-system perl-build-system)
7928 (native-inputs
7929 `(("perl-test-yaml" ,perl-test-yaml)))
7930 (home-page "http://search.cpan.org/dist/YAML")
7931 (synopsis "YAML for Perl")
7932 (description "The YAML.pm module implements a YAML Loader and Dumper based
7933 on the YAML 1.0 specification.")
7934 (license (package-license perl))))
7935
7936 (define-public perl-yaml-tiny
7937 (package
7938 (name "perl-yaml-tiny")
7939 (version "1.66")
7940 (source
7941 (origin
7942 (method url-fetch)
7943 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7944 "YAML-Tiny-" version ".tar.gz"))
7945 (sha256
7946 (base32
7947 "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
7948 (build-system perl-build-system)
7949 (native-inputs
7950 `(("perl-json-maybexs" ,perl-json-maybexs)
7951 ("perl-module-build-tiny" ,perl-module-build-tiny)))
7952 (arguments
7953 `(#:tests? #f)) ;requires Test::More >= 0.99
7954 (home-page "http://search.cpan.org/dist/YAML-Tiny")
7955 (synopsis "Read/Write YAML files")
7956 (description "YAML::Tiny is a perl class for reading and writing
7957 YAML-style files, written with as little code as possible, reducing load time
7958 and memory overhead.")
7959 (license (package-license perl))))
7960
7961 (define-public perl-parse-yapp
7962 (package
7963 (name "perl-parse-yapp")
7964 (version "1.05")
7965 (source
7966 (origin
7967 (method url-fetch)
7968 (uri (string-append
7969 "mirror://cpan/authors/id/F/FD/FDESAR/Parse-Yapp-"
7970 version
7971 ".tar.gz"))
7972 (sha256
7973 (base32
7974 "0azjqqf4m7nkfgmmj4q77vy9sdgg01wn8xxv40bq3pis93xnr2i2"))))
7975 (build-system perl-build-system)
7976 (home-page "http://search.cpan.org/dist/Parse-Yapp")
7977 (synopsis "Generate and use LALR parsers")
7978 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
7979 grammars to generate Perl object oriented parser modules.")
7980 (license (package-license perl))))
7981
7982 \f
7983 ;;; Some packaged modules need versions of core modules that are newer than
7984 ;;; those in our perl 5.16.1.
7985
7986 (define-public perl-cpan-meta
7987 (package
7988 (name "perl-cpan-meta")
7989 (version "2.143240")
7990 (source
7991 (origin
7992 (method url-fetch)
7993 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7994 "CPAN-Meta-" version ".tar.gz"))
7995 (sha256
7996 (base32
7997 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
7998 (build-system perl-build-system)
7999 (propagated-inputs
8000 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
8001 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
8002 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
8003 (home-page "http://search.cpan.org/dist/CPAN-Meta")
8004 (synopsis "Distribution metadata for a CPAN dist")
8005 (description "Software distributions released to the CPAN include a
8006 META.json or, for older distributions, META.yml, which describes the
8007 distribution, its contents, and the requirements for building and installing
8008 the distribution. The data structure stored in the META.json file is
8009 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
8010 represent this distribution metadata (or distmeta), along with some helpful
8011 methods for interrogating that data.")
8012 (license (package-license perl))))
8013
8014 (define-public perl-cpan-meta-requirements
8015 (package
8016 (name "perl-cpan-meta-requirements")
8017 (version "2.140")
8018 (source
8019 (origin
8020 (method url-fetch)
8021 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8022 "CPAN-Meta-Requirements-" version ".tar.gz"))
8023 (sha256
8024 (base32
8025 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
8026 (build-system perl-build-system)
8027 (home-page "http://search.cpan.org/dist/CPAN-Meta-Requirements")
8028 (synopsis "Set of version requirements for a CPAN dist")
8029 (description "A CPAN::Meta::Requirements object models a set of version
8030 constraints like those specified in the META.yml or META.json files in CPAN
8031 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
8032 adding more and more constraints, and will reduce them to the simplest
8033 representation.")
8034 (license (package-license perl))))
8035
8036 (define-public perl-cpan-meta-yaml
8037 (package
8038 (name "perl-cpan-meta-yaml")
8039 (version "0.018")
8040 (source
8041 (origin
8042 (method url-fetch)
8043 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8044 "CPAN-Meta-YAML-" version ".tar.gz"))
8045 (sha256
8046 (base32
8047 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
8048 (build-system perl-build-system)
8049 (arguments
8050 `(#:tests? #f)) ;Tests require Test::More >= 0.99
8051 (home-page "http://search.cpan.org/dist/CPAN-Meta-YAML")
8052 (synopsis "Read and write a subset of YAML for CPAN Meta files")
8053 (description "This module implements a subset of the YAML specification
8054 for use in reading and writing CPAN metadata files like META.yml and
8055 MYMETA.yml.")
8056 (license (package-license perl))))
8057
8058 (define-public perl-module-build
8059 (package
8060 (name "perl-module-build")
8061 (version "0.4220")
8062 (source
8063 (origin
8064 (method url-fetch)
8065 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
8066 "Module-Build-" version ".tar.gz"))
8067 (sha256
8068 (base32
8069 "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
8070 (build-system perl-build-system)
8071 (propagated-inputs
8072 `(("perl-cpan-meta" ,perl-cpan-meta)))
8073 (home-page "http://search.cpan.org/dist/Module-Build")
8074 (synopsis "Build and install Perl modules")
8075 (description "@code{Module::Build} is a system for building, testing, and
8076 installing Perl modules; it used to be part of Perl itself until version 5.22,
8077 which dropped it. It is meant to be an alternative to
8078 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
8079 through subclassing in a much more straightforward way than with
8080 @code{MakeMaker}. It also does not require a @command{make} on your
8081 system---most of the @code{Module::Build} code is pure-Perl.")
8082 (license (package-license perl))))
8083
8084 (define-public perl-parse-cpan-meta
8085 (package
8086 (name "perl-parse-cpan-meta")
8087 (version "2.150010")
8088 (source
8089 (origin
8090 (method url-fetch)
8091 ;; This module is now known as CPAN::Meta on CPAN.
8092 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8093 "CPAN-Meta-" version ".tar.gz"))
8094 (sha256
8095 (base32
8096 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
8097 (build-system perl-build-system)
8098 (propagated-inputs
8099 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
8100 (home-page "http://search.cpan.org/dist/Parse-CPAN-Meta")
8101 (synopsis "Parse META.yml and META.json CPAN metadata files")
8102 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
8103 files, using JSON::PP and/or CPAN::Meta::YAML.")
8104 (license (package-license perl))))
8105
8106 (define-public perl-scalar-list-utils
8107 (package
8108 (name "perl-scalar-list-utils")
8109 (version "1.47")
8110 (source
8111 (origin
8112 (method url-fetch)
8113 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
8114 "Scalar-List-Utils-" version ".tar.gz"))
8115 (sha256
8116 (base32
8117 "1qgg6zxqwziva5j1k5gjks4xmhmgklm551ni3zb74sd9f9rk90y4"))))
8118 (build-system perl-build-system)
8119 (home-page "http://search.cpan.org/dist/Scalar-List-Utils")
8120 (synopsis "Common Scalar and List utility subroutines")
8121 (description "This package contains a selection of subroutines that people
8122 have expressed would be nice to have in the perl core, but the usage would not
8123 really be high enough to warrant the use of a keyword, and the size so small
8124 such that being individual extensions would be wasteful.")
8125 (license (package-license perl))))
8126
8127 (define-public perl-shell-command
8128 (package
8129 (name "perl-shell-command")
8130 (version "0.06")
8131 (source
8132 (origin
8133 (method url-fetch)
8134 (uri (string-append
8135 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
8136 version
8137 ".tar.gz"))
8138 (sha256
8139 (base32
8140 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
8141 (build-system perl-build-system)
8142 (home-page
8143 "http://search.cpan.org/dist/Shell-Command")
8144 (synopsis
8145 "Cross-platform functions emulating common shell commands")
8146 (description
8147 "Shell::Command is a thin wrapper around ExtUtils::Command.")
8148 (license (package-license perl))))
8149
8150 ;;; END: Core module overrides
8151
8152 (define-public perl-file-find-object
8153 (package
8154 (name "perl-file-find-object")
8155 (version "v0.2.13")
8156 (source
8157 (origin
8158 (method url-fetch)
8159 (uri (string-append
8160 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
8161 version
8162 ".tar.gz"))
8163 (sha256
8164 (base32
8165 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
8166 (build-system perl-build-system)
8167 (native-inputs
8168 `(("perl-module-build" ,perl-module-build)))
8169 (inputs
8170 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
8171 (home-page
8172 "http://search.cpan.org/dist/File-Find-Object")
8173 (synopsis
8174 "Object-oriented File::Find replacement in Perl")
8175 (description "File::Find::Object is an object-oriented
8176 File::Find replacement in Perl.")
8177 (license artistic2.0)))
8178
8179 (define-public perl-file-find-object-rule
8180 (package
8181 (name "perl-file-find-object-rule")
8182 (version "0.0305")
8183 (source
8184 (origin
8185 (method url-fetch)
8186 (uri (string-append
8187 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
8188 version
8189 ".tar.gz"))
8190 (sha256
8191 (base32
8192 "0hs4n3w99q4ylkhg3qhzcwkxqn7zblfj1zjdgl06ca30afkk4cv6"))))
8193 (build-system perl-build-system)
8194 (native-inputs
8195 `(("perl-module-build" ,perl-module-build)))
8196 (inputs
8197 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
8198 ("perl-file-find-object" ,perl-file-find-object)
8199 ("perl-number-compare" ,perl-number-compare)
8200 ("perl-text-glob" ,perl-text-glob)))
8201 (home-page
8202 "http://search.cpan.org/dist/File-Find-Object-Rule")
8203 (synopsis
8204 "Alternative interface to File::Find::Object")
8205 (description "File::Find::Object::Rule is an alternative Perl
8206 interface to File::Find::Object.")
8207 (license (package-license perl))))
8208
8209 (define-public perl-test-trailingspace
8210 (package
8211 (name "perl-test-trailingspace")
8212 (version "0.0300")
8213 (source
8214 (origin
8215 (method url-fetch)
8216 (uri (string-append
8217 "mirror://cpan/authors/id/S/SH/SHLOMIF/Test-TrailingSpace-"
8218 version
8219 ".tar.gz"))
8220 (sha256
8221 (base32
8222 "01slmrcjfq38mpdg3hlb7lnnbgsqbn26958y3hzx0zwrif40pigr"))))
8223 (build-system perl-build-system)
8224 (native-inputs
8225 `(("perl-module-build" ,perl-module-build)
8226 ("perl-file-find-object" ,perl-file-find-object)
8227 ("perl-class-xsaccessor" ,perl-class-xsaccessor)))
8228 (inputs
8229 `(("perl-file-find-object-rule" ,perl-file-find-object-rule)
8230 ("perl-text-glob" ,perl-text-glob)
8231 ("perl-number-compare" ,perl-number-compare)))
8232 (home-page
8233 "http://search.cpan.org/dist/Test-TrailingSpace")
8234 (synopsis
8235 "Test for trailing space in Perl source files")
8236 (description "Test::TrailingSpace tests for trailing spaces
8237 in Perl source files.")
8238 (license x11)))