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