Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / gnu / packages / perl.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 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, 2017 Eric Bavier <bavier@member.fsf.org>
6 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
7 ;;; Copyright © 2016, 2018 Mark H Weaver <mhw@netris.org>
8 ;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
9 ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Copyright © 2016 Nils Gillmann <ng0@n0.is>
11 ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
12 ;;; Copyright © 2016, 2018 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, 2018 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
18 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
19 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
20 ;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org>
21 ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
22 ;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com>
23 ;;;
24 ;;; This file is part of GNU Guix.
25 ;;;
26 ;;; GNU Guix is free software; you can redistribute it and/or modify it
27 ;;; under the terms of the GNU General Public License as published by
28 ;;; the Free Software Foundation; either version 3 of the License, or (at
29 ;;; your option) any later version.
30 ;;;
31 ;;; GNU Guix is distributed in the hope that it will be useful, but
32 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
33 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 ;;; GNU General Public License for more details.
35 ;;;
36 ;;; You should have received a copy of the GNU General Public License
37 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
38
39 (define-module (gnu packages perl)
40 #:use-module (srfi srfi-1)
41 #:use-module (guix licenses)
42 #:use-module (gnu packages)
43 #:use-module (guix packages)
44 #:use-module (guix download)
45 #:use-module (guix build-system gnu)
46 #:use-module (guix build-system perl)
47 #:use-module (guix utils) ;substitute-keyword-arguments for perl-5.26.2
48 #:use-module (gnu packages base)
49 #:use-module (gnu packages compression)
50 #:use-module (gnu packages freedesktop)
51 #:use-module (gnu packages perl-check)
52 #:use-module (gnu packages perl-web)
53 #:use-module (gnu packages pkg-config))
54
55 ;;;
56 ;;; Please: Try to add new module packages in alphabetic order.
57 ;;;
58
59 \f
60 (define-public perl
61 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
62 (package
63 (name "perl")
64 (version "5.26.1")
65 (replacement perl/fixed)
66 (source (origin
67 (method url-fetch)
68 (uri (string-append "mirror://cpan/src/5.0/perl-"
69 version ".tar.gz"))
70 (sha256
71 (base32
72 "1p81wwvr5jb81m41d07kfywk5gvbk0axdrnvhc2aghcdbr4alqz7"))
73 (patches (search-patches
74 "perl-file-path-CVE-2017-6512.patch"
75 "perl-no-sys-dirs.patch"
76 "perl-autosplit-default-time.patch"
77 "perl-deterministic-ordering.patch"
78 "perl-reproducible-build-date.patch"))))
79 (build-system gnu-build-system)
80 (arguments
81 '(#:tests? #f
82 #:configure-flags
83 (let ((out (assoc-ref %outputs "out"))
84 (libc (assoc-ref %build-inputs "libc")))
85 (list
86 (string-append "-Dprefix=" out)
87 (string-append "-Dman1dir=" out "/share/man/man1")
88 (string-append "-Dman3dir=" out "/share/man/man3")
89 "-de" "-Dcc=gcc"
90 "-Uinstallusrbinperl"
91 "-Dinstallstyle=lib/perl5"
92 "-Duseshrplib"
93 (string-append "-Dlocincpth=" libc "/include")
94 (string-append "-Dloclibpth=" libc "/lib")
95 "-Dusethreads"))
96 #:phases
97 (modify-phases %standard-phases
98 (add-before 'configure 'setup-configure
99 (lambda _
100 ;; Use the right path for `pwd'.
101 (substitute* "dist/PathTools/Cwd.pm"
102 (("/bin/pwd")
103 (which "pwd")))
104
105 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
106 ;; <bits/string3.h>.
107 (substitute* "cflags.SH"
108 (("-std=c89")
109 "-std=gnu89"))
110 #t))
111 (replace 'configure
112 (lambda* (#:key configure-flags #:allow-other-keys)
113 (format #t "Perl configure flags: ~s~%" configure-flags)
114 (apply invoke "./Configure" configure-flags)))
115 (add-before
116 'strip 'make-shared-objects-writable
117 (lambda* (#:key outputs #:allow-other-keys)
118 ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them
119 ;; writable so that 'strip' actually strips them.
120 (let* ((out (assoc-ref outputs "out"))
121 (lib (string-append out "/lib")))
122 (for-each (lambda (dso)
123 (chmod dso #o755))
124 (find-files lib "\\.so$"))
125 #t)))
126
127 (add-after 'install 'remove-extra-references
128 (lambda* (#:key inputs outputs #:allow-other-keys)
129 (let* ((out (assoc-ref outputs "out"))
130 (libc (assoc-ref inputs "libc"))
131 (config1 (car (find-files (string-append out "/lib/perl5")
132 "^Config_heavy\\.pl$")))
133 (config2 (find-files (string-append out "/lib/perl5")
134 "^Config\\.pm$")))
135 ;; Force the library search path to contain only libc because
136 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
137 ;; want to keep a reference to everything that's in
138 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
139 ;; etc.)
140 (substitute* config1
141 (("^incpth=.*$")
142 (string-append "incpth='" libc "/include'\n"))
143 (("^(libpth|plibpth|libspath)=.*$" _ variable)
144 (string-append variable "='" libc "/lib'\n")))
145
146 (for-each (lambda (file)
147 (substitute* config2
148 (("libpth => .*$")
149 (string-append "libpth => '" libc
150 "/lib',\n"))))
151 config2)
152 #t))))))
153 (native-search-paths (list (search-path-specification
154 (variable "PERL5LIB")
155 (files '("lib/perl5/site_perl")))))
156 (synopsis "Implementation of the Perl programming language")
157 (description
158 "Perl 5 is a highly capable, feature-rich programming language with over
159 24 years of development.")
160 (home-page "http://www.perl.org/")
161 (license gpl1+))) ; or "Artistic"
162
163 ;; Fixes CVE-2018-6797, CVE-2018-6798, and CVE-2018-6913.
164 ;; See <https://metacpan.org/changes/release/SHAY/perl-5.26.2>.
165 (define perl-5.26.2
166 (package
167 (inherit perl)
168 (version "5.26.2")
169 (source (origin
170 (inherit (package-source perl))
171 (uri (string-append "mirror://cpan/src/5.0/perl-"
172 version ".tar.gz"))
173 (sha256
174 (base32
175 "03gpnxx1g6hvlh0v4aqx00580h787sfywp1vlvw64q2xcbm9qbsp"))))))
176
177 ;; When grafting perl, complications arise when the replacement perl has a
178 ;; different version number than the original. So, here we create a version
179 ;; of perl-5.26.2 that thinks it is version 5.26.1. See
180 ;; <https://bugs.gnu.org/31210> and <https://bugs.gnu.org/31216>.
181 (define perl/fixed
182 (package
183 (inherit perl-5.26.2)
184 (version "5.26.1")
185 (arguments
186 (substitute-keyword-arguments (package-arguments perl-5.26.2)
187 ((#:phases phases)
188 `(modify-phases ,phases
189 (add-after 'unpack 'revert-perl-subversion
190 (lambda _
191 (substitute* "patchlevel.h"
192 (("^#define PERL_SUBVERSION 2")
193 "#define PERL_SUBVERSION 1"))
194 #t))))))))
195
196 (define-public perl-algorithm-c3
197 (package
198 (name "perl-algorithm-c3")
199 (version "0.10")
200 (source
201 (origin
202 (method url-fetch)
203 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
204 "Algorithm-C3-" version ".tar.gz"))
205 (sha256
206 (base32
207 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
208 (build-system perl-build-system)
209 (home-page "http://search.cpan.org/dist/Algorithm-C3/")
210 (synopsis "Module for merging hierarchies using the C3 algorithm")
211 (description "This module implements the C3 algorithm, which aims to
212 provide a sane method resolution order under multiple inheritance.")
213 (license (package-license perl))))
214
215 (define-public perl-algorithm-diff
216 (package
217 (name "perl-algorithm-diff")
218 (version "1.1903")
219 (source
220 (origin
221 (method url-fetch)
222 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
223 "Algorithm-Diff-" version ".tar.gz"))
224 (sha256
225 (base32
226 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
227 (build-system perl-build-system)
228 (home-page "http://search.cpan.org/dist/Algorithm-Diff/")
229 (synopsis "Compute differences between two files or lists")
230 (description "This is a module for computing the difference between two
231 files, two strings, or any other two lists of things. It uses an intelligent
232 algorithm similar to (or identical to) the one used by the Unix \"diff\"
233 program. It is guaranteed to find the *smallest possible* set of
234 differences.")
235 (license (package-license perl))))
236
237 (define-public perl-aliased
238 (package
239 (name "perl-aliased")
240 (version "0.34")
241 (source
242 (origin
243 (method url-fetch)
244 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
245 "aliased-" version ".tar.gz"))
246 (sha256
247 (base32
248 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
249 (build-system perl-build-system)
250 (native-inputs `(("perl-module-build" ,perl-module-build)))
251 (home-page "http://search.cpan.org/dist/aliased/")
252 (synopsis "Use shorter versions of class names")
253 (description "The alias module loads the class you specify and exports
254 into your namespace a subroutine that returns the class name. You can
255 explicitly alias the class to another name or, if you prefer, you can do so
256 implicitly.")
257 (license (package-license perl))))
258
259 (define-public perl-any-moose
260 (package
261 (name "perl-any-moose")
262 (version "0.27")
263 (source (origin
264 (method url-fetch)
265 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
266 "Any-Moose-" version ".tar.gz"))
267 (sha256
268 (base32
269 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
270 (build-system perl-build-system)
271 (native-inputs
272 `(("perl-mouse" ,perl-mouse)
273 ("perl-moose" ,perl-moose)))
274 (home-page "http://search.cpan.org/dist/Any-Moose/")
275 (synopsis "Transparently use Moose or Mouse modules")
276 (description
277 "This module facilitates using @code{Moose} or @code{Mouse} modules
278 without changing the code. By default, Mouse will be provided to libraries,
279 unless Moose is already loaded, or explicitly requested by the end-user. End
280 users can force the decision of which backend to use by setting the environment
281 variable ANY_MOOSE to be Moose or Mouse.")
282 (license (package-license perl))))
283
284 (define-public perl-appconfig
285 (package
286 (name "perl-appconfig")
287 (version "1.71")
288 (source
289 (origin
290 (method url-fetch)
291 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
292 "AppConfig-" version ".tar.gz"))
293 (sha256
294 (base32
295 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
296 (build-system perl-build-system)
297 (native-inputs
298 `(("perl-test-pod" ,perl-test-pod)))
299 (home-page "http://search.cpan.org/dist/AppConfig/")
300 (synopsis "Configuration files and command line parsing")
301 (description "AppConfig is a bundle of Perl5 modules for reading
302 configuration files and parsing command line arguments.")
303 (license (package-license perl))))
304
305 (define-public perl-array-utils
306 (package
307 (name "perl-array-utils")
308 (version "0.5")
309 (source
310 (origin
311 (method url-fetch)
312 (uri (string-append
313 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
314 version
315 ".tar.gz"))
316 (sha256
317 (base32
318 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
319 (build-system perl-build-system)
320 (home-page "http://search.cpan.org/dist/Array-Utils/")
321 (synopsis "Small utils for array manipulation")
322 (description "@code{Array::Utils} is a small pure-perl module containing
323 list manipulation routines.")
324 (license (package-license perl))))
325
326 (define-public perl-async-interrupt
327 (package
328 (name "perl-async-interrupt")
329 (version "1.21")
330 (source (origin
331 (method url-fetch)
332 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
333 "Async-Interrupt-" version ".tar.gz"))
334 (sha256
335 (base32
336 "092zs7b72f8q109c3z829nqfgwqghp3nhw44c0gcyhacbb4wgpk3"))))
337 (build-system perl-build-system)
338 (propagated-inputs
339 `(("perl-common-sense" ,perl-common-sense)))
340 (home-page "http://search.cpan.org/dist/Async-Interrupt/")
341 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
342 (description
343 "@code{Async::Interrupt} implements a single feature only of interest
344 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
345 signals\", which are very similar).
346
347 Sometimes, modules wish to run code asynchronously (in another thread,
348 or from a signal handler), and then signal the perl interpreter on
349 certain events. One common way is to write some data to a pipe and use
350 an event handling toolkit to watch for I/O events. Another way is to
351 send a signal. Those methods are slow, and in the case of a pipe, also
352 not asynchronous - it won't interrupt a running perl interpreter.
353
354 This module implements asynchronous notifications that enable you to
355 signal running perl code from another thread, asynchronously, and
356 sometimes even without using a single syscall.")
357 (license (package-license perl))))
358
359 (define-public perl-autovivification
360 (package
361 (name "perl-autovivification")
362 (version "0.16")
363 (source
364 (origin
365 (method url-fetch)
366 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
367 "autovivification-" version ".tar.gz"))
368 (sha256
369 (base32
370 "1422kw9fknv7rbjkgdfflg1q3mb69d3yryszp38dn0bgzkqhwkc1"))))
371 (build-system perl-build-system)
372 (home-page "http://search.cpan.org/dist/autovivification/")
373 (synopsis "Lexically disable autovivification")
374 (description "When an undefined variable is dereferenced, it gets silently
375 upgraded to an array or hash reference (depending of the type of the
376 dereferencing). This behaviour is called autovivification and usually does
377 what you mean but it may be unnatural or surprising because your variables get
378 populated behind your back. This is especially true when several levels of
379 dereferencing are involved, in which case all levels are vivified up to the
380 last, or when it happens in intuitively read-only constructs like
381 @code{exists}. The pragma provided by this package lets you disable
382 autovivification for some constructs and optionally throws a warning or an
383 error when it would have happened.")
384 (license (package-license perl))))
385
386 (define-public perl-bareword-filehandles
387 (package
388 (name "perl-bareword-filehandles")
389 (version "0.006")
390 (source
391 (origin
392 (method url-fetch)
393 (uri (string-append
394 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
395 version ".tar.gz"))
396 (sha256
397 (base32
398 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
399 (build-system perl-build-system)
400 (native-inputs
401 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
402 ("perl-extutils-depends" ,perl-extutils-depends)))
403 (propagated-inputs
404 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
405 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
406 (home-page "http://search.cpan.org/dist/bareword-filehandles/")
407 (synopsis "Disables bareword filehandles")
408 (description "This module disables bareword filehandles.")
409 (license (package-license perl))))
410
411 (define-public perl-base
412 (package
413 (name "perl-base")
414 (version "2.18")
415 (source
416 (origin
417 (method url-fetch)
418 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
419 "base-" version ".tar.gz"))
420 (sha256
421 (base32
422 "01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
423 (build-system perl-build-system)
424 (home-page "http://search.cpan.org/dist/base/")
425 (synopsis "Establish an ISA relationship with base classes at compile time")
426 (description "Allows you to both load one or more modules, while setting
427 up inheritance from those modules at the same time. Unless you are using the
428 fields pragma, consider this module discouraged in favor of the lighter-weight
429 parent.")
430 (license (package-license perl)))) ;See README
431
432 (define-public perl-browser-open
433 (package
434 (name "perl-browser-open")
435 (version "0.04")
436 (source
437 (origin
438 (method url-fetch)
439 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
440 version ".tar.gz"))
441 (sha256
442 (base32
443 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
444 (build-system perl-build-system)
445 (home-page "http://search.cpan.org/dist/Browser-Open/")
446 (synopsis "Open a browser in a given URL")
447 (description "The functions exported by this module allow you to open URLs
448 in the user's browser. A set of known commands per OS-name is tested for
449 presence, and the first one found is executed. With an optional parameter,
450 all known commands are checked.")
451 (license (package-license perl))))
452
453 (define-public perl-b-hooks-endofscope
454 (package
455 (name "perl-b-hooks-endofscope")
456 (version "0.24")
457 (source
458 (origin
459 (method url-fetch)
460 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
461 "B-Hooks-EndOfScope-" version ".tar.gz"))
462 (sha256
463 (base32
464 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
465 (build-system perl-build-system)
466 (propagated-inputs
467 `(("perl-module-runtime" ,perl-module-runtime)
468 ("perl-module-implementation" ,perl-module-implementation)
469 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
470 ("perl-variable-magic" ,perl-variable-magic)))
471 (home-page "http://search.cpan.org/dist/B-Hooks-EndOfScope/")
472 (synopsis "Execute code after a scope finished compilation")
473 (description "This module allows you to execute code when perl finished
474 compiling the surrounding scope.")
475 (license (package-license perl))))
476
477 (define-public perl-b-hooks-op-check
478 (package
479 (name "perl-b-hooks-op-check")
480 (version "0.22")
481 (source
482 (origin
483 (method url-fetch)
484 (uri (string-append
485 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
486 version ".tar.gz"))
487 (sha256
488 (base32
489 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
490 (build-system perl-build-system)
491 (native-inputs
492 `(("perl-extutils-depends" ,perl-extutils-depends)))
493 (home-page "http://search.cpan.org/dist/B-Hooks-OP-Check/")
494 (synopsis "Wrap OP check callbacks")
495 (description "This module allows you to wrap OP check callbacks.")
496 (license (package-license perl))))
497
498 (define-public perl-b-keywords
499 (package
500 (name "perl-b-keywords")
501 (version "1.15")
502 (source
503 (origin
504 (method url-fetch)
505 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
506 version ".tar.gz"))
507 (sha256
508 (base32
509 "1nhdplmd0y69lnwyajg3anhk6pm13nm6qzm05nzpz8zl7j7fzlk5"))))
510 (build-system perl-build-system)
511 (home-page "http://search.cpan.org/dist/B-Keywords/")
512 (synopsis "Lists of reserved barewords and symbol names")
513 (description "@code{B::Keywords} supplies several arrays of exportable
514 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
515 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
516 @@ExporterSymbols}.")
517 ;; GPLv2 only
518 (license gpl2)))
519
520 (define-public perl-benchmark-timer
521 (package
522 (name "perl-benchmark-timer")
523 (version "0.7102")
524 (source (origin
525 (method url-fetch)
526 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
527 "Benchmark-Timer-" version ".tar.gz"))
528 (sha256
529 (base32
530 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
531 (build-system perl-build-system)
532 (native-inputs
533 `(("perl-module-install" ,perl-module-install)))
534 ;; The optional input module Statistics::PointEstimation (from
535 ;; Statistics-TTest) lists no license.
536 (synopsis "Benchmarking with statistical confidence")
537 (description
538 "The Benchmark::Timer class allows you to time portions of code
539 conveniently, as well as benchmark code by allowing timings of repeated
540 trials. It is perfect for when you need more precise information about the
541 running time of portions of your code than the Benchmark module will give you,
542 but don't want to go all out and profile your code.")
543 (home-page (string-append "http://search.cpan.org/~dcoppit/"
544 "Benchmark-Timer-" version "/"))
545 (license gpl2)))
546
547 (define-public perl-bit-vector
548 (package
549 (name "perl-bit-vector")
550 (version "7.4")
551 (source
552 (origin
553 (method url-fetch)
554 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
555 "Bit-Vector-" version ".tar.gz"))
556 (sha256
557 (base32
558 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
559 (build-system perl-build-system)
560 (propagated-inputs
561 `(("perl-carp-clan" ,perl-carp-clan)))
562 (home-page "http://search.cpan.org/dist/Bit-Vector/")
563 (synopsis "Bit vector library")
564 (description "Bit::Vector is an efficient C library which allows you to
565 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
566 matrices, all of arbitrary sizes. The package also includes an
567 object-oriented Perl module for accessing the C library from Perl, and
568 optionally features overloaded operators for maximum ease of use. The C
569 library can nevertheless be used stand-alone, without Perl.")
570 (license (list (package-license perl) lgpl2.0+))))
571
572 (define-public perl-boolean
573 (package
574 (name "perl-boolean")
575 (version "0.45")
576 (source
577 (origin
578 (method url-fetch)
579 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
580 "boolean-" version ".tar.gz"))
581 (sha256
582 (base32
583 "18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"))))
584 (build-system perl-build-system)
585 (home-page "http://search.cpan.org/dist/boolean/")
586 (synopsis "Boolean support for Perl")
587 (description "This module provides basic Boolean support, by defining two
588 special objects: true and false.")
589 (license (package-license perl))))
590
591 (define-public perl-business-isbn-data
592 (package
593 (name "perl-business-isbn-data")
594 (version "20140910.003")
595 (source
596 (origin
597 (method url-fetch)
598 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
599 "Business-ISBN-Data-" version ".tar.gz"))
600 (sha256
601 (base32
602 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
603 (build-system perl-build-system)
604 (home-page "http://search.cpan.org/dist/Business-ISBN-Data/")
605 (synopsis "Data files for Business::ISBN")
606 (description "This package provides a data pack for @code{Business::ISBN}.
607 These data are generated from the RangeMessage.xml file provided by the ISBN
608 Agency.")
609 (license (package-license perl))))
610
611 (define-public perl-business-isbn
612 (package
613 (name "perl-business-isbn")
614 (version "3.004")
615 (source
616 (origin
617 (method url-fetch)
618 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
619 "Business-ISBN-" version ".tar.gz"))
620 (sha256
621 (base32
622 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
623 (build-system perl-build-system)
624 (propagated-inputs
625 `(("perl-business-isbn-data" ,perl-business-isbn-data)
626 ("perl-mojolicious" ,perl-mojolicious)))
627 (home-page "http://search.cpan.org/dist/Business-ISBN/")
628 (synopsis "Work with International Standard Book Numbers")
629 (description "This modules provides tools to deal with International
630 Standard Book Numbers, including ISBN-10 and ISBN-13.")
631 (license artistic2.0)))
632
633 (define-public perl-business-issn
634 (package
635 (name "perl-business-issn")
636 (version "0.91")
637 (source
638 (origin
639 (method url-fetch)
640 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
641 "Business-ISSN-" version ".tar.gz"))
642 (sha256
643 (base32
644 "1dfnm7h7lbqj356700ldlmgbr51v6hyjn1qig2bb4ysl1wn1jnzi"))))
645 (build-system perl-build-system)
646 (home-page "http://search.cpan.org/dist/Business-ISSN/")
647 (synopsis "Work with International Standard Serial Numbers")
648 (description "This modules provides tools to deal with International
649 Standard Serial Numbers.")
650 (license (package-license perl))))
651
652 (define-public perl-business-ismn
653 (package
654 (name "perl-business-ismn")
655 (version "1.131")
656 (source
657 (origin
658 (method url-fetch)
659 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
660 "Business-ISMN-" version ".tar.gz"))
661 (sha256
662 (base32
663 "1xyc7x4c4xl930rz7grs1l52f1vg4rbiv0c6xlxdsim8qsh7k94g"))))
664 (build-system perl-build-system)
665 (native-inputs
666 `(("perl-tie-cycle" ,perl-tie-cycle)))
667 (home-page "http://search.cpan.org/dist/Business-ISMN/")
668 (synopsis "Work with International Standard Music Numbers")
669 (description "This modules provides tools to deal with International
670 Standard Music Numbers.")
671 (license (package-license perl))))
672
673 (define-public perl-cache-cache
674 (package
675 (name "perl-cache-cache")
676 (version "1.08")
677 (source (origin
678 (method url-fetch)
679 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
680 "Cache-Cache-" version ".tar.gz"))
681 (sha256
682 (base32
683 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
684 (build-system perl-build-system)
685 (propagated-inputs
686 `(("perl-digest-sha1" ,perl-digest-sha1)
687 ("perl-error" ,perl-error)
688 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
689 (home-page "http://search.cpan.org/dist/Cache-Cache/")
690 (synopsis "Cache interface for Perl")
691 (description "The Cache modules are designed to assist a developer in
692 persisting data for a specified period of time. Often these modules are used
693 in web applications to store data locally to save repeated and redundant
694 expensive calls to remote machines or databases. People have also been known
695 to use Cache::Cache for its straightforward interface in sharing data between
696 runs of an application or invocations of a CGI-style script or simply as an
697 easy to use abstraction of the file system or shared memory.")
698 (license (package-license perl))))
699
700 (define-public perl-cache-fastmmap
701 (package
702 (name "perl-cache-fastmmap")
703 (version "1.40")
704 (source
705 (origin
706 (method url-fetch)
707 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
708 "Cache-FastMmap-" version ".tar.gz"))
709 (sha256
710 (base32
711 "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
712 (build-system perl-build-system)
713 (home-page "http://search.cpan.org/dist/Cache-FastMmap/")
714 (synopsis "Shared memory interprocess cache via mmap")
715 (description "A shared memory cache through an mmap'ed file. It's core is
716 written in C for performance. It uses fcntl locking to ensure multiple
717 processes can safely access the cache at the same time. It uses a basic LRU
718 algorithm to keep the most used entries in the cache.")
719 (license (package-license perl))))
720
721 (define-public perl-capture-tiny
722 (package
723 (name "perl-capture-tiny")
724 (version "0.48")
725 (source
726 (origin
727 (method url-fetch)
728 (uri (string-append
729 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
730 version ".tar.gz"))
731 (sha256
732 (base32
733 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
734 (build-system perl-build-system)
735 (home-page "http://search.cpan.org/dist/Capture-Tiny/")
736 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
737 (description
738 "Capture::Tiny provides a simple, portable way to capture almost anything
739 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
740 code or from an external program. Optionally, output can be teed so that it
741 is captured while being passed through to the original file handles.")
742 (license asl2.0)))
743
744 (define-public perl-canary-stability
745 (package
746 (name "perl-canary-stability")
747 (version "2012")
748 (source (origin
749 (method url-fetch)
750 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
751 "Canary-Stability-" version ".tar.gz"))
752 (sha256
753 (base32
754 "01vih43hvpqy67m6a6fwmlswli91mqpv8n8ccglvlkc33l8hn97x"))))
755 (build-system perl-build-system)
756 (home-page "http://search.cpan.org/dist/Canary-Stability/")
757 (synopsis "Check compatibility with the installed perl version")
758 (description
759 "This module is used by Schmorp's modules during configuration stage
760 to test the installed perl for compatibility with his modules.")
761 (license (package-license perl))))
762
763 (define-public perl-carp
764 (package
765 (name "perl-carp")
766 (version "1.38")
767 (source (origin
768 (method url-fetch)
769 (uri (string-append
770 "mirror://cpan/authors/id/R/RJ/RJBS/Carp-"
771 version ".tar.gz"))
772 (sha256
773 (base32
774 "00bijwwc0ix27h2ma3lvsf3b56biar96bl9dikxgx7cmpcycxad5"))))
775 (build-system perl-build-system)
776 (home-page "http://search.cpan.org/dist/Carp/")
777 (synopsis "Alternative warn and die for modules")
778 (description "The @code{Carp} routines are useful in your own modules
779 because they act like @code{die()} or @code{warn()}, but with a message
780 which is more likely to be useful to a user of your module. In the case
781 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
782 summary of every call in the call-stack. For a shorter message you can use
783 @code{carp} or @code{croak} which report the error as being from where your
784 module was called. There is no guarantee that that is where the error was,
785 but it is a good educated guess.")
786 (license (package-license perl))))
787
788 (define-public perl-carp-always
789 (package
790 (name "perl-carp-always")
791 (version "0.13")
792 (source
793 (origin
794 (method url-fetch)
795 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
796 version ".tar.gz"))
797 (sha256
798 (base32
799 "0i2rifkr7ybfcdsqana52487z7vxp2l5qdra0f6ik0ddhn6rzii1"))))
800 (build-system perl-build-system)
801 (native-inputs
802 `(("perl-test-base" ,perl-test-base)))
803 (home-page "http://search.cpan.org/dist/Carp-Always")
804 (synopsis "Warns and dies noisily with stack backtraces/")
805 (description "This module is meant as a debugging aid. It can be used to
806 make a script complain loudly with stack backtraces when @code{warn()}-ing or
807 @code{die()}ing.")
808 (license (package-license perl))))
809
810 (define-public perl-carp-assert
811 (package
812 (name "perl-carp-assert")
813 (version "0.21")
814 (source
815 (origin
816 (method url-fetch)
817 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
818 "Carp-Assert-" version ".tar.gz"))
819 (sha256
820 (base32
821 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
822 (build-system perl-build-system)
823 (home-page "http://search.cpan.org/dist/Carp-Assert/")
824 (synopsis "Executable comments for Perl")
825 (description "Carp::Assert is intended for a purpose like the ANSI C
826 library assert.h.")
827 (license (package-license perl))))
828
829 (define-public perl-carp-assert-more
830 (package
831 (name "perl-carp-assert-more")
832 (version "1.14")
833 (source
834 (origin
835 (method url-fetch)
836 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
837 "Carp-Assert-More-" version ".tar.gz"))
838 (sha256
839 (base32
840 "0cq7qk4qbhqppm4raby5k24b5mx5qjgy1884nrddhxillnzlq01z"))))
841 (build-system perl-build-system)
842 (native-inputs
843 `(("perl-test-exception" ,perl-test-exception)))
844 (propagated-inputs
845 `(("perl-carp-assert" ,perl-carp-assert)))
846 (home-page "http://search.cpan.org/dist/Carp-Assert-More/")
847 (synopsis "Convenience wrappers around Carp::Assert")
848 (description "Carp::Assert::More is a set of handy assertion functions for
849 Perl.")
850 (license artistic2.0)))
851
852 (define-public perl-carp-clan
853 (package
854 (name "perl-carp-clan")
855 (version "6.06")
856 (source
857 (origin
858 (method url-fetch)
859 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
860 "Carp-Clan-" version ".tar.gz"))
861 (sha256
862 (base32
863 "1m6902n6s627nsvyn2vyrk29q7lh6808hsdk7ka5cirm27vchjpa"))))
864 (build-system perl-build-system)
865 (native-inputs
866 `(("perl-test-exception" ,perl-test-exception)))
867 (home-page "http://search.cpan.org/dist/Carp-Clan/")
868 (synopsis "Report errors from a \"clan\" of modules")
869 (description "This module allows errors from a clan (or family) of modules
870 to appear to originate from the caller of the clan. This is necessary in
871 cases where the clan modules are not classes derived from each other, and thus
872 the Carp.pm module doesn't help.")
873 (license (package-license perl))))
874
875 (define-public perl-cddb-get
876 (package
877 (name "perl-cddb-get")
878 (version "2.28")
879 (source (origin
880 (method url-fetch)
881 (uri (string-append
882 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
883 version ".tar.gz"))
884 (sha256
885 (base32
886 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
887 (build-system perl-build-system)
888 (home-page "http://search.cpan.org/dist/CDDB_get/")
889 (synopsis "Read the CDDB entry for an audio CD in your drive")
890 (description "This module can retrieve information from the CDDB.")
891 ;; Either GPLv2 or the "Artistic" license.
892 (license (list gpl2 artistic2.0))))
893
894 (define-public perl-class-accessor
895 (package
896 (name "perl-class-accessor")
897 (version "0.51")
898 (source
899 (origin
900 (method url-fetch)
901 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
902 "Class-Accessor-" version ".tar.gz"))
903 (sha256
904 (base32
905 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
906 (build-system perl-build-system)
907 (native-inputs
908 `(("perl-sub-name" ,perl-sub-name)))
909 (propagated-inputs
910 `(("perl-base" ,perl-base)))
911 (home-page "http://search.cpan.org/dist/Class-Accessor/")
912 (synopsis "Automated accessor generation")
913 (description "This module automagically generates accessors/mutators for
914 your class.")
915 (license (package-license perl))))
916
917 (define-public perl-class-accessor-chained
918 (package
919 (name "perl-class-accessor-chained")
920 (version "0.01")
921 (source
922 (origin
923 (method url-fetch)
924 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
925 "Class-Accessor-Chained-" version ".tar.gz"))
926 (sha256
927 (base32
928 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
929 (build-system perl-build-system)
930 (native-inputs
931 `(("perl-module-build" ,perl-module-build)))
932 (propagated-inputs
933 `(("perl-class-accessor" ,perl-class-accessor)))
934 (home-page "http://search.cpan.org/dist/Class-Accessor-Chained/")
935 (synopsis "Faster, but less expandable, chained accessors")
936 (description "A chained accessor is one that always returns the object
937 when called with parameters (to set), and the value of the field when called
938 with no arguments. This module subclasses Class::Accessor in order to provide
939 the same mk_accessors interface.")
940 (license (package-license perl))))
941
942 (define-public perl-class-accessor-grouped
943 (package
944 (name "perl-class-accessor-grouped")
945 (version "0.10012")
946 (source
947 (origin
948 (method url-fetch)
949 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
950 "Class-Accessor-Grouped-" version ".tar.gz"))
951 (sha256
952 (base32
953 "1zp74yv023q3macrf4rv3i82z8pkffqyhh7xk9xg8fbr63ikwqf4"))))
954 (build-system perl-build-system)
955 (native-inputs
956 `(("perl-module-install" ,perl-module-install)
957 ("perl-test-exception" ,perl-test-exception)))
958 (propagated-inputs
959 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
960 ("perl-module-runtime" ,perl-module-runtime)
961 ("perl-sub-name" ,perl-sub-name)))
962 (home-page "http://search.cpan.org/dist/Class-Accessor-Grouped/")
963 (synopsis "Build groups of accessors")
964 (description "This class lets you build groups of accessors that will call
965 different getters and setters.")
966 (license (package-license perl))))
967
968 (define-public perl-class-c3
969 (package
970 (name "perl-class-c3")
971 (version "0.27")
972 (source
973 (origin
974 (method url-fetch)
975 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
976 "Class-C3-" version ".tar.gz"))
977 (sha256
978 (base32
979 "185jdpr4applrkvh71ks9ildx5kdymhqr4hilsqxwqny1wr56qss"))))
980 (build-system perl-build-system)
981 (propagated-inputs
982 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
983 (home-page "http://search.cpan.org/dist/Class-C3/")
984 (synopsis "Pragma to use the C3 method resolution order algorithm")
985 (description "This is pragma to change Perl 5's standard method resolution
986 order from depth-first left-to-right (a.k.a - pre-order) to the more
987 sophisticated C3 method resolution order.")
988 (license (package-license perl))))
989
990 (define-public perl-class-c3-adopt-next
991 (package
992 (name "perl-class-c3-adopt-next")
993 (version "0.13")
994 (source
995 (origin
996 (method url-fetch)
997 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
998 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
999 (sha256
1000 (base32
1001 "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
1002 (build-system perl-build-system)
1003 (native-inputs
1004 `(("perl-test-exception" ,perl-test-exception)))
1005 (propagated-inputs
1006 `(("perl-list-moreutils" ,perl-list-moreutils)
1007 ("perl-mro-compat" ,perl-mro-compat)))
1008 (home-page "http://search.cpan.org/dist/Class-C3-Adopt-NEXT/")
1009 (synopsis "Drop-in replacement for NEXT")
1010 (description "This module is intended as a drop-in replacement for NEXT,
1011 supporting the same interface, but using Class::C3 to do the hard work.")
1012 (license (package-license perl))))
1013
1014 (define-public perl-class-c3-componentised
1015 (package
1016 (name "perl-class-c3-componentised")
1017 (version "1.001000")
1018 (source
1019 (origin
1020 (method url-fetch)
1021 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
1022 "Class-C3-Componentised-" version ".tar.gz"))
1023 (sha256
1024 (base32
1025 "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
1026 (build-system perl-build-system)
1027 (native-inputs
1028 `(("perl-module-install" ,perl-module-install)
1029 ("perl-test-exception" ,perl-test-exception)))
1030 (propagated-inputs
1031 `(("perl-class-c3" ,perl-class-c3)
1032 ("perl-class-inspector" ,perl-class-inspector)
1033 ("perl-mro-compat" ,perl-mro-compat)))
1034 (home-page "http://search.cpan.org/dist/Class-C3-Componentised/")
1035 (synopsis "Load mix-ins or components to your C3-based class")
1036 (description "This module will inject base classes to your module using
1037 the Class::C3 method resolution order.")
1038 (license (package-license perl))))
1039
1040 (define-public perl-class-data-inheritable
1041 (package
1042 (name "perl-class-data-inheritable")
1043 (version "0.08")
1044 (source
1045 (origin
1046 (method url-fetch)
1047 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1048 "Class-Data-Inheritable-" version ".tar.gz"))
1049 (sha256
1050 (base32
1051 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1052 (build-system perl-build-system)
1053 (home-page "http://search.cpan.org/dist/Class-Data-Inheritable/")
1054 (synopsis "Inheritable, overridable class data")
1055 (description "Class::Data::Inheritable is for creating accessor/mutators
1056 to class data. That is, if you want to store something about your class as a
1057 whole (instead of about a single object). This data is then inherited by your
1058 subclasses and can be overridden.")
1059 (license (package-license perl))))
1060
1061 (define-public perl-class-date
1062 (package
1063 (name "perl-class-date")
1064 (version "1.1.15")
1065 (source
1066 (origin
1067 (method url-fetch)
1068 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
1069 "Class-Date-" version ".tar.gz"))
1070 (sha256
1071 (base32
1072 "0dd707sq8ix2dqbnp7ga77ba69r3vsn0cd6scnkn13s0gm2g4b00"))))
1073 (build-system perl-build-system)
1074 (arguments `(#:tests? #f)) ;timezone tests in chroot
1075 (home-page "http://search.cpan.org/dist/Class-Date/")
1076 (synopsis "Class for easy date and time manipulation")
1077 (description "This module provides a general-purpose date and datetime
1078 type for perl.")
1079 (license (package-license perl))))
1080
1081 (define-public perl-class-errorhandler
1082 (package
1083 (name "perl-class-errorhandler")
1084 (version "0.04")
1085 (source (origin
1086 (method url-fetch)
1087 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1088 "Class-ErrorHandler-" version ".tar.gz"))
1089 (sha256
1090 (base32
1091 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1092 (build-system perl-build-system)
1093 (home-page "http://search.cpan.org/dist/Class-ErrorHandler/")
1094 (synopsis "Base class for error handling")
1095 (description
1096 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1097 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1098 its two error-handling methods, error and errstr, to communicate error messages back
1099 to the calling program.")
1100 (license (package-license perl))))
1101
1102 (define-public perl-class-factory-util
1103 (package
1104 (name "perl-class-factory-util")
1105 (version "1.7")
1106 (source
1107 (origin
1108 (method url-fetch)
1109 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1110 "Class-Factory-Util-" version ".tar.gz"))
1111 (sha256
1112 (base32
1113 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1114 (build-system perl-build-system)
1115 (native-inputs `(("perl-module-build" ,perl-module-build)))
1116 (home-page "http://search.cpan.org/dist/Class-Factory-Util/")
1117 (synopsis "Utility methods for factory classes")
1118 (description "This module exports methods useful for factory classes.")
1119 (license (package-license perl))))
1120
1121 (define-public perl-class-inspector
1122 (package
1123 (name "perl-class-inspector")
1124 (version "1.32")
1125 (source
1126 (origin
1127 (method url-fetch)
1128 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1129 "Class-Inspector-" version ".tar.gz"))
1130 (sha256
1131 (base32
1132 "0d85rihxahdvhj8cysqrgg0kbmcqghz5hgy41dbkxr1qaf5xrynf"))))
1133 (build-system perl-build-system)
1134 (home-page "http://search.cpan.org/dist/Class-Inspector/")
1135 (synopsis "Get information about a class and its structure")
1136 (description "Class::Inspector allows you to get information about a
1137 loaded class.")
1138 (license (package-license perl))))
1139
1140 (define-public perl-class-load
1141 (package
1142 (name "perl-class-load")
1143 (version "0.24")
1144 (source
1145 (origin
1146 (method url-fetch)
1147 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1148 "Class-Load-" version ".tar.gz"))
1149 (sha256
1150 (base32
1151 "0dnacm959vi5819h6cdl5qpi89fr81p6smbsqx7m6in18vd87f8b"))))
1152 (build-system perl-build-system)
1153 (native-inputs
1154 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1155 ("perl-test-fatal" ,perl-test-fatal)
1156 ("perl-test-needs" ,perl-test-needs)
1157 ("perl-test-without-module" ,perl-test-without-module)))
1158 (propagated-inputs
1159 `(("perl-package-stash" ,perl-package-stash)
1160 ("perl-data-optlist" ,perl-data-optlist)
1161 ("perl-namespace-clean" ,perl-namespace-clean)
1162 ("perl-module-runtime" ,perl-module-runtime)
1163 ("perl-module-implementation" ,perl-module-implementation)))
1164 (home-page "http://search.cpan.org/dist/Class-Load/")
1165 (synopsis "Working (require \"Class::Name\") and more")
1166 (description "\"require EXPR\" only accepts Class/Name.pm style module
1167 names, not Class::Name. For that, this module provides \"load_class
1168 'Class::Name'\".")
1169 (license (package-license perl))))
1170
1171 (define-public perl-class-load-xs
1172 (package
1173 (name "perl-class-load-xs")
1174 (version "0.10")
1175 (source
1176 (origin
1177 (method url-fetch)
1178 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1179 "Class-Load-XS-" version ".tar.gz"))
1180 (sha256
1181 (base32
1182 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1183 (build-system perl-build-system)
1184 (native-inputs
1185 `(("perl-test-fatal" ,perl-test-fatal)
1186 ("perl-test-needs" ,perl-test-needs)
1187 ("perl-test-without-module" ,perl-test-without-module)))
1188 (inputs `(("perl-class-load" ,perl-class-load)))
1189 (home-page "http://search.cpan.org/dist/Class-Load-XS/")
1190 (synopsis "XS implementation of parts of Class::Load")
1191 (description "This module provides an XS implementation for portions of
1192 Class::Load.")
1193 (license artistic2.0)))
1194
1195 (define-public perl-class-methodmaker
1196 (package
1197 (name "perl-class-methodmaker")
1198 (version "2.24")
1199 (source
1200 (origin
1201 (method url-fetch)
1202 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1203 "class-methodmaker/Class-MethodMaker-"
1204 version ".tar.gz"))
1205 (sha256
1206 (base32
1207 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1208 (build-system perl-build-system)
1209 (home-page "http://search.cpan.org/dist/Class-MethodMaker/")
1210 (synopsis "Create generic methods for OO Perl")
1211 (description "This module solves the problem of having to continually
1212 write accessor methods for your objects that perform standard tasks.")
1213 (license (package-license perl))))
1214
1215 (define-public perl-class-method-modifiers
1216 (package
1217 (name "perl-class-method-modifiers")
1218 (version "2.12")
1219 (source
1220 (origin
1221 (method url-fetch)
1222 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1223 "Class-Method-Modifiers-" version ".tar.gz"))
1224 (sha256
1225 (base32
1226 "1j3swa212wh14dq5r6zjarm2lzpx6mrdfplpjy65px8b09ri0k74"))))
1227 (build-system perl-build-system)
1228 (native-inputs
1229 `(("perl-test-fatal" ,perl-test-fatal)
1230 ("perl-test-requires" ,perl-test-requires)))
1231 (home-page "http://search.cpan.org/dist/Class-Method-Modifiers/")
1232 (synopsis "Moose-like method modifiers")
1233 (description "Class::Method::Modifiers provides three modifiers: 'before',
1234 'around', and 'after'. 'before' and 'after' are run just before and after the
1235 method they modify, but can not really affect that original method. 'around'
1236 is run in place of the original method, with a hook to easily call that
1237 original method.")
1238 (license (package-license perl))))
1239
1240 (define-public perl-class-singleton
1241 (package
1242 (name "perl-class-singleton")
1243 (version "1.5")
1244 (source
1245 (origin
1246 (method url-fetch)
1247 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1248 "Class-Singleton-" version ".tar.gz"))
1249 (sha256
1250 (base32
1251 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1252 (build-system perl-build-system)
1253 (home-page "http://search.cpan.org/dist/Class-Singleton/")
1254 (synopsis "Implementation of a singleton class for Perl")
1255 (description "This module implements a Singleton class from which other
1256 classes can be derived. By itself, the Class::Singleton module does very
1257 little other than manage the instantiation of a single object.")
1258 (license (package-license perl))))
1259
1260 (define-public perl-class-tiny
1261 (package
1262 (name "perl-class-tiny")
1263 (version "1.006")
1264 (source
1265 (origin
1266 (method url-fetch)
1267 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1268 "Class-Tiny-" version ".tar.gz"))
1269 (sha256
1270 (base32
1271 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1272 (build-system perl-build-system)
1273 (home-page "http://search.cpan.org/dist/Class-Tiny/")
1274 (synopsis "Minimalist class construction")
1275 (description "This module offers a minimalist class construction kit. It
1276 uses no non-core modules for any recent Perl.")
1277 (license asl2.0)))
1278
1279 (define-public perl-class-unload
1280 (package
1281 (name "perl-class-unload")
1282 (version "0.08")
1283 (source
1284 (origin
1285 (method url-fetch)
1286 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1287 "Class-Unload-" version ".tar.gz"))
1288 (sha256
1289 (base32
1290 "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
1291 (build-system perl-build-system)
1292 (propagated-inputs
1293 `(("perl-class-inspector" ,perl-class-inspector)))
1294 (home-page "http://search.cpan.org/dist/Class-Unload/")
1295 (synopsis "Unload a class")
1296 (description "Class:Unload unloads a given class by clearing out its
1297 symbol table and removing it from %INC.")
1298 (license (package-license perl))))
1299
1300 (define-public perl-class-xsaccessor
1301 (package
1302 (name "perl-class-xsaccessor")
1303 (version "1.19")
1304 (source
1305 (origin
1306 (method url-fetch)
1307 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1308 "Class-XSAccessor-" version ".tar.gz"))
1309 (sha256
1310 (base32
1311 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1312 (build-system perl-build-system)
1313 (home-page "http://search.cpan.org/dist/Class-XSAccessor/")
1314 (synopsis "Generate fast XS accessors without runtime compilation")
1315 (description "Class::XSAccessor implements fast read, write, and
1316 read/write accessors in XS. Additionally, it can provide predicates such as
1317 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1318 object. It only works with objects that are implemented as ordinary hashes.
1319 Class::XSAccessor::Array implements the same interface for objects that use
1320 arrays for their internal representation.")
1321 (license (package-license perl))))
1322
1323 (define-public perl-clone
1324 (package
1325 (name "perl-clone")
1326 (version "0.39")
1327 (source (origin
1328 (method url-fetch)
1329 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
1330 "Clone-" version ".tar.gz"))
1331 (sha256
1332 (base32
1333 "0bgsidb96gxzf3zhy6v1ksj1c200vxbwykk32fqm1mj97rl4dc5c"))))
1334 (build-system perl-build-system)
1335 (synopsis "Recursively copy Perl datatypes")
1336 (description
1337 "This module provides a clone() method which makes recursive copies of
1338 nested hash, array, scalar and reference types, including tied variables and
1339 objects.")
1340 (home-page (string-append "http://search.cpan.org/~garu/"
1341 "Clone-" version "/"))
1342 (license (package-license perl))))
1343
1344 (define-public perl-clone-pp
1345 (package
1346 (name "perl-clone-pp")
1347 (version "1.07")
1348 (source
1349 (origin
1350 (method url-fetch)
1351 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1352 version ".tar.gz"))
1353 (sha256
1354 (base32
1355 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1356 (build-system perl-build-system)
1357 (home-page "http://search.cpan.org/dist/Clone-PP/")
1358 (synopsis "Recursively copy Perl datatypes")
1359 (description "This module provides a general-purpose @code{clone} function
1360 to make deep copies of Perl data structures. It calls itself recursively to
1361 copy nested hash, array, scalar and reference types, including tied variables
1362 and objects.")
1363 (license (package-license perl))))
1364
1365 (define-public perl-common-sense
1366 (package
1367 (name "perl-common-sense")
1368 (version "3.74")
1369 (source
1370 (origin
1371 (method url-fetch)
1372 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1373 "common-sense-" version ".tar.gz"))
1374 (sha256
1375 (base32
1376 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1377 (build-system perl-build-system)
1378 (home-page "http://search.cpan.org/dist/common-sense/")
1379 (synopsis "Sane defaults for Perl programs")
1380 (description "This module implements some sane defaults for Perl programs,
1381 as defined by two typical specimens of Perl coders.")
1382 (license (package-license perl))))
1383
1384 (define-public perl-config-any
1385 (package
1386 (name "perl-config-any")
1387 (version "0.32")
1388 (source
1389 (origin
1390 (method url-fetch)
1391 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1392 "Config-Any-" version ".tar.gz"))
1393 (sha256
1394 (base32
1395 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1396 (build-system perl-build-system)
1397 (propagated-inputs
1398 `(("perl-module-pluggable" ,perl-module-pluggable)))
1399 (home-page "http://search.cpan.org/dist/Config-Any/")
1400 (synopsis "Load configuration from different file formats")
1401 (description "Config::Any provides a facility for Perl applications and
1402 libraries to load configuration data from multiple different file formats. It
1403 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1404 (license (package-license perl))))
1405
1406 (define-public perl-config-autoconf
1407 (package
1408 (name "perl-config-autoconf")
1409 (version "0.315")
1410 (source
1411 (origin
1412 (method url-fetch)
1413 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1414 "Config-AutoConf-" version ".tar.gz"))
1415 (sha256
1416 (base32
1417 "0h39x9rzrhhilpg8yxlzpka269qrzsjg0iy0c1b9xflqlvhx2g2b"))))
1418 (build-system perl-build-system)
1419 (propagated-inputs
1420 `(("perl-capture-tiny" ,perl-capture-tiny)))
1421 (home-page "http://search.cpan.org/dist/Config-AutoConf/")
1422 (synopsis "Module to implement some AutoConf macros in Perl")
1423 (description "Config::AutoConf is intended to provide the same
1424 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1425 (license (package-license perl))))
1426
1427 (define-public perl-config-general
1428 (package
1429 (name "perl-config-general")
1430 (version "2.56")
1431 (source
1432 (origin
1433 (method url-fetch)
1434 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1435 "Config-General-" version ".tar.gz"))
1436 (sha256
1437 (base32
1438 "0szxxaihz71pr0r2jp9wvbrfc3hrsxi9xrd9vnyrxlrax8sci5h9"))))
1439 (build-system perl-build-system)
1440 (home-page "http://search.cpan.org/dist/Config-General/")
1441 (synopsis "Generic Config Module")
1442 (description "This module opens a config file and parses its contents for
1443 you. The format of config files supported by Config::General is inspired by
1444 the well known Apache config format and is 100% compatible with Apache
1445 configs, but you can also just use simple name/value pairs in your config
1446 files. In addition to the capabilities of an Apache config file it supports
1447 some enhancements such as here-documents, C-style comments, and multiline
1448 options.")
1449 (license (package-license perl))))
1450
1451 (define-public perl-config-ini
1452 (package
1453 (name "perl-config-ini")
1454 (version "0.025")
1455 (source (origin
1456 (method url-fetch)
1457 (uri (string-append
1458 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1459 version ".tar.gz"))
1460 (sha256
1461 (base32
1462 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1463 (build-system perl-build-system)
1464 (inputs
1465 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1466 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1467 ("perl-sub-exporter" ,perl-sub-exporter)))
1468 (home-page "http://search.cpan.org/dist/Config-INI/")
1469 (synopsis "Simple .ini-file format reader and writer")
1470 (description "@code{Config::INI} is a module that facilates the reading
1471 and writing of @code{.ini}-style configuration files.")
1472 (license (package-license perl))))
1473
1474 (define-public perl-context-preserve
1475 (package
1476 (name "perl-context-preserve")
1477 (version "0.03")
1478 (source
1479 (origin
1480 (method url-fetch)
1481 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1482 "Context-Preserve-" version ".tar.gz"))
1483 (sha256
1484 (base32
1485 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1486 (build-system perl-build-system)
1487 (native-inputs
1488 `(("perl-test-exception" ,perl-test-exception)
1489 ("perl-test-simple" ,perl-test-simple)))
1490 (home-page "http://search.cpan.org/dist/Context-Preserve/")
1491 (synopsis "Preserve context during subroutine call")
1492 (description "This module runs code after a subroutine call, preserving
1493 the context the subroutine would have seen if it were the last statement in
1494 the caller.")
1495 (license (package-license perl))))
1496
1497 (define-public perl-convert-binhex
1498 (package
1499 (name "perl-convert-binhex")
1500 (version "1.125")
1501 (source
1502 (origin
1503 (method url-fetch)
1504 (uri (string-append
1505 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1506 version
1507 ".tar.gz"))
1508 (sha256
1509 (base32
1510 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1511 (build-system perl-build-system)
1512 (native-inputs
1513 `(("perl-file-slurp" ,perl-file-slurp)
1514 ("perl-test-most" ,perl-test-most)))
1515 (home-page
1516 "http://search.cpan.org/dist/Convert-BinHex/")
1517 (synopsis "Extract data from Macintosh BinHex files")
1518 (description
1519 "BinHex is a format for transporting files safely through electronic
1520 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1521 provides a means of converting those data streams back into into binary
1522 data.")
1523 (license perl-license)))
1524
1525 (define-public perl-cpan-meta-check
1526 (package
1527 (name "perl-cpan-meta-check")
1528 (version "0.014")
1529 (source
1530 (origin
1531 (method url-fetch)
1532 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1533 "CPAN-Meta-Check-" version ".tar.gz"))
1534 (sha256
1535 (base32
1536 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1537 (build-system perl-build-system)
1538 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1539 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1540 (home-page "http://search.cpan.org/dist/CPAN-Meta-Check/")
1541 (synopsis "Verify requirements in a CPAN::Meta object")
1542 (description "This module verifies if requirements described in a
1543 CPAN::Meta object are present.")
1544 (license (package-license perl))))
1545
1546 (define-public perl-cpanel-json-xs
1547 (package
1548 (name "perl-cpanel-json-xs")
1549 (version "3.0114")
1550 (source
1551 (origin
1552 (method url-fetch)
1553 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1554 "Cpanel-JSON-XS-" version ".tar.gz"))
1555 (sha256
1556 (base32
1557 "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71"))))
1558 (build-system perl-build-system)
1559 (propagated-inputs
1560 `(("perl-common-sense" ,perl-common-sense)))
1561 (home-page "http://search.cpan.org/dist/Cpanel-JSON-XS/")
1562 (synopsis "JSON::XS for Cpanel")
1563 (description "This module converts Perl data structures to JSON and vice
1564 versa.")
1565 (license (package-license perl))))
1566
1567 (define-public perl-crypt-randpasswd
1568 (package
1569 (name "perl-crypt-randpasswd")
1570 (version "0.06")
1571 (source
1572 (origin
1573 (method url-fetch)
1574 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1575 "Crypt-RandPasswd-" version ".tar.gz"))
1576 (sha256
1577 (base32
1578 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1579 (build-system perl-build-system)
1580 (home-page "http://search.cpan.org/dist/Crypt-RandPasswd/")
1581 (synopsis "Random password generator")
1582 (description "Crypt::RandPasswd provides three functions that can be used
1583 to generate random passwords, constructed from words, letters, or characters.
1584 This code is a Perl implementation of the Automated Password Generator
1585 standard, like the program described in \"A Random Word Generator For
1586 Pronounceable Passwords\". This code is a re-engineering of the program
1587 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1588 Password Generator\".")
1589 (license (package-license perl))))
1590
1591 (define-public perl-crypt-rc4
1592 (package
1593 (name "perl-crypt-rc4")
1594 (version "2.02")
1595 (source
1596 (origin
1597 (method url-fetch)
1598 (uri (string-append
1599 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
1600 version
1601 ".tar.gz"))
1602 (sha256
1603 (base32
1604 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
1605 (build-system perl-build-system)
1606 (home-page "http://search.cpan.org/dist/Crypt-RC4/")
1607 (synopsis "Perl implementation of the RC4 encryption algorithm")
1608 (description "A pure Perl implementation of the RC4 algorithm.")
1609 (license (package-license perl))))
1610
1611 (define-public perl-cwd-guard
1612 (package
1613 (name "perl-cwd-guard")
1614 (version "0.05")
1615 (source (origin
1616 (method url-fetch)
1617 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
1618 "Cwd-Guard-" version ".tar.gz"))
1619 (sha256
1620 (base32
1621 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
1622 (build-system perl-build-system)
1623 (native-inputs
1624 `(("perl-module-build" ,perl-module-build)
1625 ("perl-test-requires" ,perl-test-requires)))
1626 (home-page "http://search.cpan.org/dist/Cwd-Guard/")
1627 (synopsis "Temporarily change working directory")
1628 (description
1629 "@code{Cwd::Guard} changes the current directory using a limited scope.
1630 It returns to the previous working directory when the object is destroyed.")
1631 (license (package-license perl))))
1632
1633 (define-public perl-czplib
1634 (package
1635 (name "perl-czplib")
1636 (version "1.0.5")
1637 (source
1638 (origin
1639 (method url-fetch)
1640 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1641 version ".tgz"))
1642 (sha256
1643 (base32
1644 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1645 (modules '((guix build utils)))
1646 (snippet
1647 '(begin
1648 ;; Remove .git directory
1649 (delete-file-recursively ".git")
1650 #t))))
1651 (build-system perl-build-system)
1652 (arguments
1653 `(#:phases
1654 (modify-phases %standard-phases
1655 (delete 'configure)
1656 (delete 'build)
1657 (replace
1658 'install
1659 (lambda* (#:key outputs #:allow-other-keys)
1660 (copy-recursively "."
1661 (string-append (assoc-ref outputs "out")
1662 "/plib/perl5/site_perl/"
1663 ,(package-version perl)
1664 "/czplib/"))
1665 #t)))))
1666 (home-page "https://sourceforge.net/projects/czplib/")
1667 (synopsis "Library for genomic analysis")
1668 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1669 functions and data structures for processing and analysing genomic and
1670 bioinformatics data.")
1671 (license gpl3+)))
1672
1673 (define-public perl-data
1674 (package
1675 (name "perl-data")
1676 (version "0.002009")
1677 (source
1678 (origin
1679 (method url-fetch)
1680 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
1681 "Data-Perl-" version ".tar.gz"))
1682 (sha256
1683 (base32
1684 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1685 (build-system perl-build-system)
1686 (native-inputs
1687 `(("perl-test-deep" ,perl-test-deep)
1688 ("perl-test-output" ,perl-test-output)
1689 ("perl-test-fatal" ,perl-test-fatal)))
1690 (inputs
1691 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
1692 ("perl-list-moreutils" ,perl-list-moreutils)
1693 ("perl-module-runtime" ,perl-module-runtime)
1694 ("perl-role-tiny" ,perl-role-tiny)
1695 ("perl-strictures" ,perl-strictures)))
1696 (home-page "http://search.cpan.org/dist/Data-Perl/")
1697 (synopsis "Base classes wrapping fundamental Perl data types")
1698 (description "Collection of classes that wrap fundamental data types that
1699 exist in Perl. These classes and methods as they exist today are an attempt
1700 to mirror functionality provided by Moose's Native Traits. One important
1701 thing to note is all classes currently do no validation on constructor
1702 input.")
1703 (license (package-license perl))))
1704
1705 (define-public perl-data-compare
1706 (package
1707 (name "perl-data-compare")
1708 (version "1.25")
1709 (source
1710 (origin
1711 (method url-fetch)
1712 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
1713 "Data-Compare-" version ".tar.gz"))
1714 (sha256
1715 (base32
1716 "0wzasidg9yjcfsi2gdiaw6726ikqda7n24n0v2ngpaazakdkcjqx"))))
1717 (build-system perl-build-system)
1718 (propagated-inputs
1719 `(("perl-file-find-rule" ,perl-file-find-rule)))
1720 (home-page "http://search.cpan.org/dist/Data-Compare/")
1721 (synopsis "Compare Perl data structures")
1722 (description "This module compares arbitrary data structures to see if
1723 they are copies of each other.")
1724 (license (package-license perl))))
1725
1726 (define-public perl-data-uniqid
1727 (package
1728 (name "perl-data-uniqid")
1729 (version "0.12")
1730 (source
1731 (origin
1732 (method url-fetch)
1733 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
1734 version ".tar.gz"))
1735 (sha256
1736 (base32
1737 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
1738 (build-system perl-build-system)
1739 (home-page "http://search.cpan.org/dist/Data-Uniqid/")
1740 (synopsis "Perl extension for generating unique identifiers")
1741 (description "@code{Data::Uniqid} provides three simple routines for
1742 generating unique ids. These ids are coded with a Base62 systen to make them
1743 short and handy (e.g. to use it as part of a URL).")
1744 (license (package-license perl))))
1745
1746 (define-public perl-data-dump
1747 (package
1748 (name "perl-data-dump")
1749 (version "1.23")
1750 (source
1751 (origin
1752 (method url-fetch)
1753 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1754 "Data-Dump-" version ".tar.gz"))
1755 (sha256
1756 (base32
1757 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
1758 (build-system perl-build-system)
1759 (home-page "http://search.cpan.org/dist/Data-Dump/")
1760 (synopsis "Pretty printing of data structures")
1761 (description "This module provide functions that takes a list of values as
1762 their argument and produces a string as its result. The string contains Perl
1763 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1764 (license (package-license perl))))
1765
1766 (define-public perl-data-dumper-concise
1767 (package
1768 (name "perl-data-dumper-concise")
1769 (version "2.023")
1770 (source
1771 (origin
1772 (method url-fetch)
1773 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1774 "Data-Dumper-Concise-" version ".tar.gz"))
1775 (sha256
1776 (base32
1777 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
1778 (build-system perl-build-system)
1779 (home-page "http://search.cpan.org/dist/Data-Dumper-Concise/")
1780 (synopsis "Concise data dumper")
1781 (description "Data::Dumper::Concise provides a dumper with Less
1782 indentation and newlines plus sub deparsing.")
1783 (license (package-license perl))))
1784
1785 (define-public perl-data-optlist
1786 (package
1787 (name "perl-data-optlist")
1788 (version "0.110")
1789 (source
1790 (origin
1791 (method url-fetch)
1792 (uri (string-append
1793 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1794 version ".tar.gz"))
1795 (sha256
1796 (base32
1797 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
1798 (build-system perl-build-system)
1799 (propagated-inputs
1800 `(("perl-sub-install" ,perl-sub-install)
1801 ("perl-params-util" ,perl-params-util)))
1802 (home-page "http://search.cpan.org/dist/Data-OptList/")
1803 (synopsis "Parse and validate simple name/value option pairs")
1804 (description
1805 "Data::OptList provides a simple syntax for name/value option pairs.")
1806 (license (package-license perl))))
1807
1808 (define-public perl-data-page
1809 (package
1810 (name "perl-data-page")
1811 (version "2.02")
1812 (source
1813 (origin
1814 (method url-fetch)
1815 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
1816 "Data-Page-" version ".tar.gz"))
1817 (sha256
1818 (base32
1819 "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1820 (build-system perl-build-system)
1821 (native-inputs
1822 `(("perl-module-build" ,perl-module-build)
1823 ("perl-test-exception" ,perl-test-exception)))
1824 (propagated-inputs
1825 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1826 (home-page "http://search.cpan.org/dist/Data-Page/")
1827 (synopsis "Help when paging through sets of results")
1828 (description "When searching through large amounts of data, it is often
1829 the case that a result set is returned that is larger than we want to display
1830 on one page. This results in wanting to page through various pages of data.
1831 The maths behind this is unfortunately fiddly, hence this module.")
1832 (license (package-license perl))))
1833
1834 (define-public perl-data-perl
1835 (package
1836 (name "perl-data-perl")
1837 (version "0.002009")
1838 (source
1839 (origin
1840 (method url-fetch)
1841 (uri (string-append
1842 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
1843 version
1844 ".tar.gz"))
1845 (sha256
1846 (base32
1847 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1848 (build-system perl-build-system)
1849 (native-inputs
1850 `(("perl-test-deep" ,perl-test-deep)
1851 ("perl-test-fatal" ,perl-test-fatal)
1852 ("perl-test-output" ,perl-test-output)))
1853 (inputs
1854 `(("perl-class-method-modifiers"
1855 ,perl-class-method-modifiers)
1856 ("perl-module-runtime" ,perl-module-runtime)
1857 ("perl-role-tiny" ,perl-role-tiny)
1858 ("perl-strictures" ,perl-strictures)))
1859 (propagated-inputs
1860 `(("perl-list-moreutils" ,perl-list-moreutils)))
1861 (home-page
1862 "http://search.cpan.org/dist/Data-Perl/")
1863 (synopsis "Base classes wrapping fundamental Perl data types")
1864 (description
1865 "@code{Data::Perl} is a container class for the following classes:
1866 @itemize
1867 @item @code{Data::Perl::Collection::Hash}
1868 @item @code{Data::Perl::Collection::Array}
1869 @item @code{Data::Perl::String}
1870 @item @code{Data::Perl::Number}
1871 @item @code{Data::Perl::Counter}
1872 @item @code{Data::Perl::Bool}
1873 @item @code{Data::Perl::Code}
1874 @end itemize")
1875 (license perl-license)))
1876
1877 (define-public perl-data-printer
1878 (package
1879 (name "perl-data-printer")
1880 (version "0.40")
1881 (source
1882 (origin
1883 (method url-fetch)
1884 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
1885 version ".tar.gz"))
1886 (sha256
1887 (base32
1888 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
1889 (build-system perl-build-system)
1890 (propagated-inputs
1891 `(("perl-clone-pp" ,perl-clone-pp)
1892 ("perl-file-homedir" ,perl-file-homedir)
1893 ("perl-package-stash" ,perl-package-stash)
1894 ("perl-sort-naturally" ,perl-sort-naturally)))
1895 (home-page "http://search.cpan.org/dist/Data-Printer/")
1896 (synopsis "Colored pretty-print of Perl data structures and objects")
1897 (description "Display Perl variables and objects on screen, properly
1898 formatted (to be inspected by a human).")
1899 (license (package-license perl))))
1900
1901 (define-public perl-data-record
1902 (package
1903 (name "perl-data-record")
1904 (version "0.02")
1905 (source
1906 (origin
1907 (method url-fetch)
1908 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
1909 "Data-Record-" version ".tar.gz"))
1910 (sha256
1911 (base32
1912 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
1913 (build-system perl-build-system)
1914 (native-inputs
1915 `(("perl-test-exception" ,perl-test-exception)
1916 ("perl-module-build" ,perl-module-build)))
1917 (propagated-inputs
1918 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
1919 (home-page "http://search.cpan.org/dist/Data-Record/")
1920 (synopsis "Conditionally split data into records")
1921 (description "This Perl module allows you to split data into records by
1922 not only specifying what you wish to split the data on, but also by specifying
1923 an \"unless\" regular expression. If the text in question matches the
1924 \"unless\" regex, it will not be split there. This allows us to do things
1925 like split on newlines unless newlines are embedded in quotes.")
1926 (license (package-license perl))))
1927
1928 (define-public perl-data-section
1929 (package
1930 (name "perl-data-section")
1931 (version "0.200007")
1932 (source
1933 (origin
1934 (method url-fetch)
1935 (uri (string-append
1936 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
1937 version
1938 ".tar.gz"))
1939 (sha256
1940 (base32
1941 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
1942 (build-system perl-build-system)
1943 (native-inputs
1944 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
1945 (propagated-inputs
1946 `(("perl-mro-compat" ,perl-mro-compat)
1947 ("perl-sub-exporter" ,perl-sub-exporter)))
1948 (home-page "http://search.cpan.org/dist/Data-Section/")
1949 (synopsis "Read multiple hunks of data out of your DATA section")
1950 (description "This package provides a Perl library to read multiple hunks
1951 of data out of your DATA section.")
1952 (license (package-license perl))))
1953
1954 (define-public perl-data-stag
1955 (package
1956 (name "perl-data-stag")
1957 (version "0.14")
1958 (source
1959 (origin
1960 (method url-fetch)
1961 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
1962 "Data-Stag-" version ".tar.gz"))
1963 (sha256
1964 (base32
1965 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
1966 (build-system perl-build-system)
1967 (propagated-inputs
1968 `(("perl-io-string" ,perl-io-string)))
1969 (home-page "http://search.cpan.org/dist/Data-Stag/")
1970 (synopsis "Structured tags datastructures")
1971 (description
1972 "This module is for manipulating data as hierarchical tag/value
1973 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
1974 be represented as nested arrays, which have the advantage of being native to
1975 Perl.")
1976 (license (package-license perl))))
1977
1978 (define-public perl-data-stream-bulk
1979 (package
1980 (name "perl-data-stream-bulk")
1981 (version "0.11")
1982 (source
1983 (origin
1984 (method url-fetch)
1985 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1986 "Data-Stream-Bulk-" version ".tar.gz"))
1987 (sha256
1988 (base32
1989 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
1990 (build-system perl-build-system)
1991 (native-inputs
1992 `(("perl-test-requires" ,perl-test-requires)))
1993 (propagated-inputs
1994 `(("perl-moose" ,perl-moose)
1995 ("perl-namespace-clean" ,perl-namespace-clean)
1996 ("perl-path-class" ,perl-path-class)
1997 ("perl-sub-exporter" ,perl-sub-exporter)))
1998 (home-page "http://search.cpan.org/dist/Data-Stream-Bulk/")
1999 (synopsis "N at a time iteration API")
2000 (description "This module tries to find middle ground between one at a
2001 time and all at once processing of data sets. The purpose of this module is
2002 to avoid the overhead of implementing an iterative api when this isn't
2003 necessary, without breaking forward compatibility in case that becomes
2004 necessary later on.")
2005 (license (package-license perl))))
2006
2007 (define-public perl-data-tumbler
2008 (package
2009 (name "perl-data-tumbler")
2010 (version "0.008")
2011 (source
2012 (origin
2013 (method url-fetch)
2014 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2015 "Data-Tumbler-" version ".tar.gz"))
2016 (sha256
2017 (base32
2018 "13kww2xj30rkk8w9h50h4blypdb689zgils0zyah587kip0z6509"))))
2019 (build-system perl-build-system)
2020 (native-inputs
2021 `(("perl-test-most" ,perl-test-most)))
2022 (propagated-inputs
2023 `(("perl-file-homedir" ,perl-file-homedir)))
2024 (home-page "http://search.cpan.org/dist/Data-Tumbler/")
2025 (synopsis "Dynamic generation of nested combinations of variants")
2026 (description "Data::Tumbler - Dynamic generation of nested combinations of
2027 variants.")
2028 (license (package-license perl))))
2029
2030 (define-public perl-data-visitor
2031 (package
2032 (name "perl-data-visitor")
2033 (version "0.30")
2034 (source
2035 (origin
2036 (method url-fetch)
2037 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2038 "Data-Visitor-" version ".tar.gz"))
2039 (sha256
2040 (base32
2041 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2042 (build-system perl-build-system)
2043 (native-inputs
2044 `(("perl-test-requires" ,perl-test-requires)))
2045 (propagated-inputs
2046 `(("perl-class-load" ,perl-class-load)
2047 ("perl-moose" ,perl-moose)
2048 ("perl-namespace-clean" ,perl-namespace-clean)
2049 ("perl-task-weaken" ,perl-task-weaken)
2050 ("perl-tie-toobject" ,perl-tie-toobject)))
2051 (home-page "http://search.cpan.org/dist/Data-Visitor/")
2052 (synopsis "Visitor style traversal of Perl data structures")
2053 (description "This module is a simple visitor implementation for Perl
2054 values. It has a main dispatcher method, visit, which takes a single perl
2055 value and then calls the methods appropriate for that value. It can
2056 recursively map (cloning as necessary) or just traverse most structures, with
2057 support for per-object behavior, circular structures, visiting tied
2058 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2059 (license (package-license perl))))
2060
2061 (define-public perl-date-calc
2062 (package
2063 (name "perl-date-calc")
2064 (version "6.4")
2065 (source
2066 (origin
2067 (method url-fetch)
2068 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2069 "Date-Calc-" version ".tar.gz"))
2070 (sha256
2071 (base32
2072 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2073 (build-system perl-build-system)
2074 (propagated-inputs
2075 `(("perl-bit-vector" ,perl-bit-vector)
2076 ("perl-carp-clan" ,perl-carp-clan)))
2077 (home-page "http://search.cpan.org/dist/Date-Calc/")
2078 (synopsis "Gregorian calendar date calculations")
2079 (description "This package consists of a Perl module for date calculations
2080 based on the Gregorian calendar, thereby complying with all relevant norms and
2081 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2082 applicable).")
2083 (license (package-license perl))))
2084
2085 (define-public perl-date-calc-xs
2086 (package
2087 (name "perl-date-calc-xs")
2088 (version "6.4")
2089 (source
2090 (origin
2091 (method url-fetch)
2092 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2093 "Date-Calc-XS-" version ".tar.gz"))
2094 (sha256
2095 (base32
2096 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2097 (build-system perl-build-system)
2098 (propagated-inputs
2099 `(("perl-bit-vector" ,perl-bit-vector)
2100 ("perl-carp-clan" ,perl-carp-clan)
2101 ("perl-date-calc" ,perl-date-calc)))
2102 (home-page "http://search.cpan.org/dist/Date-Calc-XS/")
2103 (synopsis "XS wrapper for Date::Calc")
2104 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2105 Date::Calc.")
2106 (license (list (package-license perl) lgpl2.0+))))
2107
2108 (define-public perl-date-manip
2109 (package
2110 (name "perl-date-manip")
2111 (version "6.70")
2112 (source
2113 (origin
2114 (method url-fetch)
2115 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SB/SBECK/"
2116 "Date-Manip-" version ".tar.gz"))
2117 (sha256
2118 (base32
2119 "0r4k4ypb09xwhvq6das0vpx2c0xbhhhx83knq6jfpf8m55h8qi9r"))))
2120 (build-system perl-build-system)
2121 (native-inputs `(("perl-module-build" ,perl-module-build)))
2122 (arguments
2123 ;; Tests would require tzdata for timezone information, but tzdata is in
2124 ;; (gnu packages base) which would create a circular dependency. TODO:
2125 ;; Maybe put this package elsewhere so we can turn on tests.
2126 '(#:tests? #f))
2127 (home-page "http://search.cpan.org/dist/Date-Manip/")
2128 (synopsis "Date manipulation routines")
2129 (description "Date::Manip is a series of modules for common date/time
2130 operations, such as comparing two times, determining a date a given amount of
2131 time from another, or parsing international times.")
2132 (license (package-license perl))))
2133
2134 (define-public perl-date-simple
2135 (package
2136 (name "perl-date-simple")
2137 (version "3.03")
2138 (source
2139 (origin
2140 (method url-fetch)
2141 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2142 "Date-Simple-" version ".tar.gz"))
2143 (sha256
2144 (base32
2145 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2146 (build-system perl-build-system)
2147 (home-page "http://search.cpan.org/dist/Date-Simple/")
2148 (synopsis "Simple date handling")
2149 (description "Dates are complex enough without times and timezones. This
2150 module may be used to create simple date objects. It handles validation,
2151 interval arithmetic, and day-of-week calculation. It does not deal with
2152 hours, minutes, seconds, and time zones.")
2153 ;; Can be used with either license.
2154 (license (list (package-license perl) gpl2+))))
2155
2156 (define-public perl-datetime
2157 (package
2158 (name "perl-datetime")
2159 (version "1.49")
2160 (source
2161 (origin
2162 (method url-fetch)
2163 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2164 "DateTime-" version ".tar.gz"))
2165 (sha256
2166 (base32
2167 "0hbw4zq1562slnz7g7hyhfhyq98dzkk3i5g21x3xra5cvfix93kh"))))
2168 (build-system perl-build-system)
2169 (native-inputs
2170 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2171 ("perl-module-build" ,perl-module-build)
2172 ("perl-test-fatal" ,perl-test-fatal)
2173 ("perl-test-warnings" ,perl-test-warnings)))
2174 (propagated-inputs
2175 `(("perl-datetime-locale" ,perl-datetime-locale)
2176 ("perl-datetime-timezone" ,perl-datetime-timezone)
2177 ("perl-file-sharedir" ,perl-file-sharedir)
2178 ("perl-params-validate" ,perl-params-validate)
2179 ("perl-try-tiny" ,perl-try-tiny)))
2180 (home-page "http://search.cpan.org/dist/DateTime/")
2181 (synopsis "Date and time object for Perl")
2182 (description "DateTime is a class for the representation of date/time
2183 combinations. It represents the Gregorian calendar, extended backwards in
2184 time before its creation (in 1582).")
2185 (license artistic2.0)))
2186
2187 (define-public perl-datetime-calendar-julian
2188 (package
2189 (name "perl-datetime-calendar-julian")
2190 (version "0.04")
2191 (source
2192 (origin
2193 (method url-fetch)
2194 (uri (string-append "mirror://cpan/authors/id/P/PI/PIJLL/"
2195 "DateTime-Calendar-Julian-" version ".tar.gz"))
2196 (sha256
2197 (base32
2198 "03h0llkwsiw2d2ci1ah5x9sp8xrvnbgd471i5hnpgl5w32nnhndv"))))
2199 (build-system perl-build-system)
2200 ;; Only needed for tests
2201 (native-inputs
2202 `(("perl-datetime" ,perl-datetime)))
2203 (home-page "http://search.cpan.org/dist/DateTime-Calendar-Julian/")
2204 (synopsis "Dates in the Julian calendar")
2205 (description "This package is a companion module to @code{DateTime.pm}.
2206 It implements the Julian calendar. It supports everything that
2207 @code{DateTime.pm} supports and more: about one day per century more, to be
2208 precise.")
2209 (license (package-license perl))))
2210
2211 (define-public perl-datetime-set
2212 (package
2213 (name "perl-datetime-set")
2214 (version "0.3900")
2215 (source
2216 (origin
2217 (method url-fetch)
2218 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2219 "DateTime-Set-" version ".tar.gz"))
2220 (sha256
2221 (base32
2222 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2223 (build-system perl-build-system)
2224 (native-inputs
2225 `(("perl-module-build" ,perl-module-build)))
2226 (propagated-inputs
2227 `(("perl-datetime" ,perl-datetime)
2228 ("perl-params-validate" ,perl-params-validate)
2229 ("perl-set-infinite" ,perl-set-infinite)))
2230 (home-page "http://search.cpan.org/dist/DateTime-Set/")
2231 (synopsis "DateTime set objects")
2232 (description "The DateTime::Set module provides a date/time sets
2233 implementation. It allows, for example, the generation of groups of dates,
2234 like \"every wednesday\", and then find all the dates matching that pattern,
2235 within a time range.")
2236 (license (package-license perl))))
2237
2238 (define-public perl-datetime-event-ical
2239 (package
2240 (name "perl-datetime-event-ical")
2241 (version "0.13")
2242 (source
2243 (origin
2244 (method url-fetch)
2245 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2246 "DateTime-Event-ICal-" version ".tar.gz"))
2247 (sha256
2248 (base32
2249 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2250 (build-system perl-build-system)
2251 (propagated-inputs
2252 `(("perl-datetime" ,perl-datetime)
2253 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2254 (home-page "http://search.cpan.org/dist/DateTime-Event-ICal/")
2255 (synopsis "DateTime rfc2445 recurrences")
2256 (description "This module provides convenience methods that let you easily
2257 create DateTime::Set objects for RFC 2445 style recurrences.")
2258 (license (package-license perl))))
2259
2260 (define-public perl-datetime-event-recurrence
2261 (package
2262 (name "perl-datetime-event-recurrence")
2263 (version "0.19")
2264 (source
2265 (origin
2266 (method url-fetch)
2267 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2268 "DateTime-Event-Recurrence-" version ".tar.gz"))
2269 (sha256
2270 (base32
2271 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
2272 (build-system perl-build-system)
2273 (propagated-inputs
2274 `(("perl-datetime" ,perl-datetime)
2275 ("perl-datetime-set" ,perl-datetime-set)))
2276 (home-page "http://search.cpan.org/dist/DateTime-Event-Recurrence/")
2277 (synopsis "DateTime::Set extension for basic recurrences")
2278 (description "This module provides convenience methods that let you easily
2279 create DateTime::Set objects for various recurrences, such as \"once a month\"
2280 or \"every day\". You can also create more complicated recurrences, such as
2281 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
2282 (license (package-license perl))))
2283
2284 (define-public perl-datetime-format-builder
2285 (package
2286 (name "perl-datetime-format-builder")
2287 (version "0.81")
2288 (source
2289 (origin
2290 (method url-fetch)
2291 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2292 "DateTime-Format-Builder-" version ".tar.gz"))
2293 (sha256
2294 (base32
2295 "1vrkzw7kmxnyy403ykxgbg2kvgs99nggi4n9gi09ixivnn68mmbw"))))
2296 (build-system perl-build-system)
2297 (propagated-inputs
2298 `(("perl-class-factory-util" ,perl-class-factory-util)
2299 ("perl-datetime" ,perl-datetime)
2300 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
2301 ("perl-params-validate" ,perl-params-validate)))
2302 (home-page "http://search.cpan.org/dist/DateTime-Format-Builder/")
2303 (synopsis "Create DateTime parser classes and objects")
2304 (description "DateTime::Format::Builder creates DateTime parsers. Many
2305 string formats of dates and times are simple and just require a basic regular
2306 expression to extract the relevant information. Builder provides a simple way
2307 to do this without writing reams of structural code.")
2308 (license artistic2.0)))
2309
2310 (define-public perl-datetime-format-flexible
2311 (package
2312 (name "perl-datetime-format-flexible")
2313 (version "0.28")
2314 (source
2315 (origin
2316 (method url-fetch)
2317 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
2318 "DateTime-Format-Flexible-" version ".tar.gz"))
2319 (sha256
2320 (base32
2321 "1g63zs0q2x40h29r7in50c55g6kxiw3m2faw2p6c4rg74sj2k2b5"))))
2322 (build-system perl-build-system)
2323 (propagated-inputs
2324 `(("perl-datetime" ,perl-datetime)
2325 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
2326 ("perl-datetime-timezone" ,perl-datetime-timezone)
2327 ("perl-list-moreutils" ,perl-list-moreutils)
2328 ("perl-module-pluggable" ,perl-module-pluggable)
2329 ("perl-test-mocktime" ,perl-test-mocktime)))
2330 (home-page "http://search.cpan.org/dist/DateTime-Format-Flexible/")
2331 (synopsis "Parse data/time strings")
2332 (description "DateTime::Format::Flexible attempts to take any string you
2333 give it and parse it into a DateTime object.")
2334 (license (package-license perl))))
2335
2336 (define-public perl-datetime-format-ical
2337 (package
2338 (name "perl-datetime-format-ical")
2339 (version "0.09")
2340 (source
2341 (origin
2342 (method url-fetch)
2343 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2344 "DateTime-Format-ICal-" version ".tar.gz"))
2345 (sha256
2346 (base32
2347 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
2348 (build-system perl-build-system)
2349 (native-inputs
2350 `(("perl-module-build" ,perl-module-build)))
2351 (propagated-inputs
2352 `(("perl-datetime" ,perl-datetime)
2353 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
2354 ("perl-datetime-set" ,perl-datetime-set)
2355 ("perl-datetime-timezone" ,perl-datetime-timezone)
2356 ("perl-params-validate" ,perl-params-validate)))
2357 (home-page "http://search.cpan.org/dist/DateTime-Format-ICal/")
2358 (synopsis "Parse and format iCal datetime and duration strings")
2359 (description "This module understands the ICal date/time and duration
2360 formats, as defined in RFC 2445. It can be used to parse these formats in
2361 order to create the appropriate objects.")
2362 (license (package-license perl))))
2363
2364 (define-public perl-datetime-format-natural
2365 (package
2366 (name "perl-datetime-format-natural")
2367 (version "1.05")
2368 (source
2369 (origin
2370 (method url-fetch)
2371 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
2372 "DateTime-Format-Natural-" version ".tar.gz"))
2373 (sha256
2374 (base32
2375 "10ldrhz5rnpsd8qmqn1a4s0w5hhfbjrr13a93yx7kpp89g85pxqv"))))
2376 (build-system perl-build-system)
2377 (native-inputs
2378 `(("perl-module-build" ,perl-module-build)
2379 ("perl-module-util" ,perl-module-util)
2380 ("perl-test-mocktime" ,perl-test-mocktime)))
2381 (propagated-inputs
2382 `(("perl-boolean" ,perl-boolean)
2383 ("perl-clone" ,perl-clone)
2384 ("perl-date-calc" ,perl-date-calc)
2385 ("perl-date-calc-xs" ,perl-date-calc-xs)
2386 ("perl-datetime" ,perl-datetime)
2387 ("perl-datetime-timezone" ,perl-datetime-timezone)
2388 ("perl-list-moreutils" ,perl-list-moreutils)
2389 ("perl-params-validate" ,perl-params-validate)))
2390 (home-page "http://search.cpan.org/dist/DateTime-Format-Natural/")
2391 (synopsis "Machine-readable date/time with natural parsing")
2392 (description "DateTime::Format::Natural takes a string with a human
2393 readable date/time and creates a machine readable one by applying natural
2394 parsing logic.")
2395 (license (package-license perl))))
2396
2397 (define-public perl-datetime-format-strptime
2398 (package
2399 (name "perl-datetime-format-strptime")
2400 (version "1.75")
2401 (source
2402 (origin
2403 (method url-fetch)
2404 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2405 "DateTime-Format-Strptime-" version ".tar.gz"))
2406 (sha256
2407 (base32
2408 "069wmgbchydgx3nm9klqw0g6ksnja28g61d4allgzmvr9ynb5ksg"))))
2409 (build-system perl-build-system)
2410 (propagated-inputs
2411 `(("perl-datetime" ,perl-datetime)
2412 ("perl-datetime-locale" ,perl-datetime-locale)
2413 ("perl-datetime-timezone" ,perl-datetime-timezone)
2414 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
2415 ("perl-params-validate" ,perl-params-validate)
2416 ("perl-sub-name" ,perl-sub-name)
2417 ("perl-test-warnings" ,perl-test-warnings)))
2418 (home-page "http://search.cpan.org/dist/DateTime-Format-Strptime/")
2419 (synopsis "Parse and format strp and strf time patterns")
2420 (description "This module implements most of `strptime(3)`, the POSIX
2421 function that is the reverse of `strftime(3)`, for `DateTime`. While
2422 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
2423 takes a string and a pattern and returns the `DateTime` object associated.")
2424 (license artistic2.0)))
2425
2426 (define-public perl-datetime-locale
2427 (package
2428 (name "perl-datetime-locale")
2429 (version "1.17")
2430 (source
2431 (origin
2432 (method url-fetch)
2433 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2434 "DateTime-Locale-" version ".tar.gz"))
2435 (sha256
2436 (base32
2437 "1jawnci23kik5x4gln6ixvv9bxznd5f6ira024yjxsc97y5mk9hc"))))
2438 (build-system perl-build-system)
2439 (native-inputs
2440 `(("perl-file-sharedir" ,perl-file-sharedir)
2441 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
2442 ("perl-test-warnings" ,perl-test-warnings)
2443 ("perl-test-requires" ,perl-test-requires)
2444 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2445 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
2446 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
2447 ("perl-module-build" ,perl-module-build)))
2448 (propagated-inputs
2449 `(("perl-list-moreutils" ,perl-list-moreutils)
2450 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
2451 (home-page "http://search.cpan.org/dist/DateTime-Locale/")
2452 (synopsis "Localization support for DateTime.pm")
2453 (description "The DateTime::Locale modules provide localization data for
2454 the DateTime.pm class.")
2455 (license (package-license perl))))
2456
2457 (define-public perl-datetime-timezone
2458 (package
2459 (name "perl-datetime-timezone")
2460 (version "2.19")
2461 (source
2462 (origin
2463 (method url-fetch)
2464 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2465 "DateTime-TimeZone-" version ".tar.gz"))
2466 (sha256
2467 (base32
2468 "1y54bsgq886sg35fgmxgj8wwmgs4l83qhwa0g3zv8w9d43z2w6dr"))))
2469 (build-system perl-build-system)
2470 (native-inputs
2471 `(("perl-test-fatal" ,perl-test-fatal)
2472 ("perl-test-requires" ,perl-test-requires)))
2473 (propagated-inputs
2474 `(("perl-class-singleton" ,perl-class-singleton)
2475 ("perl-list-allutils" ,perl-list-allutils)
2476 ("perl-module-runtime" ,perl-module-runtime)
2477 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2478 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
2479 ("perl-try-tiny" ,perl-try-tiny)))
2480 (home-page "http://search.cpan.org/dist/DateTime-TimeZone/")
2481 (synopsis "Time zone object for Perl")
2482 (description "This class is the base class for all time zone objects. A
2483 time zone is represented internally as a set of observances, each of which
2484 describes the offset from GMT for a given time period. Note that without the
2485 DateTime module, this module does not do much. It's primary interface is
2486 through a DateTime object, and most users will not need to directly use
2487 DateTime::TimeZone methods.")
2488 (license (package-license perl))))
2489
2490 (define-public perl-datetimex-easy
2491 (package
2492 (name "perl-datetimex-easy")
2493 (version "0.089")
2494 (source
2495 (origin
2496 (method url-fetch)
2497 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
2498 "DateTimeX-Easy-" version ".tar.gz"))
2499 (sha256
2500 (base32
2501 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
2502 (build-system perl-build-system)
2503 (native-inputs
2504 `(("perl-test-most" ,perl-test-most)))
2505 (propagated-inputs
2506 `(("perl-datetime" ,perl-datetime)
2507 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
2508 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
2509 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
2510 ("perl-timedate" ,perl-timedate)))
2511 (home-page "http://search.cpan.org/dist/DateTimeX-Easy/")
2512 (synopsis "Parse date/time strings")
2513 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
2514 to create DateTime objects, with some custom tweaks to smooth out the rough
2515 edges (mainly concerning timezone detection and selection).")
2516 (license (package-license perl))))
2517
2518 (define-public perl-datetime-format-mail
2519 (package
2520 (name "perl-datetime-format-mail")
2521 (version "0.403")
2522 (source (origin
2523 (method url-fetch)
2524 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
2525 "DateTime-Format-Mail-" version ".tar.gz"))
2526 (sha256
2527 (base32
2528 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
2529 (build-system perl-build-system)
2530 (inputs
2531 `(("perl-datetime" ,perl-datetime)
2532 ("perl-params-validate" ,perl-params-validate)))
2533 (home-page "http://search.cpan.org/dist/DateTime-Format-Mail/")
2534 (synopsis "Convert between DateTime and RFC2822/822 formats")
2535 (description "RFCs 2822 and 822 specify date formats to be used by email.
2536 This module parses and emits such dates.")
2537 (license (package-license perl))))
2538
2539 (define-public perl-datetime-format-w3cdtf
2540 (package
2541 (name "perl-datetime-format-w3cdtf")
2542 (version "0.07")
2543 (source (origin
2544 (method url-fetch)
2545 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
2546 "DateTime-Format-W3CDTF-" version ".tar.gz"))
2547 (sha256
2548 (base32
2549 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
2550 (build-system perl-build-system)
2551 (inputs
2552 `(("perl-datetime" ,perl-datetime)))
2553 (native-inputs
2554 `(("perl-test-pod" ,perl-test-pod)
2555 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2556 (home-page "http://search.cpan.org/dist/DateTime-Format-W3CDTF/")
2557 (synopsis "Parse and format W3CDTF datetime strings")
2558 (description
2559 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
2560 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
2561 format of RSS 1.0. It can be used to parse these formats in order to create
2562 the appropriate objects.")
2563 (license (package-license perl))))
2564
2565 (define-public perl-devel-caller
2566 (package
2567 (name "perl-devel-caller")
2568 (version "2.06")
2569 (source
2570 (origin
2571 (method url-fetch)
2572 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2573 "Devel-Caller-" version ".tar.gz"))
2574 (sha256
2575 (base32
2576 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
2577 (build-system perl-build-system)
2578 (propagated-inputs
2579 `(("perl-padwalker" ,perl-padwalker)))
2580 (home-page "http://search.cpan.org/dist/Devel-Caller/")
2581 (synopsis "Meatier version of caller")
2582 (description "Devel::Caller provides meatier version of caller.")
2583 (license (package-license perl))))
2584
2585 (define-public perl-devel-checkbin
2586 (package
2587 (name "perl-devel-checkbin")
2588 (version "0.02")
2589 (source
2590 (origin
2591 (method url-fetch)
2592 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
2593 "Devel-CheckBin-" version ".tar.gz"))
2594 (sha256
2595 (base32
2596 "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m"))))
2597 (build-system perl-build-system)
2598 (native-inputs `(("perl-module-build" ,perl-module-build)))
2599 (home-page "http://search.cpan.org/dist/Devel-CheckBin/")
2600 (synopsis "Check that a command is available")
2601 (description "Devel::CheckBin is a perl module that checks whether a
2602 particular command is available.")
2603 (license (package-license perl))))
2604
2605 (define-public perl-devel-checkcompiler
2606 (package
2607 (name "perl-devel-checkcompiler")
2608 (version "0.07")
2609 (source (origin
2610 (method url-fetch)
2611 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
2612 "Devel-CheckCompiler-" version ".tar.gz"))
2613 (sha256
2614 (base32
2615 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
2616 (build-system perl-build-system)
2617 (native-inputs
2618 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
2619 (home-page "http://search.cpan.org/dist/Devel-CheckCompiler/")
2620 (synopsis "Check compiler availability")
2621 (description "@code{Devel::CheckCompiler} is a tiny module to check
2622 whether a compiler is available. It can test for a C99 compiler, or
2623 you can tell it to compile a C source file with optional linker flags.")
2624 (license (package-license perl))))
2625
2626 (define-public perl-devel-cycle
2627 (package
2628 (name "perl-devel-cycle")
2629 (version "1.12")
2630 (source
2631 (origin
2632 (method url-fetch)
2633 (uri (string-append
2634 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
2635 version
2636 ".tar.gz"))
2637 (sha256
2638 (base32
2639 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
2640 (build-system perl-build-system)
2641 (home-page
2642 "http://search.cpan.org/dist/Devel-Cycle/")
2643 (synopsis "Find memory cycles in objects")
2644 (description
2645 "@code{Devel::Cycle} This is a tool for finding circular references in
2646 objects and other types of references. Because of Perl's reference-count
2647 based memory management, circular references will cause memory leaks.")
2648 (license perl-license)))
2649
2650 (define-public perl-devel-globaldestruction
2651 (package
2652 (name "perl-devel-globaldestruction")
2653 (version "0.14")
2654 (source
2655 (origin
2656 (method url-fetch)
2657 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2658 "Devel-GlobalDestruction-" version ".tar.gz"))
2659 (sha256
2660 (base32
2661 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
2662 (build-system perl-build-system)
2663 (propagated-inputs
2664 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
2665 (home-page "http://search.cpan.org/dist/Devel-GlobalDestruction/")
2666 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
2667 (description "Devel::GlobalDestruction provides a function returning the
2668 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
2669 (license (package-license perl))))
2670
2671 (define-public perl-devel-hide
2672 (package
2673 (name "perl-devel-hide")
2674 (version "0.0009")
2675 (source
2676 (origin
2677 (method url-fetch)
2678 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
2679 version ".tar.gz"))
2680 (sha256
2681 (base32
2682 "1phnzbw58v6551nhv6sg86m72nx9w5j4msh1hg4jvkakkq5w9pki"))))
2683 (build-system perl-build-system)
2684 (propagated-inputs
2685 `(("perl-test-pod" ,perl-test-pod)
2686 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2687 (home-page "http://search.cpan.org/dist/Devel-Hide/")
2688 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
2689 (description "Given a list of Perl modules/filenames, this module makes
2690 @code{require} and @code{use} statements fail (no matter whether the specified
2691 files/modules are installed or not).")
2692 (license (package-license perl))))
2693
2694 (define-public perl-devel-lexalias
2695 (package
2696 (name "perl-devel-lexalias")
2697 (version "0.05")
2698 (source
2699 (origin
2700 (method url-fetch)
2701 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2702 "Devel-LexAlias-" version ".tar.gz"))
2703 (sha256
2704 (base32
2705 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
2706 (build-system perl-build-system)
2707 (propagated-inputs
2708 `(("perl-devel-caller" ,perl-devel-caller)))
2709 (home-page "http://search.cpan.org/dist/Devel-LexAlias/")
2710 (synopsis "Alias lexical variables")
2711 (description "Devel::LexAlias provides the ability to alias a lexical
2712 variable in a subroutines scope to one of your choosing.")
2713 (license (package-license perl))))
2714
2715 (define-public perl-devel-overloadinfo
2716 (package
2717 (name "perl-devel-overloadinfo")
2718 (version "0.005")
2719 (source
2720 (origin
2721 (method url-fetch)
2722 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
2723 "Devel-OverloadInfo-" version ".tar.gz"))
2724 (sha256
2725 (base32
2726 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
2727 (build-system perl-build-system)
2728 (native-inputs
2729 `(("perl-test-fatal" ,perl-test-fatal)))
2730 (propagated-inputs
2731 `(("perl-package-stash" ,perl-package-stash)
2732 ("perl-sub-identify" ,perl-sub-identify)
2733 ("perl-mro-compat" ,perl-mro-compat)))
2734 (home-page "http://search.cpan.org/dist/Devel-OverloadInfo/")
2735 (synopsis "Introspect overloaded operators")
2736 (description "Devel::OverloadInfo returns information about overloaded
2737 operators for a given class (or object), including where in the inheritance
2738 hierarchy the overloads are declared and where the code implementing it is.")
2739 (license (package-license perl))))
2740
2741 (define-public perl-devel-partialdump
2742 (package
2743 (name "perl-devel-partialdump")
2744 (version "0.18")
2745 (source
2746 (origin
2747 (method url-fetch)
2748 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2749 "Devel-PartialDump-" version ".tar.gz"))
2750 (sha256
2751 (base32
2752 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
2753 (build-system perl-build-system)
2754 (native-inputs
2755 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2756 ("perl-test-warn" ,perl-test-warn)
2757 ("perl-test-simple" ,perl-test-simple)))
2758 (propagated-inputs
2759 `(("perl-class-tiny" ,perl-class-tiny)
2760 ("perl-sub-exporter" ,perl-sub-exporter)
2761 ("perl-namespace-clean" ,perl-namespace-clean)))
2762 (home-page "http://search.cpan.org/dist/Devel-PartialDump/")
2763 (synopsis "Partial dumping of data structures")
2764 (description "This module is a data dumper optimized for logging of
2765 arbitrary parameters.")
2766 (license (package-license perl))))
2767
2768 (define-public perl-devel-stacktrace
2769 (package
2770 (name "perl-devel-stacktrace")
2771 (version "2.03")
2772 (source
2773 (origin
2774 (method url-fetch)
2775 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2776 "Devel-StackTrace-" version ".tar.gz"))
2777 (sha256
2778 (base32
2779 "0j58kgjr9s3vibsgifmk9k5h7daag0cb9x45f30m9qi4pr7cs63n"))))
2780 (build-system perl-build-system)
2781 (home-page "http://search.cpan.org/dist/Devel-StackTrace/")
2782 (synopsis "Object representing a stack trace")
2783 (description "The Devel::StackTrace module contains two classes,
2784 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
2785 information that can be retrieved via Perl's caller() function, as well as
2786 providing a simple interface to this data.")
2787 (license artistic2.0)))
2788
2789 (define-public perl-devel-stacktrace-ashtml
2790 (package
2791 (name "perl-devel-stacktrace-ashtml")
2792 (version "0.15")
2793 (source
2794 (origin
2795 (method url-fetch)
2796 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2797 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
2798 (sha256
2799 (base32
2800 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
2801 (build-system perl-build-system)
2802 (propagated-inputs
2803 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
2804 (home-page "http://search.cpan.org/dist/Devel-StackTrace-AsHTML/")
2805 (synopsis "Displays stack trace in HTML")
2806 (description "Devel::StackTrace::AsHTML adds as_html method to
2807 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
2808 snippet context and function parameters. If you call it on an instance of
2809 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
2810 each stack frame.")
2811 (license (package-license perl))))
2812
2813 (define-public perl-devel-symdump
2814 (package
2815 (name "perl-devel-symdump")
2816 (version "2.18")
2817 (source
2818 (origin
2819 (method url-fetch)
2820 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
2821 "Devel-Symdump-" version ".tar.gz"))
2822 (sha256
2823 (base32
2824 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
2825 (build-system perl-build-system)
2826 (home-page "http://search.cpan.org/dist/Devel-Symdump/")
2827 (synopsis "Dump symbol names or the symbol table")
2828 (description "Devel::Symdump provides access to the perl symbol table.")
2829 (license (package-license perl))))
2830
2831 (define-public perl-digest-hmac
2832 (package
2833 (name "perl-digest-hmac")
2834 (version "1.03")
2835 (source
2836 (origin
2837 (method url-fetch)
2838 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2839 "Digest-HMAC-" version ".tar.gz"))
2840 (sha256
2841 (base32
2842 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
2843 (build-system perl-build-system)
2844 (home-page "http://search.cpan.org/dist/Digest-HMAC/")
2845 (synopsis "Keyed-Hashing for Message Authentication")
2846 (description "The Digest::HMAC module follows the common Digest::
2847 interface for the RFC 2104 HMAC mechanism.")
2848 (license (package-license perl))))
2849
2850 (define-public perl-digest-md5
2851 (package
2852 (name "perl-digest-md5")
2853 (version "2.55")
2854 (source
2855 (origin
2856 (method url-fetch)
2857 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
2858 version ".tar.gz"))
2859 (sha256
2860 (base32
2861 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
2862 (build-system perl-build-system)
2863 (arguments
2864 `(#:phases
2865 (modify-phases %standard-phases
2866 (add-after 'build 'set-permissions
2867 (lambda _
2868 ;; Make MD5.so read-write so it can be stripped.
2869 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755))))))
2870 (home-page "http://search.cpan.org/dist/Digest-MD5/")
2871 (synopsis "Perl interface to the MD-5 algorithm")
2872 (description
2873 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
2874 algorithm from within Perl programs. The algorithm takes as
2875 input a message of arbitrary length and produces as output a
2876 128-bit \"fingerprint\" or \"message digest\" of the input.")
2877 (license (package-license perl))))
2878
2879 (define-public perl-digest-sha1
2880 (package
2881 (name "perl-digest-sha1")
2882 (version "2.13")
2883 (source (origin
2884 (method url-fetch)
2885 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2886 "Digest-SHA1-" version ".tar.gz"))
2887 (sha256
2888 (base32
2889 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
2890 (build-system perl-build-system)
2891 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
2892 (description
2893 "This package provides 'Digest::SHA1', an implementation of the NIST
2894 SHA-1 message digest algorithm for use by Perl programs.")
2895 (home-page (string-append "http://search.cpan.org/~gaas/Digest-SHA1-"
2896 version "/SHA1.pm"))
2897 (license (package-license perl))))
2898
2899 (define-public perl-dist-checkconflicts
2900 (package
2901 (name "perl-dist-checkconflicts")
2902 (version "0.11")
2903 (source (origin
2904 (method url-fetch)
2905 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2906 "Dist-CheckConflicts-" version ".tar.gz"))
2907 (sha256
2908 (base32
2909 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
2910 (build-system perl-build-system)
2911 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
2912 (propagated-inputs
2913 `(("perl-module-runtime" ,perl-module-runtime)))
2914 (home-page "http://search.cpan.org/dist/Dist-CheckConflicts/")
2915 (synopsis "Declare version conflicts for your dist")
2916 (description "This module allows you to specify conflicting versions of
2917 modules separately and deal with them after the module is done installing.")
2918 (license (package-license perl))))
2919
2920 (define-public perl-encode-detect
2921 (package
2922 (name "perl-encode-detect")
2923 (version "1.01")
2924 (source
2925 (origin
2926 (method url-fetch)
2927 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
2928 "Encode-Detect-" version ".tar.gz"))
2929 (sha256
2930 (base32
2931 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
2932 (build-system perl-build-system)
2933 (native-inputs
2934 `(("perl-module-build" ,perl-module-build)))
2935 (home-page "http://search.cpan.org/dist/Encode-Detect/")
2936 (synopsis "Detect the encoding of data")
2937 (description "This package provides a class @code{Encode::Detect} to detect
2938 the encoding of data.")
2939 (license mpl1.1)))
2940
2941 (define-public perl-encode-eucjpascii
2942 (package
2943 (name "perl-encode-eucjpascii")
2944 (version "0.03")
2945 (source
2946 (origin
2947 (method url-fetch)
2948 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
2949 "Encode-EUCJPASCII-" version ".tar.gz"))
2950 (sha256
2951 (base32
2952 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
2953 (build-system perl-build-system)
2954 (home-page "http://search.cpan.org/dist/Encode-EUCJPASCII/")
2955 (synopsis "ASCII mapping for eucJP encoding")
2956 (description "This package provides an ASCII mapping for the eucJP
2957 encoding.")
2958 (license (package-license perl))))
2959
2960 (define-public perl-encode-jis2k
2961 (package
2962 (name "perl-encode-jis2k")
2963 (version "0.03")
2964 (source
2965 (origin
2966 (method url-fetch)
2967 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
2968 "Encode-JIS2K-" version ".tar.gz"))
2969 (sha256
2970 (base32
2971 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
2972 (build-system perl-build-system)
2973 (home-page "http://search.cpan.org/dist/Encode-JIS2K/")
2974 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
2975 (description "This package provides encodings for JIS X 0212, which is
2976 also known as JIS 2000.")
2977 (license (package-license perl))))
2978
2979 (define-public perl-encode-hanextra
2980 (package
2981 (name "perl-encode-hanextra")
2982 (version "0.23")
2983 (source
2984 (origin
2985 (method url-fetch)
2986 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
2987 "Encode-HanExtra-" version ".tar.gz"))
2988 (sha256
2989 (base32
2990 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
2991 (build-system perl-build-system)
2992 (arguments
2993 '(#:phases
2994 (modify-phases %standard-phases
2995 (add-after 'unpack 'set-env
2996 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1"))))))
2997 (home-page "http://search.cpan.org/dist/Encode-HanExtra/")
2998 (synopsis "Additional Chinese encodings")
2999 (description "This Perl module provides Chinese encodings that are not
3000 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3001 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3002 \"UNISYS\".")
3003 (license expat)))
3004
3005 (define-public perl-env-path
3006 (package
3007 (name "perl-env-path")
3008 (version "0.19")
3009 (source
3010 (origin
3011 (method url-fetch)
3012 (uri (string-append
3013 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3014 version
3015 ".tar.gz"))
3016 (sha256
3017 (base32
3018 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3019 (build-system perl-build-system)
3020 (home-page "http://search.cpan.org/dist/Env-Path/")
3021 (synopsis "Advanced operations on path variables")
3022 (description "@code{Env::Path} presents an object-oriented interface to
3023 path variables, defined as that subclass of environment variables which name
3024 an ordered list of file system elements separated by a platform-standard
3025 separator.")
3026 (license (package-license perl))))
3027
3028 (define-public perl-error
3029 (package
3030 (name "perl-error")
3031 (version "0.17025")
3032 (source (origin
3033 (method url-fetch)
3034 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3035 "Error-" version ".tar.gz"))
3036 (sha256
3037 (base32
3038 "1bzgzmf1v4md02vadm46b4j4ilqxrcrfasvbzymhrznlsd54g7vc"))))
3039 (build-system perl-build-system)
3040 (native-inputs `(("perl-module-build" ,perl-module-build)))
3041 (home-page "http://search.cpan.org/dist/Error/")
3042 (synopsis "OO-ish Error/Exception handling for Perl")
3043 (description "The Error package provides two interfaces. Firstly Error
3044 provides a procedural interface to exception handling. Secondly Error is a
3045 base class for errors/exceptions that can either be thrown, for subsequent
3046 catch, or can simply be recorded.")
3047 (license (package-license perl))))
3048
3049 (define-public perl-eval-closure
3050 (package
3051 (name "perl-eval-closure")
3052 (version "0.14")
3053 (source
3054 (origin
3055 (method url-fetch)
3056 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3057 "Eval-Closure-" version ".tar.gz"))
3058 (sha256
3059 (base32
3060 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3061 (build-system perl-build-system)
3062 (native-inputs
3063 `(("perl-test-fatal" ,perl-test-fatal)
3064 ("perl-test-requires" ,perl-test-requires)))
3065 (propagated-inputs
3066 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3067 (home-page "http://search.cpan.org/dist/Eval-Closure/")
3068 (synopsis "Safely and cleanly create closures via string eval")
3069 (description "String eval is often used for dynamic code generation. For
3070 instance, Moose uses it heavily, to generate inlined versions of accessors and
3071 constructors, which speeds code up at runtime by a significant amount. String
3072 eval is not without its issues however - it's difficult to control the scope
3073 it's used in (which determines which variables are in scope inside the eval),
3074 and it's easy to miss compilation errors, since eval catches them and sticks
3075 them in $@@ instead. This module attempts to solve these problems. It
3076 provides an eval_closure function, which evals a string in a clean
3077 environment, other than a fixed list of specified variables. Compilation
3078 errors are rethrown automatically.")
3079 (license (package-license perl))))
3080
3081 (define-public perl-exception-class
3082 (package
3083 (name "perl-exception-class")
3084 (version "1.44")
3085 (source
3086 (origin
3087 (method url-fetch)
3088 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3089 "Exception-Class-" version ".tar.gz"))
3090 (sha256
3091 (base32
3092 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
3093 (build-system perl-build-system)
3094 (propagated-inputs
3095 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
3096 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
3097 (home-page "http://search.cpan.org/dist/Exception-Class/")
3098 (synopsis "Allows you to declare real exception classes in Perl")
3099 (description "Exception::Class allows you to declare exception hierarchies
3100 in your modules in a \"Java-esque\" manner.")
3101 (license (package-license perl))))
3102
3103 (define-public perl-exporter-lite
3104 (package
3105 (name "perl-exporter-lite")
3106 (version "0.08")
3107 (source (origin
3108 (method url-fetch)
3109 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
3110 "Exporter-Lite-" version ".tar.gz"))
3111 (sha256
3112 (base32
3113 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
3114 (build-system perl-build-system)
3115 (synopsis "Lightweight exporting of functions and variables")
3116 (description
3117 "Exporter::Lite is an alternative to Exporter, intended to provide a
3118 lightweight subset of the most commonly-used functionality. It supports
3119 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
3120 (home-page "http://search.cpan.org/dist/Exporter-Lite/")
3121 (license (package-license perl))))
3122
3123 (define-public perl-exporter-tiny
3124 (package
3125 (name "perl-exporter-tiny")
3126 (version "0.042")
3127 (source
3128 (origin
3129 (method url-fetch)
3130 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
3131 "Exporter-Tiny-" version ".tar.gz"))
3132 (sha256
3133 (base32
3134 "0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
3135 (build-system perl-build-system)
3136 (home-page "http://search.cpan.org/dist/Exporter-Tiny/")
3137 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
3138 (description "Exporter::Tiny supports many of Sub::Exporter's
3139 external-facing features including renaming imported functions with the `-as`,
3140 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
3141 and alternative installers with the `installler` option. But it's written in
3142 only about 40% as many lines of code and with zero non-core dependencies.")
3143 (license (package-license perl))))
3144
3145 (define-public perl-extutils-depends
3146 (package
3147 (name "perl-extutils-depends")
3148 (version "0.405")
3149 (source
3150 (origin
3151 (method url-fetch)
3152 (uri (string-append
3153 "mirror://cpan/authors/id/X/XA/XAOC/ExtUtils-Depends-"
3154 version
3155 ".tar.gz"))
3156 (sha256
3157 (base32
3158 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3159 (build-system perl-build-system)
3160 (native-inputs
3161 `(("perl-test-number-delta"
3162 ,perl-test-number-delta)))
3163 (home-page "http://search.cpan.org/dist/ExtUtils-Depends/")
3164 (synopsis "Easily build XS extensions that depend on XS extensions")
3165 (description "ExtUtils::Depends builds XS extensions that depend on XS
3166 extensions")
3167 (license (package-license perl))))
3168
3169 (define-public perl-extutils-installpaths
3170 (package
3171 (name "perl-extutils-installpaths")
3172 (version "0.011")
3173 (source
3174 (origin
3175 (method url-fetch)
3176 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3177 "ExtUtils-InstallPaths-" version ".tar.gz"))
3178 (sha256
3179 (base32
3180 "0z06y0fhx9hy9x01abb7s2xdbqrh9x4ps7avmlf4bwfwih2gl2bn"))))
3181 (build-system perl-build-system)
3182 (propagated-inputs
3183 `(("perl-extutils-config" ,perl-extutils-config)))
3184 (home-page "http://search.cpan.org/dist/ExtUtils-InstallPaths/")
3185 (synopsis "Build.PL install path logic made easy")
3186 (description "This module tries to make install path resolution as easy as
3187 possible.")
3188 (license (package-license perl))))
3189
3190 (define-public perl-extutils-config
3191 (package
3192 (name "perl-extutils-config")
3193 (version "0.008")
3194 (source
3195 (origin
3196 (method url-fetch)
3197 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3198 "ExtUtils-Config-" version ".tar.gz"))
3199 (sha256
3200 (base32
3201 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
3202 (build-system perl-build-system)
3203 (home-page "http://search.cpan.org/dist/ExtUtils-Config/")
3204 (synopsis "Wrapper for perl's configuration")
3205 (description "ExtUtils::Config is an abstraction around the %Config hash.
3206 By itself it is not a particularly interesting module by any measure, however
3207 it ties together a family of modern toolchain modules.")
3208 (license (package-license perl))))
3209
3210 (define-public perl-extutils-depends
3211 (package
3212 (name "perl-extutils-depends")
3213 (version "0.405")
3214 (source (origin
3215 (method url-fetch)
3216 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3217 "ExtUtils-Depends-" version ".tar.gz"))
3218 (sha256
3219 (base32
3220 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3221 (build-system perl-build-system)
3222 (native-inputs
3223 `(("perl-test-number-delta" ,perl-test-number-delta)))
3224 (home-page "http://search.cpan.org/dist/ExtUtils-Depends/")
3225 (synopsis "Easily build XS extensions that depend on XS extensions")
3226 (description
3227 "This module tries to make it easy to build Perl extensions that use
3228 functions and typemaps provided by other perl extensions. This means that a
3229 perl extension is treated like a shared library that provides also a C and an
3230 XS interface besides the perl one.")
3231 (license (package-license perl))))
3232
3233 (define-public perl-extutils-helpers
3234 (package
3235 (name "perl-extutils-helpers")
3236 (version "0.022")
3237 (source
3238 (origin
3239 (method url-fetch)
3240 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3241 "ExtUtils-Helpers-" version ".tar.gz"))
3242 (sha256
3243 (base32
3244 "15dalfwmpfmifw312i5pwiai8134pxf7b2804shlqhdk1xqczy6k"))))
3245 (build-system perl-build-system)
3246 (home-page "http://search.cpan.org/dist/ExtUtils-Helpers/")
3247 (synopsis "Various portability utilities for module builders")
3248 (description "This module provides various portable helper functions for
3249 module building modules.")
3250 (license (package-license perl))))
3251
3252 (define-public perl-extutils-libbuilder
3253 (package
3254 (name "perl-extutils-libbuilder")
3255 (version "0.08")
3256 (source
3257 (origin
3258 (method url-fetch)
3259 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
3260 "ExtUtils-LibBuilder-" version ".tar.gz"))
3261 (sha256
3262 (base32
3263 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
3264 (build-system perl-build-system)
3265 (native-inputs
3266 `(("perl-module-build" ,perl-module-build)))
3267 (home-page "http://search.cpan.org/dist/ExtUtils-LibBuilder/")
3268 (synopsis "Tool to build C libraries")
3269 (description "Some Perl modules need to ship C libraries together with
3270 their Perl code. Although there are mechanisms to compile and link (or glue)
3271 C code in your Perl programs, there isn't a clear method to compile standard,
3272 self-contained C libraries. This module main goal is to help in that task.")
3273 (license (package-license perl))))
3274
3275 (define-public perl-extutils-pkgconfig
3276 (package
3277 (name "perl-extutils-pkgconfig")
3278 (version "1.16")
3279 (source (origin
3280 (method url-fetch)
3281 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3282 "ExtUtils-PkgConfig-" version ".tar.gz"))
3283 (sha256
3284 (base32
3285 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
3286 (build-system perl-build-system)
3287 (propagated-inputs
3288 `(("pkg-config" ,pkg-config)))
3289 (home-page "http://search.cpan.org/dist/ExtUtils-PkgConfig/")
3290 (synopsis "Simplistic interface to pkg-config")
3291 (description
3292 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
3293 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
3294 of perl extensions which bind libraries that @command{pkg-config} knows.
3295 It is really just boilerplate code that you would have written yourself.")
3296 (license lgpl2.1+)))
3297
3298 (define-public perl-file-changenotify
3299 (package
3300 (name "perl-file-changenotify")
3301 (version "0.24")
3302 (source
3303 (origin
3304 (method url-fetch)
3305 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3306 "File-ChangeNotify-" version ".tar.gz"))
3307 (sha256
3308 (base32
3309 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
3310 (build-system perl-build-system)
3311 (native-inputs
3312 `(("perl-module-build" ,perl-module-build)
3313 ("perl-test-exception" ,perl-test-exception)))
3314 (propagated-inputs
3315 `(("perl-class-load" ,perl-class-load)
3316 ("perl-list-moreutils" ,perl-list-moreutils)
3317 ("perl-module-pluggable" ,perl-module-pluggable)
3318 ("perl-moose" ,perl-moose)
3319 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
3320 ("perl-moosex-semiaffordanceaccessor"
3321 ,perl-moosex-semiaffordanceaccessor)
3322 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3323 (home-page "http://search.cpan.org/dist/File-ChangeNotify/")
3324 (synopsis "Watch for changes to files")
3325 (description "This module provides a class to monitor a directory for
3326 changes made to any file.")
3327 (license artistic2.0)))
3328
3329 (define-public perl-file-configdir
3330 (package
3331 (name "perl-file-configdir")
3332 (version "0.018")
3333 (source
3334 (origin
3335 (method url-fetch)
3336 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3337 "File-ConfigDir-" version ".tar.gz"))
3338 (sha256
3339 (base32
3340 "1xpzrlya0gskk7lm6gppyfwbk0swv0n6ssgp629575dk5l49z2rf"))))
3341 (build-system perl-build-system)
3342 (propagated-inputs
3343 `(("perl-file-homedir" ,perl-file-homedir)
3344 ("perl-list-moreutils" ,perl-list-moreutils)))
3345 (home-page "http://search.cpan.org/dist/File-ConfigDir/")
3346 (synopsis "Get directories of configuration files")
3347 (description "This module is a helper for installing, reading and finding
3348 configuration file locations. @code{File::ConfigDir} is a module to help out
3349 when Perl modules (especially applications) need to read and store
3350 configuration files from more than one location.")
3351 (license (package-license perl))))
3352
3353 (define-public perl-file-copy-recursive
3354 (package
3355 (name "perl-file-copy-recursive")
3356 (version "0.38")
3357 (source
3358 (origin
3359 (method url-fetch)
3360 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
3361 "File-Copy-Recursive-" version ".tar.gz"))
3362 (sha256
3363 (base32
3364 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
3365 (build-system perl-build-system)
3366 (home-page "http://search.cpan.org/dist/File-Copy-Recursive/")
3367 (synopsis "Recursively copy files and directories")
3368 (description "This module has 3 functions: one to copy files only, one to
3369 copy directories only, and one to do either depending on the argument's
3370 type.")
3371 (license (package-license perl))))
3372
3373 (define-public perl-file-find-rule
3374 (package
3375 (name "perl-file-find-rule")
3376 (version "0.34")
3377 (source
3378 (origin
3379 (method url-fetch)
3380 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3381 "File-Find-Rule-" version ".tar.gz"))
3382 (sha256
3383 (base32
3384 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
3385 (build-system perl-build-system)
3386 (propagated-inputs
3387 `(("perl-text-glob" ,perl-text-glob)
3388 ("perl-number-compare" ,perl-number-compare)))
3389 (home-page "http://search.cpan.org/dist/File-Find-Rule/")
3390 (synopsis "Alternative interface to File::Find")
3391 (description "File::Find::Rule is a friendlier interface to File::Find.
3392 It allows you to build rules which specify the desired files and
3393 directories.")
3394 (license (package-license perl))))
3395
3396 (define-public perl-file-find-rule-perl
3397 (package
3398 (name "perl-file-find-rule-perl")
3399 (version "1.15")
3400 (source
3401 (origin
3402 (method url-fetch)
3403 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3404 "File-Find-Rule-Perl-" version ".tar.gz"))
3405 (sha256
3406 (base32
3407 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
3408 (build-system perl-build-system)
3409 (propagated-inputs
3410 `(("perl-file-find-rule" ,perl-file-find-rule)
3411 ("perl-params-util" ,perl-params-util)
3412 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
3413 (home-page "http://search.cpan.org/dist/File-Find-Rule-Perl/")
3414 (synopsis "Common rules for searching for Perl things")
3415 (description "File::Find::Rule::Perl provides methods for finding various
3416 types Perl-related files, or replicating search queries run on a distribution
3417 in various parts of the CPAN ecosystem.")
3418 (license (package-license perl))))
3419
3420 (define-public perl-file-grep
3421 (package
3422 (name "perl-file-grep")
3423 (version "0.02")
3424 (source
3425 (origin
3426 (method url-fetch)
3427 (uri (string-append
3428 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
3429 version
3430 ".tar.gz"))
3431 (sha256
3432 (base32
3433 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
3434 (build-system perl-build-system)
3435 (home-page "http://search.cpan.org/dist/File-Grep/")
3436 (synopsis "Matches patterns in a series of files")
3437 (description "@code{File::Grep} provides similar functionality as perl's
3438 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
3439 over a passed filelist instead of arrays. While trivial, this module can
3440 provide a quick dropin when such functionality is needed.")
3441 (license (package-license perl))))
3442
3443 (define-public perl-file-homedir
3444 (package
3445 (name "perl-file-homedir")
3446 (version "1.002")
3447 (source
3448 (origin
3449 (method url-fetch)
3450 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3451 "File-HomeDir-" version ".tar.gz"))
3452 (sha256
3453 (base32
3454 "0x62hn8rc7ninf9nlp69h61yh21g4cbq2g81sh64cf2ify2hqk7b"))))
3455 (build-system perl-build-system)
3456 (propagated-inputs
3457 `(("perl-file-which" ,perl-file-which)))
3458 (arguments `(#:tests? #f)) ;Not appropriate for chroot
3459 (home-page "http://search.cpan.org/dist/File-HomeDir/")
3460 (synopsis "Find your home and other directories on any platform")
3461 (description "File::HomeDir is a module for locating the directories that
3462 are \"owned\" by a user (typically your user) and to solve the various issues
3463 that arise trying to find them consistently across a wide variety of
3464 platforms.")
3465 (license (package-license perl))))
3466
3467 (define-public perl-file-path
3468 (package
3469 (name "perl-file-path")
3470 (version "2.13")
3471 (source
3472 (origin
3473 (method url-fetch)
3474 (uri (string-append
3475 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
3476 version
3477 ".tar.gz"))
3478 (sha256
3479 (base32
3480 "039gc0i5cbdmidl8j8x195yykwcdmzwawmpapnysvljl8l33jqwj"))))
3481 (build-system perl-build-system)
3482 (home-page "http://search.cpan.org/dist/File-Path/")
3483 (synopsis "Create or remove directory trees")
3484 (description "This module provide a convenient way to create directories
3485 of arbitrary depth and to delete an entire directory subtree from the
3486 file system.")
3487 (license (package-license perl))))
3488
3489 (define-public perl-file-pushd
3490 (package
3491 (name "perl-file-pushd")
3492 (version "1.016")
3493 (source
3494 (origin
3495 (method url-fetch)
3496 (uri (string-append
3497 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
3498 version
3499 ".tar.gz"))
3500 (sha256
3501 (base32
3502 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
3503 (build-system perl-build-system)
3504 (home-page
3505 "http://search.cpan.org/dist/File-pushd/")
3506 (synopsis
3507 "Change directory temporarily for a limited scope")
3508 (description "@code{File::pushd} does a temporary @code{chdir} that is
3509 easily and automatically reverted, similar to @code{pushd} in some Unix
3510 command shells. It works by creating an object that caches the original
3511 working directory. When the object is destroyed, the destructor calls
3512 @code{chdir} to revert to the original working directory. By storing the
3513 object in a lexical variable with a limited scope, this happens automatically
3514 at the end of the scope.")
3515 (license asl2.0)))
3516
3517 (define-public perl-file-list
3518 (package
3519 (name "perl-file-list")
3520 (version "0.3.1")
3521 (source (origin
3522 (method url-fetch)
3523 (uri (string-append
3524 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
3525 version ".tar.gz"))
3526 (sha256
3527 (base32
3528 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
3529 (build-system perl-build-system)
3530 (arguments
3531 `(#:phases
3532 (modify-phases %standard-phases
3533 (add-after 'unpack 'cd
3534 (lambda _ (chdir "List") #t)))))
3535 (license (package-license perl))
3536 (synopsis "Perl extension for crawling directory trees and compiling
3537 lists of files")
3538 (description
3539 "The File::List module crawls the directory tree starting at the
3540 provided base directory and can return files (and/or directories if desired)
3541 matching a regular expression.")
3542 (home-page "http://search.cpan.org/~dopacki/File-List//")))
3543
3544 (define-public perl-file-readbackwards
3545 (package
3546 (name "perl-file-readbackwards")
3547 (version "1.05")
3548 (source
3549 (origin
3550 (method url-fetch)
3551 (uri (string-append
3552 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
3553 version
3554 ".tar.gz"))
3555 (sha256
3556 (base32
3557 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
3558 (build-system perl-build-system)
3559 (home-page "http://search.cpan.org/dist/File-ReadBackwards/")
3560 (synopsis "Read a file backwards by lines")
3561 (description "This module reads a file backwards line by line. It is
3562 simple to use, memory efficient and fast. It supports both an object and a
3563 tied handle interface.
3564
3565 It is intended for processing log and other similar text files which typically
3566 have their newest entries appended to them. By default files are assumed to
3567 be plain text and have a line ending appropriate to the OS. But you can set
3568 the input record separator string on a per file basis.")
3569 (license perl-license)))
3570
3571 (define-public perl-file-remove
3572 (package
3573 (name "perl-file-remove")
3574 (version "1.57")
3575 (source
3576 (origin
3577 (method url-fetch)
3578 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3579 "File-Remove-" version ".tar.gz"))
3580 (sha256
3581 (base32
3582 "1b814lw181kkqh6c1n4p2zlzzsq6ic5pfpr831nphf2w2rhcvgmk"))))
3583 (build-system perl-build-system)
3584 (home-page "http://search.cpan.org/dist/File-Remove/")
3585 (synopsis "Remove files and directories in Perl")
3586 (description "File::Remove::remove removes files and directories. It acts
3587 like /bin/rm, for the most part. Although \"unlink\" can be given a list of
3588 files, it will not remove directories; this module remedies that. It also
3589 accepts wildcards, * and ?, as arguments for file names.")
3590 (license (package-license perl))))
3591
3592 (define-public perl-file-sharedir
3593 (package
3594 (name "perl-file-sharedir")
3595 (version "1.104")
3596 (source
3597 (origin
3598 (method url-fetch)
3599 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3600 "File-ShareDir-" version ".tar.gz"))
3601 (sha256
3602 (base32
3603 "1bqwhk3qfg60bkpi5b83bh93sng8jx20i3ka5sixc0prrppjidh7"))))
3604 (build-system perl-build-system)
3605 (native-inputs
3606 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3607 (propagated-inputs
3608 `(("perl-class-inspector" ,perl-class-inspector)))
3609 (home-page "http://search.cpan.org/dist/File-ShareDir/")
3610 (synopsis "Locate per-dist and per-module shared files")
3611 (description "The intent of File::ShareDir is to provide a companion to
3612 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3613 module to have access to a large amount of read-only data that is stored on
3614 the file-system at run-time. Once the files have been installed to the
3615 correct directory, you can use File::ShareDir to find your files again after
3616 the installation.")
3617 (license (package-license perl))))
3618
3619 (define-public perl-file-sharedir-dist
3620 (package
3621 (name "perl-file-sharedir-dist")
3622 (version "0.05")
3623 (source
3624 (origin
3625 (method url-fetch)
3626 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3627 "File-ShareDir-Dist-" version ".tar.gz"))
3628 (sha256
3629 (base32
3630 "1xkmrckp1qfi9ik098n2vz0r8g7wfwp2y05zjd100w6wcqwfzcpn"))))
3631 (build-system perl-build-system)
3632 (home-page "http://search.cpan.org/dist/File-ShareDir-Dist/")
3633 (synopsis "Locate per-dist shared files")
3634 (description "File::ShareDir::Dist finds share directories for
3635 distributions. It is a companion module to File::ShareDir.")
3636 (license (package-license perl))))
3637
3638 (define-public perl-file-sharedir-install
3639 (package
3640 (name "perl-file-sharedir-install")
3641 (version "0.13")
3642 (source
3643 (origin
3644 (method url-fetch)
3645 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3646 "File-ShareDir-Install-" version ".tar.gz"))
3647 (sha256
3648 (base32
3649 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
3650 (build-system perl-build-system)
3651 (native-inputs
3652 `(("perl-module-build" ,perl-module-build)))
3653 (home-page "http://search.cpan.org/dist/File-ShareDir-Install/")
3654 (synopsis "Install shared files")
3655 (description "File::ShareDir::Install allows you to install read-only data
3656 files from a distribution. It is a companion module to File::ShareDir, which
3657 allows you to locate these files after installation.")
3658 (license (package-license perl))))
3659
3660 (define-public perl-file-slurp
3661 (package
3662 (name "perl-file-slurp")
3663 (version "9999.19")
3664 (source
3665 (origin
3666 (method url-fetch)
3667 (uri (string-append "mirror://cpan/authors/id/U/UR/URI/"
3668 "File-Slurp-" version ".tar.gz"))
3669 (sha256
3670 (base32
3671 "0hrn4nipwx40d6ji8ssgr5nw986z9iqq8cn0kdpbszh9jplynaff"))))
3672 (build-system perl-build-system)
3673 (home-page "http://search.cpan.org/dist/File-Slurp/")
3674 (synopsis "Reading/Writing/Modifying of complete files")
3675 (description "File::Slurp provides subroutines to read or write entire
3676 files with a simple call. It also has a subroutine for reading the list of
3677 file names in a directory.")
3678 (license (package-license perl))))
3679
3680 (define-public perl-file-slurper
3681 (package
3682 (name "perl-file-slurper")
3683 (version "0.008")
3684 (source
3685 (origin
3686 (method url-fetch)
3687 (uri (string-append
3688 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3689 version
3690 ".tar.gz"))
3691 (sha256
3692 (base32
3693 "0cyjspspms6zyjcqz9v18dbs574g085h2jzjh41xvsrc1qa8bxhh"))))
3694 (build-system perl-build-system)
3695 (propagated-inputs
3696 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3697 (home-page "http://search.cpan.org/dist/File-Slurper/")
3698 (synopsis "Simple, sane and efficient module to slurp a file")
3699 (description "This module provides functions for fast and correct file
3700 slurping and spewing. All functions are optionally exported.")
3701 (license (package-license perl))))
3702
3703 (define-public perl-file-slurp-tiny
3704 (package
3705 (name "perl-file-slurp-tiny")
3706 (version "0.004")
3707 (source (origin
3708 (method url-fetch)
3709 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3710 "File-Slurp-Tiny-" version ".tar.gz"))
3711 (sha256
3712 (base32
3713 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3714 (build-system perl-build-system)
3715 (home-page "http://search.cpan.org/dist/File-Slurp-Tiny/")
3716 (synopsis "Simple file reader and writer")
3717 (description
3718 "This module provides functions for fast reading and writing of files.")
3719 (license (package-license perl))))
3720
3721 (define-public perl-file-temp
3722 (package
3723 (name "perl-file-temp")
3724 (version "0.2304")
3725 (source
3726 (origin
3727 (method url-fetch)
3728 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3729 "File-Temp-" version ".tar.gz"))
3730 (sha256
3731 (base32
3732 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
3733 (build-system perl-build-system)
3734 (propagated-inputs
3735 `(("perl-parent" ,perl-parent)))
3736 (home-page "http://search.cpan.org/dist/File-Temp/")
3737 (synopsis "Return name and handle of a temporary file safely")
3738 (description "File::Temp can be used to create and open temporary files in
3739 a safe way.")
3740 (license (package-license perl))))
3741
3742 (define-public perl-file-which
3743 (package
3744 (name "perl-file-which")
3745 (version "1.09")
3746 (source (origin
3747 (method url-fetch)
3748 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3749 "File-Which-" version ".tar.gz"))
3750 (sha256
3751 (base32
3752 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
3753 (build-system perl-build-system)
3754 (native-inputs `(("test-script" ,perl-test-script)))
3755 (synopsis "Portable implementation of the `which' utility")
3756 (description
3757 "File::Which was created to be able to get the paths to executable
3758 programs on systems under which the `which' program wasn't implemented in the
3759 shell.")
3760 (home-page (string-append "http://search.cpan.org/~adamk//"
3761 "File-Which-" version))
3762 (license (package-license perl))))
3763
3764 (define-public perl-file-zglob
3765 (package
3766 (name "perl-file-zglob")
3767 (version "0.11")
3768 (source (origin
3769 (method url-fetch)
3770 (uri (string-append
3771 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
3772 version ".tar.gz"))
3773 (sha256
3774 (base32
3775 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
3776 (build-system perl-build-system)
3777 (native-inputs
3778 `(("perl-module-install" ,perl-module-install)))
3779 (home-page "http://search.cpan.org/dist/File-Zglob/")
3780 (synopsis "Extended Unix style glob functionality")
3781 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
3782 functionality; it returns a list of file names that match the given pattern.
3783 For instance, it supports the @code{**/*.pm} form.")
3784 (license (package-license perl))))
3785
3786 (define-public perl-getopt-long
3787 (package
3788 (name "perl-getopt-long")
3789 (version "v2.49.1")
3790 (source
3791 (origin
3792 (method url-fetch)
3793 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
3794 "Getopt-Long-" (substring version 1) ".tar.gz"))
3795 (sha256
3796 (base32
3797 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
3798 (build-system perl-build-system)
3799 (home-page "http://search.cpan.org/dist/Getopt-Long/")
3800 (synopsis "Module to handle parsing command line options")
3801 (description "The @code{Getopt::Long} module implements an extended getopt
3802 function called @code{GetOptions()}. It parses the command line from
3803 @code{ARGV}, recognizing and removing specified options and their possible
3804 values.
3805
3806 This function adheres to the POSIX syntax for command line options, with GNU
3807 extensions. In general, this means that options have long names instead of
3808 single letters, and are introduced with a double dash \"--\". Support for
3809 bundling of command line options, as was the case with the more traditional
3810 single-letter approach, is provided but not enabled by default.")
3811 ;; Can be used with either license.
3812 (license (list (package-license perl) gpl2+))))
3813
3814 (define-public perl-getopt-long-descriptive
3815 (package
3816 (name "perl-getopt-long-descriptive")
3817 (version "0.102")
3818 (source
3819 (origin
3820 (method url-fetch)
3821 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3822 "Getopt-Long-Descriptive-" version ".tar.gz"))
3823 (sha256
3824 (base32
3825 "0ii8xafvlph5vzcqp3dpc83lg7nkg3l1l2hmqdf5382a567vkm4s"))))
3826 (build-system perl-build-system)
3827 (native-inputs
3828 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
3829 ("perl-test-fatal" ,perl-test-fatal)
3830 ("perl-test-warnings" ,perl-test-warnings)))
3831 (propagated-inputs
3832 `(("perl-params-validate" ,perl-params-validate)
3833 ("perl-sub-exporter" ,perl-sub-exporter)))
3834 (home-page "http://search.cpan.org/dist/Getopt-Long-Descriptive/")
3835 (synopsis "Getopt::Long, but simpler and more powerful")
3836 (description "Getopt::Long::Descriptive is yet another Getopt library.
3837 It's built atop Getopt::Long, and gets a lot of its features, but tries to
3838 avoid making you think about its huge array of options. It also provides
3839 usage (help) messages, data validation, and a few other useful features.")
3840 (license (package-license perl))))
3841
3842 (define-public perl-getopt-tabular
3843 (package
3844 (name "perl-getopt-tabular")
3845 (version "0.3")
3846 (source (origin
3847 (method url-fetch)
3848 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
3849 "Getopt-Tabular-" version ".tar.gz"))
3850 (sha256
3851 (base32
3852 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
3853 (build-system perl-build-system)
3854 (synopsis "Table-driven argument parsing for Perl")
3855 (description
3856 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
3857 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
3858 (home-page (string-append "http://search.cpan.org/~gward//"
3859 "Getopt-Tabular-" version))
3860 (license (package-license perl))))
3861
3862 (define-public perl-graph
3863 (package
3864 (name "perl-graph")
3865 (version "0.9704")
3866 (source
3867 (origin
3868 (method url-fetch)
3869 (uri (string-append
3870 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
3871 version
3872 ".tar.gz"))
3873 (sha256
3874 (base32
3875 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
3876 (build-system perl-build-system)
3877 (home-page "http://search.cpan.org/dist/Graph/")
3878 (synopsis "Graph data structures and algorithms")
3879 (description "This is @code{Graph}, a Perl module for dealing with graphs,
3880 the abstract data structures.")
3881 (license (package-license perl))))
3882
3883 (define-public perl-guard
3884 (package
3885 (name "perl-guard")
3886 (version "1.023")
3887 (source (origin
3888 (method url-fetch)
3889 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
3890 version ".tar.gz"))
3891 (sha256
3892 (base32
3893 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
3894 (build-system perl-build-system)
3895 (home-page "http://search.cpan.org/dist/Guard/")
3896 (synopsis "Safe cleanup blocks implemented as guards")
3897 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
3898 something (usually an object) that \"guards\" a resource, ensuring that it is
3899 cleaned up when expected.
3900
3901 Specifically, this module supports two different types of guards: guard
3902 objects, which execute a given code block when destroyed, and scoped guards,
3903 which are tied to the scope exit.")
3904 (license (package-license perl))))
3905
3906 (define-public perl-hash-fieldhash
3907 (package
3908 (name "perl-hash-fieldhash")
3909 (version "0.15")
3910 (source
3911 (origin
3912 (method url-fetch)
3913 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
3914 "Hash-FieldHash-" version ".tar.gz"))
3915 (sha256
3916 (base32
3917 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
3918 (build-system perl-build-system)
3919 (arguments
3920 `(#:phases
3921 (modify-phases %standard-phases
3922 (add-before 'configure 'set-perl-search-path
3923 (lambda _
3924 ;; Work around "dotless @INC" build failure.
3925 (setenv "PERL5LIB"
3926 (string-append (getcwd) ":"
3927 (getenv "PERL5LIB")))
3928 #t)))))
3929 (native-inputs
3930 `(("perl-module-build" ,perl-module-build)
3931 ("perl-test-leaktrace" ,perl-test-leaktrace)))
3932 (home-page "http://search.cpan.org/dist/Hash-FieldHash/")
3933 (synopsis "Lightweight field hash for inside-out objects")
3934 (description "@code{Hash::FieldHash} provides the field hash mechanism
3935 which supports the inside-out technique. It is an alternative to
3936 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
3937 relic support.")
3938 (license (package-license perl))))
3939
3940 (define-public perl-hash-merge
3941 (package
3942 (name "perl-hash-merge")
3943 (version "0.200")
3944 (source
3945 (origin
3946 (method url-fetch)
3947 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3948 "Hash-Merge-" version ".tar.gz"))
3949 (sha256
3950 (base32
3951 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
3952 (build-system perl-build-system)
3953 (home-page "http://search.cpan.org/dist/Hash-Merge/")
3954 (synopsis "Merge arbitrarily deep hashes into a single hash")
3955 (description "Hash::Merge merges two arbitrarily deep hashes into a single
3956 hash. That is, at any level, it will add non-conflicting key-value pairs from
3957 one hash to the other, and follows a set of specific rules when there are key
3958 value conflicts. The hash is followed recursively, so that deeply nested
3959 hashes that are at the same level will be merged when the parent hashes are
3960 merged.")
3961 (license (package-license perl))))
3962
3963 (define-public perl-hash-multivalue
3964 (package
3965 (name "perl-hash-multivalue")
3966 (version "0.16")
3967 (source
3968 (origin
3969 (method url-fetch)
3970 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
3971 "Hash-MultiValue-" version ".tar.gz"))
3972 (sha256
3973 (base32
3974 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
3975 (build-system perl-build-system)
3976 (home-page "http://search.cpan.org/dist/Hash-MultiValue/")
3977 (synopsis "Store multiple values per key")
3978 (description "Hash::MultiValue is an object (and a plain hash reference)
3979 that may contain multiple values per key, inspired by MultiDict of WebOb.")
3980 (license (package-license perl))))
3981
3982 (define-public perl-importer
3983 (package
3984 (name "perl-importer")
3985 (version "0.025")
3986 (source
3987 (origin
3988 (method url-fetch)
3989 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
3990 version ".tar.gz"))
3991 (sha256
3992 (base32
3993 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
3994 (build-system perl-build-system)
3995 (home-page "http://search.cpan.org/dist/Importer//")
3996 (synopsis "Alternative but compatible interface to modules that export symbols")
3997 (description "This module acts as a layer between Exporter and modules which
3998 consume exports. It is feature-compatible with Exporter, plus some much needed
3999 extras. You can use this to import symbols from any exporter that follows
4000 Exporters specification. The exporter modules themselves do not need to use or
4001 inherit from the Exporter module, they just need to set @@EXPORT and/or other
4002 variables.")
4003 (license (package-license perl))))
4004
4005 (define-public perl-import-into
4006 (package
4007 (name "perl-import-into")
4008 (version "1.002005")
4009 (source
4010 (origin
4011 (method url-fetch)
4012 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4013 "Import-Into-" version ".tar.gz"))
4014 (sha256
4015 (base32
4016 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
4017 (build-system perl-build-system)
4018 (propagated-inputs
4019 `(("perl-module-runtime" ,perl-module-runtime)))
4020 (home-page "http://search.cpan.org/dist/Import-Into/")
4021 (synopsis "Import packages into other packages")
4022 (description "Writing exporters is a pain. Some use Exporter, some use
4023 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
4024 some things are pragmas. Exporting on someone else's behalf is harder. The
4025 exporters don't provide a consistent API for this, and pragmas need to have
4026 their import method called directly, since they effect the current unit of
4027 compilation. Import::Into provides global methods to make this painless.")
4028 (license (package-license perl))))
4029
4030 (define-public perl-inc-latest
4031 (package
4032 (name "perl-inc-latest")
4033 (version "0.500")
4034 (source
4035 (origin
4036 (method url-fetch)
4037 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4038 "inc-latest-" version ".tar.gz"))
4039 (sha256
4040 (base32
4041 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
4042 (build-system perl-build-system)
4043 (home-page "http://search.cpan.org/dist/inc-latest/")
4044 (synopsis "Use modules in inc/ if newer than installed")
4045 (description "The inc::latest module helps bootstrap configure-time
4046 dependencies for CPAN distributions. These dependencies get bundled into the
4047 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
4048 (license asl2.0)))
4049
4050 (define-public perl-indirect
4051 (package
4052 (name "perl-indirect")
4053 (version "0.38")
4054 (source
4055 (origin
4056 (method url-fetch)
4057 (uri (string-append
4058 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
4059 version ".tar.gz"))
4060 (sha256
4061 (base32
4062 "13k5a8p903m8x3pcv9qqkzvnb8gpgq36cr3dvn3lk1ngsi9w5ydy"))))
4063 (build-system perl-build-system)
4064 (home-page "http://search.cpan.org/dist/indirect/")
4065 (synopsis "Lexically warn about using the indirect method call syntax")
4066 (description
4067 "Indirect warns about using the indirect method call syntax.")
4068 (license (package-license perl))))
4069
4070 (define-public perl-inline
4071 (package
4072 (name "perl-inline")
4073 (version "0.80")
4074 (source
4075 (origin
4076 (method url-fetch)
4077 (uri (string-append
4078 "mirror://cpan/authors/id/I/IN/INGY/Inline-"
4079 version ".tar.gz"))
4080 (sha256
4081 (base32
4082 "1xnf5hykcr54271x5jsnr61bcv1c7x39cy4kdcrkxm7bn62djavy"))))
4083 (build-system perl-build-system)
4084 (native-inputs
4085 `(("perl-test-warn" ,perl-test-warn)))
4086 (home-page "http://search.cpan.org/dist/Inline/")
4087 (synopsis "Write Perl subroutines in other programming languages")
4088 (description "The @code{Inline} module allows you to put source code
4089 from other programming languages directly (inline) in a Perl script or
4090 module. The code is automatically compiled as needed, and then loaded
4091 for immediate access from Perl.")
4092 (license (package-license perl))))
4093
4094 (define-public perl-inline-c
4095 (package
4096 (name "perl-inline-c")
4097 (version "0.78")
4098 (source
4099 (origin
4100 (method url-fetch)
4101 (uri (string-append
4102 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
4103 version ".tar.gz"))
4104 (sha256
4105 (base32
4106 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
4107 (build-system perl-build-system)
4108 (native-inputs
4109 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
4110 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
4111 ("perl-test-warn" ,perl-test-warn)
4112 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
4113 (propagated-inputs
4114 `(("perl-inline" ,perl-inline)
4115 ("perl-parse-recdescent" ,perl-parse-recdescent)
4116 ("perl-pegex" ,perl-pegex)))
4117 (home-page "http://search.cpan.org/dist/Inline-C/")
4118 (synopsis "C Language Support for Inline")
4119 (description "The @code{Inline::C} module allows you to write Perl
4120 subroutines in C. Since version 0.30 the @code{Inline} module supports
4121 multiple programming languages and each language has its own support module.
4122 This document describes how to use Inline with the C programming language.
4123 It also goes a bit into Perl C internals.")
4124 (license (package-license perl))))
4125
4126 (define-public perl-io-all
4127 (package
4128 (name "perl-io-all")
4129 (version "0.87")
4130 (source
4131 (origin
4132 (method url-fetch)
4133 (uri (string-append
4134 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
4135 version
4136 ".tar.gz"))
4137 (sha256
4138 (base32
4139 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
4140 (build-system perl-build-system)
4141 (propagated-inputs
4142 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
4143 ("perl-file-readbackwards" ,perl-file-readbackwards)))
4144 (home-page "http://search.cpan.org/dist/IO-All/")
4145 (synopsis "@code{IO::All} to Larry Wall!")
4146 (description "@code{IO::All} combines all of the best Perl IO modules into
4147 a single nifty object oriented interface to greatly simplify your everyday
4148 Perl IO idioms. It exports a single function called io, which returns a new
4149 @code{IO::All} object. And that object can do it all!")
4150 (license perl-license)))
4151
4152 (define-public perl-io-captureoutput
4153 (package
4154 (name "perl-io-captureoutput")
4155 (version "1.1104")
4156 (source
4157 (origin
4158 (method url-fetch)
4159 (uri (string-append
4160 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
4161 version
4162 ".tar.gz"))
4163 (sha256
4164 (base32
4165 "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
4166 (build-system perl-build-system)
4167 (home-page "http://search.cpan.org/dist/IO-CaptureOutput/")
4168 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
4169 (description "@code{IO::CaptureOutput} provides routines for capturing
4170 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
4171 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
4172
4173 This module is no longer recommended by its maintainer. Users are advised to
4174 try @code{Capture::Tiny} instead.")
4175 (license (package-license perl))))
4176
4177 (define-public perl-io-interactive
4178 (package
4179 (name "perl-io-interactive")
4180 (version "0.0.6")
4181 (source
4182 (origin
4183 (method url-fetch)
4184 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
4185 "IO-Interactive-" version ".tar.gz"))
4186 (sha256
4187 (base32
4188 "1303q6rbcf2cag5z08pq3d1y91wls5q51jrpw4kh0l2bv75idh4w"))))
4189 (build-system perl-build-system)
4190 (home-page "http://search.cpan.org/dist/IO-Interactive/")
4191 (synopsis "Utilities for interactive I/O")
4192 (description "This module provides three utility subroutines that make it
4193 easier to develop interactive applications: is_interactive(), interactive(),
4194 and busy().")
4195 (license (package-license perl))))
4196
4197 (define-public perl-io-string
4198 (package
4199 (name "perl-io-string")
4200 (version "1.08")
4201 (source
4202 (origin
4203 (method url-fetch)
4204 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
4205 "IO-String-" version ".tar.gz"))
4206 (sha256
4207 (base32
4208 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
4209 (build-system perl-build-system)
4210 (home-page "http://search.cpan.org/~gaas/IO-String-1.08//")
4211 (synopsis "Emulate file interface for in-core strings")
4212 (description "IO::String is an IO::File (and IO::Handle) compatible class
4213 that reads or writes data from in-core strings.")
4214 (license (package-license perl))))
4215
4216 (define-public perl-io-stringy
4217 (package
4218 (name "perl-io-stringy")
4219 (version "2.111")
4220 (source
4221 (origin
4222 (method url-fetch)
4223 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
4224 "IO-stringy-" version ".tar.gz"))
4225 (sha256
4226 (base32
4227 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
4228 (build-system perl-build-system)
4229 (home-page "http://search.cpan.org/dist/IO-stringy/")
4230 (synopsis "IO:: interface for reading/writing an array of lines")
4231 (description "This toolkit primarily provides modules for performing both
4232 traditional and object-oriented i/o) on things *other* than normal
4233 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
4234 (license (package-license perl))))
4235
4236 (define-public perl-io-tty
4237 (package
4238 (name "perl-io-tty")
4239 (version "1.12")
4240 (source (origin
4241 (method url-fetch)
4242 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
4243 version ".tar.gz"))
4244 (sha256
4245 (base32
4246 "0399anjy3bc0w8xzsc3qx5vcyqryc9gc52lc7wh7i49hsdq8gvx2"))))
4247 (build-system perl-build-system)
4248 (home-page "http://search.cpan.org/~toddr/IO-Tty//")
4249 (synopsis "Perl interface to pseudo ttys")
4250 (description
4251 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
4252 pseudo ttys.")
4253 (license (package-license perl))))
4254
4255 (define-public perl-ipc-cmd
4256 (package
4257 (name "perl-ipc-cmd")
4258 (version "0.96")
4259 (source
4260 (origin
4261 (method url-fetch)
4262 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
4263 version ".tar.gz"))
4264 (sha256
4265 (base32
4266 "0a2v44x70gj9fd5wa8i08f9z6n14qppj1j49m1hc333wh72mzk6i"))))
4267 (build-system perl-build-system)
4268 (home-page "http://search.cpan.org/dist/IPC-Cmd/")
4269 (synopsis "Run interactive command-line programs")
4270 (description "@code{IPC::Cmd} allows for the searching and execution of
4271 any binary on your system. It adheres to verbosity settings and is able to
4272 run interactively. It also has an option to capture output/error buffers.")
4273 (license (package-license perl))))
4274
4275 (define-public perl-ipc-run
4276 (package
4277 (name "perl-ipc-run")
4278 (version "0.94")
4279 (source
4280 (origin
4281 (method url-fetch)
4282 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
4283 "IPC-Run-" version ".tar.gz"))
4284 (sha256
4285 (base32
4286 "0nv0lpw31zaz6vi42q7ihjj3j382j4njicp5k0gsczib3b4kdcrf"))))
4287 (build-system perl-build-system)
4288 (propagated-inputs
4289 `(("perl-io-tty" ,perl-io-tty)))
4290 (arguments
4291 `(#:phases (modify-phases %standard-phases
4292 (add-before
4293 'check 'disable-w32-test
4294 (lambda _
4295 ;; This test fails, and we're not really interested in
4296 ;; it, so disable it.
4297 (delete-file "t/win32_compile.t"))))))
4298 (home-page "http://search.cpan.org/dist/IPC-Run/")
4299 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
4300 (description "IPC::Run allows you run and interact with child processes
4301 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
4302 are supported and may be mixed. Likewise, functional and OO API styles are
4303 both supported and may be mixed.")
4304 (license (package-license perl))))
4305
4306 (define-public perl-ipc-run3
4307 (package
4308 (name "perl-ipc-run3")
4309 (version "0.048")
4310 (source (origin
4311 (method url-fetch)
4312 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4313 "IPC-Run3-" version ".tar.gz"))
4314 (sha256
4315 (base32
4316 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
4317 (build-system perl-build-system)
4318 (synopsis "Run a subprocess with input/output redirection")
4319 (description
4320 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
4321 stdout, and/or stderr to files and perl data structures. It aims to satisfy
4322 99% of the need for using system, qx, and open3 with a simple, extremely
4323 Perlish API and none of the bloat and rarely used features of IPC::Run.")
4324 (home-page (string-append "http://search.cpan.org/~rjbs//"
4325 "IPC-Run3-" version))
4326 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
4327 ;; licenses, any version."
4328 (license (list bsd-3 gpl3+))))
4329
4330 (define-public perl-ipc-sharelite
4331 (package
4332 (name "perl-ipc-sharelite")
4333 (version "0.17")
4334 (source
4335 (origin
4336 (method url-fetch)
4337 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
4338 "IPC-ShareLite-" version ".tar.gz"))
4339 (sha256
4340 (base32
4341 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
4342 (build-system perl-build-system)
4343 (home-page "http://search.cpan.org/dist/IPC-ShareLite/")
4344 (synopsis "Lightweight interface to shared memory")
4345 (description "IPC::ShareLite provides a simple interface to shared memory,
4346 allowing data to be efficiently communicated between processes.")
4347 (license (package-license perl))))
4348
4349 (define-public perl-ipc-system-simple
4350 (package
4351 (name "perl-ipc-system-simple")
4352 (version "1.25")
4353 (source (origin
4354 (method url-fetch)
4355 (uri (string-append
4356 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
4357 version ".tar.gz"))
4358 (sha256
4359 (base32
4360 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
4361 (build-system perl-build-system)
4362 (home-page "http://search.cpan.org/dist/IPC-System-Simple/")
4363 (synopsis "Run commands simply, with detailed diagnostics")
4364 (description "Calling Perl's in-built @code{system} function is easy,
4365 determining if it was successful is hard. Let's face it, @code{$?} isn't the
4366 nicest variable in the world to play with, and even if you do check it,
4367 producing a well-formatted error string takes a lot of work.
4368
4369 @code{IPC::System::Simple} takes the hard work out of calling external
4370 commands.")
4371 (license (package-license perl))))
4372
4373 (define-public perl-json
4374 (package
4375 (name "perl-json")
4376 (version "2.90")
4377 (source
4378 (origin
4379 (method url-fetch)
4380 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
4381 "JSON-" version ".tar.gz"))
4382 (sha256
4383 (base32
4384 "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
4385 (build-system perl-build-system)
4386 (propagated-inputs
4387 `(("perl-json-xs" ,perl-json-xs))) ;recommended
4388 (home-page "http://search.cpan.org/dist/JSON/")
4389 (synopsis "JSON encoder/decoder for Perl")
4390 (description "This module converts Perl data structures to JSON and vice
4391 versa using either JSON::XS or JSON::PP.")
4392 (license (package-license perl))))
4393
4394 (define-public perl-json-any
4395 (package
4396 (name "perl-json-any")
4397 (version "1.39")
4398 (source
4399 (origin
4400 (method url-fetch)
4401 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4402 "JSON-Any-" version ".tar.gz"))
4403 (sha256
4404 (base32
4405 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
4406 (build-system perl-build-system)
4407 (native-inputs
4408 `(("perl-test-fatal" ,perl-test-fatal)
4409 ("perl-test-requires" ,perl-test-requires)
4410 ("perl-test-warnings" ,perl-test-warnings)
4411 ("perl-test-without-module" ,perl-test-without-module)))
4412 (propagated-inputs
4413 `(("perl-namespace-clean" ,perl-namespace-clean)))
4414 (home-page "http://search.cpan.org/dist/JSON-Any/")
4415 (synopsis "Wrapper for Perl JSON classes")
4416 (description
4417 "This module tries to provide a coherent API to bring together the
4418 various JSON modules currently on CPAN. This module will allow you to code to
4419 any JSON API and have it work regardless of which JSON module is actually
4420 installed.")
4421 (license (package-license perl))))
4422
4423 (define-public perl-json-maybexs
4424 (package
4425 (name "perl-json-maybexs")
4426 (version "1.003010")
4427 (source
4428 (origin
4429 (method url-fetch)
4430 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4431 "JSON-MaybeXS-" version ".tar.gz"))
4432 (sha256
4433 (base32
4434 "0hs504x5zsa2vl6r7b3rvbygsak1ly24m1lg636bqp3x7jirmb30"))))
4435 (build-system perl-build-system)
4436 (native-inputs
4437 `(("perl-test-without-module" ,perl-test-without-module)))
4438 (inputs
4439 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
4440 (home-page "http://search.cpan.org/dist/JSON-MaybeXS/")
4441 (synopsis "Cpanel::JSON::XS with fallback")
4442 (description "This module first checks to see if either Cpanel::JSON::XS
4443 or JSON::XS is already loaded, in which case it uses that module. Otherwise
4444 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
4445 either uses the first module it finds or throws an error.")
4446 (license (package-license perl))))
4447
4448 (define-public perl-json-xs
4449 (package
4450 (name "perl-json-xs")
4451 (version "3.01")
4452 (source
4453 (origin
4454 (method url-fetch)
4455 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
4456 "JSON-XS-" version ".tar.gz"))
4457 (sha256
4458 (base32
4459 "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
4460 (build-system perl-build-system)
4461 (propagated-inputs
4462 `(("perl-common-sense" ,perl-common-sense)
4463 ("perl-types-serialiser" ,perl-types-serialiser)))
4464 (home-page "http://search.cpan.org/dist/JSON-XS/")
4465 (synopsis "JSON serialising/deserialising for Perl")
4466 (description "This module converts Perl data structures to JSON and vice
4467 versa.")
4468 (license (package-license perl))))
4469
4470 (define-public perl-lexical-sealrequirehints
4471 (package
4472 (name "perl-lexical-sealrequirehints")
4473 (version "0.011")
4474 (source
4475 (origin
4476 (method url-fetch)
4477 (uri (string-append
4478 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
4479 version
4480 ".tar.gz"))
4481 (sha256
4482 (base32
4483 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
4484 (build-system perl-build-system)
4485 (native-inputs
4486 `(("perl-module-build" ,perl-module-build)))
4487 (home-page "http://search.cpan.org/dist/Lexical-SealRequireHints/")
4488 (synopsis "Prevent leakage of lexical hints")
4489 (description
4490 "Lexical::SealRequireHints prevents leakage of lexical hints")
4491 (license (package-license perl))))
4492
4493 (define-public perl-log-any
4494 (package
4495 (name "perl-log-any")
4496 (version "1.040")
4497 (source
4498 (origin
4499 (method url-fetch)
4500 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
4501 version ".tar.gz"))
4502 (sha256
4503 (base32
4504 "0r1q7cclgwl24gzdnjzvd8y0r7j17dngjk492x35w198zhdj2ncp"))))
4505 (build-system perl-build-system)
4506 (home-page "http://search.cpan.org/dist/Log-Any/")
4507 (synopsis "Bringing loggers and listeners together")
4508 (description "@code{Log::Any} provides a standard log production API for
4509 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
4510 for log consumption, whether screen, file or another logging mechanism like
4511 @code{Log::Dispatch} or @code{Log::Log4perl}.
4512
4513 A CPAN module uses @code{Log::Any} to get a log producer object. An
4514 application, in turn, may choose one or more logging mechanisms via
4515 @code{Log::Any::Adapter}, or none at all.
4516
4517 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
4518 itself, which makes it appropriate for even small CPAN modules to use. It
4519 defaults to 'null' logging activity, so a module can safely log without
4520 worrying about whether the application has chosen (or will ever choose) a
4521 logging mechanism.")
4522 (license (package-license perl))))
4523
4524 (define-public perl-log-any-adapter-log4perl
4525 (package
4526 (name "perl-log-any-adapter-log4perl")
4527 (version "0.09")
4528 (source
4529 (origin
4530 (method url-fetch)
4531 (uri (string-append
4532 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
4533 version
4534 ".tar.gz"))
4535 (sha256
4536 (base32
4537 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
4538 (build-system perl-build-system)
4539 (propagated-inputs
4540 `(("perl-log-any" ,perl-log-any)
4541 ("perl-log-log4perl" ,perl-log-log4perl)))
4542 (home-page
4543 "http://search.cpan.org/dist/Log-Any-Adapter-Log4perl/")
4544 (synopsis "Log::Any adapter for Log::Log4perl")
4545 (description "@code{Log::Any::Adapter::Log4perl} provides a
4546 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
4547 (license (package-license perl))))
4548
4549 (define-public perl-log-log4perl
4550 (package
4551 (name "perl-log-log4perl")
4552 (version "1.49")
4553 (source
4554 (origin
4555 (method url-fetch)
4556 (uri (string-append
4557 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
4558 version
4559 ".tar.gz"))
4560 (sha256
4561 (base32
4562 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
4563 (build-system perl-build-system)
4564 (home-page
4565 "http://search.cpan.org/dist/Log-Log4perl/")
4566 (synopsis "Log4j implementation for Perl")
4567 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
4568 the logging behaviour of your system from the outside. It implements the
4569 widely popular (Java-based) Log4j logging package in pure Perl.")
4570 (license (package-license perl))))
4571
4572 (define-public perl-log-report-optional
4573 (package
4574 (name "perl-log-report-optional")
4575 (version "1.01")
4576 (source (origin
4577 (method url-fetch)
4578 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4579 "Log-Report-Optional-" version ".tar.gz"))
4580 (sha256
4581 (base32
4582 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
4583 (build-system perl-build-system)
4584 (propagated-inputs
4585 `(("perl-string-print" ,perl-string-print)))
4586 (home-page "http://search.cpan.org/dist/Log-Report-Optional/")
4587 (synopsis "Log::Report in the lightest form")
4588 (description
4589 "This module allows libraries to have a dependency to a small module
4590 instead of the full Log-Report distribution. The full power of
4591 @code{Log::Report} is only released when the main program uses that module.
4592 In that case, the module using the 'Optional' will also use the full
4593 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
4594 version.")
4595 (license (package-license perl))))
4596
4597 (define-public perl-log-report
4598 (package
4599 (name "perl-log-report")
4600 (version "1.10")
4601 (source (origin
4602 (method url-fetch)
4603 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4604 "Log-Report-" version ".tar.gz"))
4605 (sha256
4606 (base32
4607 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
4608 (build-system perl-build-system)
4609 (propagated-inputs
4610 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4611 ("perl-log-report-optional" ,perl-log-report-optional)
4612 ("perl-string-print" ,perl-string-print)))
4613 (home-page "http://search.cpan.org/dist/Log-Report/")
4614 (synopsis "Get messages to users and logs")
4615 (description
4616 "@code{Log::Report} combines three tasks which are closely related in
4617 one: logging, exceptions, and translations.")
4618 (license (package-license perl))))
4619
4620 (define-public perl-libintl-perl
4621 (package
4622 (name "perl-libintl-perl")
4623 (version "1.29")
4624 (source
4625 (origin
4626 (method url-fetch)
4627 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
4628 "libintl-perl-" version ".tar.gz"))
4629 (sha256
4630 (base32
4631 "1cgvrgh4axd8jlr6497ndgphgvgnqc1axd306460hskdvc85z4vq"))))
4632 (build-system perl-build-system)
4633 (arguments
4634 `(#:phases
4635 (modify-phases %standard-phases
4636 (add-before 'configure 'set-perl-search-path
4637 (lambda _
4638 ;; Work around "dotless @INC" build failure.
4639 (setenv "PERL5LIB" (string-append (getcwd) ":"
4640 (getenv "PERL5LIB")))
4641 #t)))))
4642 (propagated-inputs
4643 `(("perl-file-sharedir" ,perl-file-sharedir)))
4644 (home-page "http://search.cpan.org/dist/libintl-perl/")
4645 (synopsis "High-level interface to Uniforum message translation")
4646 (description "This package is an internationalization library for Perl
4647 that aims to be compatible with the Uniforum message translations system as
4648 implemented for example in GNU gettext.")
4649 (license gpl3+)))
4650
4651 (define-public perl-lingua-translit
4652 (package
4653 (name "perl-lingua-translit")
4654 (version "0.26")
4655 (source
4656 (origin
4657 (method url-fetch)
4658 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
4659 "Lingua-Translit-" version ".tar.gz"))
4660 (sha256
4661 (base32
4662 "161589h08kzliga17i2g0hb0yn4cjmb8rdiyadq5bw97974bac14"))))
4663 (build-system perl-build-system)
4664 (home-page "http://search.cpan.org/dist/Lingua-Translit/")
4665 (synopsis "Transliterate text between writing systems")
4666 (description "@code{Lingua::Translit} can be used to convert text from one
4667 writing system to another, based on national or international transliteration
4668 tables. Where possible a reverse transliteration is supported.")
4669 (license (package-license perl))))
4670
4671 (define-public perl-list-allutils
4672 (package
4673 (name "perl-list-allutils")
4674 (version "0.09")
4675 (source
4676 (origin
4677 (method url-fetch)
4678 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4679 "List-AllUtils-" version ".tar.gz"))
4680 (sha256
4681 (base32
4682 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
4683 (build-system perl-build-system)
4684 (native-inputs
4685 `(("perl-test-warnings" ,perl-test-warnings)))
4686 (propagated-inputs
4687 `(("perl-list-moreutils" ,perl-list-moreutils)
4688 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
4689 (home-page "http://search.cpan.org/dist/List-AllUtils/")
4690 (synopsis "Combination of List::Util and List::MoreUtils")
4691 (description "This module exports all of the functions that either
4692 List::Util or List::MoreUtils defines, with preference to List::Util.")
4693 (license (package-license perl))))
4694
4695 (define-public perl-list-compare
4696 (package
4697 (name "perl-list-compare")
4698 (version "0.53")
4699 (source
4700 (origin
4701 (method url-fetch)
4702 (uri (string-append
4703 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
4704 version
4705 ".tar.gz"))
4706 (sha256
4707 (base32
4708 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
4709 (build-system perl-build-system)
4710 (native-inputs
4711 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
4712 (home-page "http://search.cpan.org/dist/List-Compare/")
4713 (synopsis "Compare elements of two or more lists")
4714 (description "@code{List::Compare} provides a module to perform
4715 comparative operations on two or more lists. Provided operations include
4716 intersections, unions, unique elements, complements and many more.")
4717 (license (package-license perl))))
4718
4719 (define-public perl-list-moreutils
4720 (package
4721 (name "perl-list-moreutils")
4722 (version "0.428")
4723 (source
4724 (origin
4725 (method url-fetch)
4726 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4727 "List-MoreUtils-" version ".tar.gz"))
4728 (sha256
4729 (base32
4730 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
4731 (build-system perl-build-system)
4732 (arguments
4733 `(#:phases
4734 (modify-phases %standard-phases
4735 (add-before 'configure 'set-perl-search-path
4736 (lambda _
4737 ;; Work around "dotless @INC" build failure.
4738 (setenv "PERL5LIB"
4739 (string-append (getcwd) ":"
4740 (getenv "PERL5LIB")))
4741 #t)))))
4742 (native-inputs
4743 `(("perl-config-autoconf" ,perl-config-autoconf)
4744 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4745 (propagated-inputs
4746 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4747 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
4748 (home-page "http://search.cpan.org/dist/List-MoreUtils/")
4749 (synopsis "Provide the stuff missing in List::Util")
4750 (description "List::MoreUtils provides some trivial but commonly needed
4751 functionality on lists which is not going to go into List::Util.")
4752 (license (package-license perl))))
4753
4754 (define-public perl-list-moreutils-xs
4755 (package
4756 (name "perl-list-moreutils-xs")
4757 (version "0.428")
4758 (source
4759 (origin
4760 (method url-fetch)
4761 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
4762 version ".tar.gz"))
4763 (sha256
4764 (base32
4765 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
4766 (build-system perl-build-system)
4767 (native-inputs
4768 `(("perl-config-autoconf" ,perl-config-autoconf)
4769 ("perl-inc-latest" ,perl-inc-latest)
4770 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4771 (home-page "http://search.cpan.org/dist/List-MoreUtils-XS")
4772 (synopsis "Provide the stuff missing in List::Util in XS")
4773 (description "@code{List::MoreUtils::XS} provides some trivial but
4774 commonly needed functionality on lists which is not going to go into
4775 @code{List::Util}.")
4776 (license asl2.0)))
4777
4778 (define-public perl-list-someutils
4779 (package
4780 (name "perl-list-someutils")
4781 (version "0.52")
4782 (source
4783 (origin
4784 (method url-fetch)
4785 (uri (string-append
4786 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
4787 version
4788 ".tar.gz"))
4789 (sha256
4790 (base32
4791 "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
4792 (build-system perl-build-system)
4793 (native-inputs
4794 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
4795 (inputs
4796 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4797 ("perl-module-implementation"
4798 ,perl-module-implementation)))
4799 (home-page "http://search.cpan.org/dist/List-SomeUtils/")
4800 (synopsis "Provide the stuff missing in List::Util")
4801 (description "@code{List::SomeUtils} provides some trivial but commonly
4802 needed functionality on lists which is not going to go into @code{List::Util}.
4803
4804 All of the below functions are implementable in only a couple of lines of Perl
4805 code. Using the functions from this module however should give slightly
4806 better performance as everything is implemented in C. The pure-Perl
4807 implementation of these functions only serves as a fallback in case the C
4808 portions of this module couldn't be compiled on this machine.")
4809 (license (package-license perl))))
4810
4811 (define-public perl-mailtools
4812 (package
4813 (name "perl-mailtools")
4814 (version "2.20")
4815 (source
4816 (origin
4817 (method url-fetch)
4818 (uri (string-append
4819 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
4820 version
4821 ".tar.gz"))
4822 (sha256
4823 (base32
4824 "15iizg2x1w7ca0r8rn3wwhp7w160ljvf55prspljwd6cm7vhcmpm"))))
4825 (build-system perl-build-system)
4826 (propagated-inputs
4827 `(("perl-timedate" ,perl-timedate)))
4828 (home-page
4829 "http://search.cpan.org/dist/MailTools/")
4830 (synopsis "Bundle of ancient email modules")
4831 (description "MailTools contains the following modules:
4832 @table @asis
4833 @item Mail::Address
4834 Parse email address from a header line.
4835 @item Mail::Cap
4836 Interpret mailcap files: mappings of file-types to applications as used by
4837 many command-line email programs.
4838 @item Mail::Field
4839 Simplifies access to (some) email header fields. Used by Mail::Header.
4840 @item Mail::Filter
4841 Process Mail::Internet messages.
4842 @item Mail::Header
4843 Collection of Mail::Field objects, representing the header of a Mail::Internet
4844 object.
4845 @item Mail::Internet
4846 Represents a single email message, with header and body.
4847 @item Mail::Mailer
4848 Send Mail::Internet emails via direct smtp or local MTA's.
4849 @item Mail::Send
4850 Build a Mail::Internet object, and then send it out using Mail::Mailer.
4851 @item Mail::Util
4852 \"Smart functions\" you should not depend on.
4853 @end table")
4854 (license perl-license)))
4855
4856 (define-public perl-math-bezier
4857 (package
4858 (name "perl-math-bezier")
4859 (version "0.01")
4860 (source (origin
4861 (method url-fetch)
4862 (uri (string-append
4863 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
4864 version ".tar.gz"))
4865 (sha256
4866 (base32
4867 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
4868 (build-system perl-build-system)
4869 (home-page "http://search.cpan.org/dist/Math-Bezier/")
4870 (synopsis "Solution of bezier curves")
4871 (description "This module implements the algorithm for the solution of Bezier
4872 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
4873 Bezier Curve Drawing\".")
4874 (license perl-license)))
4875
4876 (define-public perl-math-round
4877 (package
4878 (name "perl-math-round")
4879 (version "0.07")
4880 (source (origin
4881 (method url-fetch)
4882 (uri (string-append
4883 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
4884 version ".tar.gz"))
4885 (sha256
4886 (base32
4887 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
4888 (build-system perl-build-system)
4889 (home-page "http://search.cpan.org/dist/Math-Round/")
4890 (synopsis "Perl extension for rounding numbers")
4891 (description "@code{Math::Round} provides functions to round numbers,
4892 both positive and negative, in various ways.")
4893 (license perl-license)))
4894
4895 (define-public perl-memoize
4896 (package
4897 (name "perl-memoize")
4898 (version "1.03")
4899 (source (origin
4900 (method url-fetch)
4901 (uri (string-append
4902 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
4903 version".tgz"))
4904 (sha256
4905 (base32
4906 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
4907 (build-system perl-build-system)
4908 (home-page "http://search.cpan.org/dist/Memoize/")
4909 (synopsis "Make functions faster by trading space for time")
4910 (description "This package transparently speeds up functions by caching
4911 return values, trading space for time.")
4912 (license perl-license)))
4913
4914 (define-public perl-memoize-expirelru
4915 (package
4916 (name "perl-memoize-expirelru")
4917 (version "0.56")
4918 (source
4919 (origin
4920 (method url-fetch)
4921 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
4922 "Memoize-ExpireLRU-" version ".tar.gz"))
4923 (sha256
4924 (base32
4925 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
4926 (build-system perl-build-system)
4927 (home-page "http://search.cpan.org/dist/Memoize-ExpireLRU/")
4928 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
4929 (description "This module implements an expiry policy for Memoize that
4930 follows LRU semantics, that is, the last n results, where n is specified as
4931 the argument to the CACHESIZE parameter, will be cached.")
4932 (license (package-license perl))))
4933
4934 (define-public perl-mime-charset
4935 (package
4936 (name "perl-mime-charset")
4937 (version "1.012.2")
4938 (source (origin
4939 (method url-fetch)
4940 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
4941 "MIME-Charset-" version ".tar.gz"))
4942 (sha256
4943 (base32
4944 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
4945 (build-system perl-build-system)
4946 (home-page "http://search.cpan.org/dist/MIME-Charset/")
4947 (synopsis "Charset information for MIME messages")
4948 (description
4949 "@code{MIME::Charset} provides information about character sets used for
4950 MIME messages on Internet.")
4951 (license (package-license perl))))
4952
4953 (define-public perl-mime-tools
4954 (package
4955 (name "perl-mime-tools")
4956 (version "5.509")
4957 (source
4958 (origin
4959 (method url-fetch)
4960 (uri (string-append
4961 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
4962 version
4963 ".tar.gz"))
4964 (sha256
4965 (base32
4966 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
4967 (build-system perl-build-system)
4968 (native-inputs
4969 `(("perl-test-deep" ,perl-test-deep)))
4970 (inputs
4971 `(("perl-convert-binhex" ,perl-convert-binhex)))
4972 (propagated-inputs
4973 `(("perl-mailtools" ,perl-mailtools)))
4974 (home-page
4975 "http://search.cpan.org/dist/MIME-tools/")
4976 (synopsis "Tools to manipulate MIME messages")
4977 (description
4978 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
4979 decoding, and generating single- or multipart (even nested multipart) MIME
4980 messages.")
4981 (license perl-license)))
4982
4983 (define-public perl-mime-types
4984 (package
4985 (name "perl-mime-types")
4986 (version "2.17")
4987 (source
4988 (origin
4989 (method url-fetch)
4990 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4991 "MIME-Types-" version ".tar.gz"))
4992 (sha256
4993 (base32
4994 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
4995 (build-system perl-build-system)
4996 (home-page "http://search.cpan.org/dist/MIME-Types/")
4997 (synopsis "Definition of MIME types")
4998 (description "This module provides a list of known mime-types, combined
4999 from various sources. For instance, it contains all IANA types and the
5000 knowledge of Apache.")
5001 (license (package-license perl))))
5002
5003 (define-public perl-mixin-linewise
5004 (package
5005 (name "perl-mixin-linewise")
5006 (version "0.108")
5007 (source (origin
5008 (method url-fetch)
5009 (uri (string-append
5010 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
5011 version ".tar.gz"))
5012 (sha256
5013 (base32
5014 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
5015 (build-system perl-build-system)
5016 (inputs
5017 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
5018 ("perl-sub-exporter" ,perl-sub-exporter)))
5019 (home-page "http://search.cpan.org/dist/Mixin-Linewise/")
5020 (synopsis "Write your linewise code for handles; this does the rest")
5021 (description "It's boring to deal with opening files for IO, converting
5022 strings to handle-like objects, and all that. With
5023 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
5024 just write a method to handle handles, and methods for handling strings and
5025 file names are added for you.")
5026 (license (package-license perl))))
5027
5028 (define-public perl-modern-perl
5029 (package
5030 (name "perl-modern-perl")
5031 (version "1.20170117")
5032 (source
5033 (origin
5034 (method url-fetch)
5035 (uri (string-append
5036 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
5037 version ".tar.gz"))
5038 (sha256
5039 (base32
5040 "0a1n9c04zhs1a1km1zi0d1hj78d10qv3bhxr4bdi4chnc4saiwjx"))))
5041 (build-system perl-build-system)
5042 (native-inputs
5043 `(("perl-module-build" ,perl-module-build)))
5044 (home-page
5045 "http://search.cpan.org/dist/Modern-Perl/")
5046 (synopsis
5047 "Enable all of the features of Modern Perl with one import")
5048 (description "@code{Modern::Perl} provides a simple way to enable
5049 multiple, by now, standard libraries in a Perl program.")
5050 (license (package-license perl))))
5051
5052 (define-public perl-module-build-tiny
5053 (package
5054 (name "perl-module-build-tiny")
5055 (version "0.039")
5056 (source
5057 (origin
5058 (method url-fetch)
5059 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
5060 "Module-Build-Tiny-" version ".tar.gz"))
5061 (sha256
5062 (base32
5063 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
5064 (build-system perl-build-system)
5065 (native-inputs
5066 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5067 ("perl-extutils-config" ,perl-extutils-config)
5068 ("perl-extutils-helpers" ,perl-extutils-helpers)
5069 ("perl-test-harness" ,perl-test-harness)))
5070 (propagated-inputs
5071 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5072 ("perl-extutils-config" ,perl-extutils-config)
5073 ("perl-extutils-helpers" ,perl-extutils-helpers)
5074 ("perl-test-harness" ,perl-test-harness)))
5075 (home-page "http://search.cpan.org/dist/Module-Build-Tiny/")
5076 (synopsis "Tiny replacement for Module::Build")
5077 (description "Many Perl distributions use a Build.PL file instead of a
5078 Makefile.PL file to drive distribution configuration, build, test and
5079 installation. Traditionally, Build.PL uses Module::Build as the underlying
5080 build system. This module provides a simple, lightweight, drop-in
5081 replacement. Whereas Module::Build has over 6,700 lines of code; this module
5082 has less than 120, yet supports the features needed by most distributions.")
5083 (license (package-license perl))))
5084
5085 (define-public perl-module-build-xsutil
5086 (package
5087 (name "perl-module-build-xsutil")
5088 (version "0.16")
5089 (source (origin
5090 (method url-fetch)
5091 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
5092 "Module-Build-XSUtil-" version ".tar.gz"))
5093 (sha256
5094 (base32
5095 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
5096 (build-system perl-build-system)
5097 (native-inputs
5098 `(("perl-capture-tiny" ,perl-capture-tiny)
5099 ("perl-cwd-guard" ,perl-cwd-guard)
5100 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
5101 ("perl-module-build" ,perl-module-build)))
5102 (propagated-inputs
5103 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
5104 (home-page "http://search.cpan.org/dist/Module-Build-XSUtil/")
5105 (synopsis "Module::Build class for building XS modules")
5106 (description
5107 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
5108 for support building XS modules.
5109
5110 This is a list of a new parameters in the @code{Module::Build::new} method:
5111
5112 @enumerate
5113 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
5114 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
5115 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
5116 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
5117 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
5118 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
5119 @file{ppport.h}, and defines some portability stuff which are not supported by
5120 @file{ppport.h}.
5121
5122 It is ported from @code{Module::Install::XSUtil}.
5123 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
5124 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
5125 debug options.
5126 @end enumerate")
5127 (license (package-license perl))))
5128
5129 (define-public perl-module-find
5130 (package
5131 (name "perl-module-find")
5132 (version "0.13")
5133 (source
5134 (origin
5135 (method url-fetch)
5136 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
5137 "Module-Find-" version ".tar.gz"))
5138 (sha256
5139 (base32
5140 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
5141 (build-system perl-build-system)
5142 (home-page "http://search.cpan.org/dist/Module-Find/")
5143 (synopsis "Find and use installed modules in a (sub)category")
5144 (description "Module::Find lets you find and use modules in categories.
5145 This can be useful for auto-detecting driver or plugin modules. You can
5146 differentiate between looking in the category itself or in all
5147 subcategories.")
5148 (license (package-license perl))))
5149
5150 (define-public perl-module-implementation
5151 (package
5152 (name "perl-module-implementation")
5153 (version "0.09")
5154 (source
5155 (origin
5156 (method url-fetch)
5157 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5158 "Module-Implementation-" version ".tar.gz"))
5159 (sha256
5160 (base32
5161 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
5162 (build-system perl-build-system)
5163 (native-inputs
5164 `(("perl-test-fatal" ,perl-test-fatal)
5165 ("perl-test-requires" ,perl-test-requires)))
5166 (propagated-inputs
5167 `(("perl-module-runtime" ,perl-module-runtime)
5168 ("perl-try-tiny" ,perl-try-tiny)))
5169 (home-page "http://search.cpan.org/dist/Module-Implementation/")
5170 (synopsis "Loads alternate underlying implementations for a module")
5171 (description "This module abstracts out the process of choosing one of
5172 several underlying implementations for a module. This can be used to provide
5173 XS and pure Perl implementations of a module, or it could be used to load an
5174 implementation for a given OS or any other case of needing to provide multiple
5175 implementations.")
5176 (license artistic2.0)))
5177
5178 (define-public perl-module-install
5179 (package
5180 (name "perl-module-install")
5181 (version "1.19")
5182 (source
5183 (origin
5184 (method url-fetch)
5185 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5186 "Module-Install-" version ".tar.gz"))
5187 (sha256
5188 (base32
5189 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
5190 (build-system perl-build-system)
5191 (native-inputs
5192 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
5193 (propagated-inputs
5194 `(("perl-archive-zip" ,perl-archive-zip)
5195 ("perl-file-homedir" ,perl-file-homedir)
5196 ("perl-file-remove" ,perl-file-remove)
5197 ("perl-json" ,perl-json)
5198 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
5199 ;; would cause a circular dependency with (gnu packages web), so we
5200 ;; leave it out. It may be resolved at runtime, however.
5201 ;("perl-libwww-perl" ,perl-libwww-perl)
5202 ("perl-module-scandeps" ,perl-module-scandeps)
5203 ("perl-par-dist" ,perl-par-dist)
5204 ("perl-yaml-tiny" ,perl-yaml-tiny)))
5205 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
5206 ;; character handling.
5207 (arguments `(#:tests? #f))
5208 (home-page "http://search.cpan.org/dist/Module-Install/")
5209 (synopsis "Standalone, extensible Perl module installer")
5210 (description "Module::Install is a package for writing installers for
5211 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
5212 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
5213 installation version 5.005 or newer.")
5214 (license (package-license perl))))
5215
5216 (define-public perl-module-pluggable
5217 (package
5218 (name "perl-module-pluggable")
5219 (version "5.2")
5220 (source
5221 (origin
5222 (method url-fetch)
5223 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
5224 "Module-Pluggable-" version ".tar.gz"))
5225 (sha256
5226 (base32
5227 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
5228 (patches (search-patches "perl-module-pluggable-search.patch"))))
5229 (build-system perl-build-system)
5230 (home-page "http://search.cpan.org/dist/Module-Pluggable/")
5231 (synopsis "Give your Perl module the ability to have plugins")
5232 (description "This module provides a simple but extensible way of having
5233 'plugins' for your Perl module.")
5234 (license (package-license perl))))
5235
5236 (define-public perl-module-runtime
5237 (package
5238 (name "perl-module-runtime")
5239 (version "0.014")
5240 (source
5241 (origin
5242 (method url-fetch)
5243 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
5244 "Module-Runtime-" version ".tar.gz"))
5245 (sha256
5246 (base32
5247 "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
5248 (build-system perl-build-system)
5249 (native-inputs `(("perl-module-build" ,perl-module-build)))
5250 (home-page "http://search.cpan.org/dist/Module-Runtime/")
5251 (synopsis "Perl runtime module handling")
5252 (description "The functions exported by this module deal with runtime
5253 handling of Perl modules, which are normally handled at compile time.")
5254 (license (package-license perl))))
5255
5256 (define-public perl-module-runtime-conflicts
5257 (package
5258 (name "perl-module-runtime-conflicts")
5259 (version "0.003")
5260 (source
5261 (origin
5262 (method url-fetch)
5263 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5264 "Module-Runtime-Conflicts-" version ".tar.gz"))
5265 (sha256
5266 (base32
5267 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
5268 (build-system perl-build-system)
5269 (native-inputs
5270 `(("perl-module-build" ,perl-module-build)))
5271 (propagated-inputs
5272 `(("perl-module-runtime" ,perl-module-runtime)
5273 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
5274 (home-page "http://search.cpan.org/dist/Module-Runtime-Conflicts/")
5275 (synopsis "Provide information on conflicts for Module::Runtime")
5276 (description "This module provides conflicts checking for Module::Runtime,
5277 which had a recent release that broke some versions of Moose. It is called
5278 from Moose::Conflicts and moose-outdated.")
5279 (license (package-license perl))))
5280
5281 (define-public perl-module-scandeps
5282 (package
5283 (name "perl-module-scandeps")
5284 (version "1.24")
5285 (source
5286 (origin
5287 (method url-fetch)
5288 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5289 "Module-ScanDeps-" version ".tar.gz"))
5290 (sha256
5291 (base32
5292 "0s6cj90ckhy351gql52ksh4ms1x8piv26iadl09fcpzkx7j0srw9"))))
5293 (build-system perl-build-system)
5294 (native-inputs
5295 `(("perl-test-requires" ,perl-test-requires)))
5296 (home-page "http://search.cpan.org/dist/Module-ScanDeps/")
5297 (synopsis "Recursively scan Perl code for dependencies")
5298 (description "Module::ScanDeps is a module to recursively scan Perl
5299 programs for dependencies.")
5300 (license (package-license perl))))
5301
5302 (define-public perl-module-util
5303 (package
5304 (name "perl-module-util")
5305 (version "1.09")
5306 (source
5307 (origin
5308 (method url-fetch)
5309 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
5310 "Module-Util-" version ".tar.gz"))
5311 (sha256
5312 (base32
5313 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
5314 (build-system perl-build-system)
5315 (native-inputs
5316 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
5317 (home-page "http://search.cpan.org/dist/Module-Util/")
5318 (synopsis "Module name tools and transformations")
5319 (description "This module provides a few useful functions for manipulating
5320 module names. Its main aim is to centralise some of the functions commonly
5321 used by modules that manipulate other modules in some way, like converting
5322 module names to relative paths.")
5323 (license (package-license perl))))
5324
5325 (define-public perl-moo
5326 (package
5327 (name "perl-moo")
5328 (version "1.007000")
5329 (source
5330 (origin
5331 (method url-fetch)
5332 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5333 "Moo-" version ".tar.gz"))
5334 (sha256
5335 (base32
5336 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
5337 (build-system perl-build-system)
5338 (native-inputs
5339 `(("perl-test-fatal" ,perl-test-fatal)))
5340 (propagated-inputs
5341 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
5342 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
5343 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5344 ("perl-import-into" ,perl-import-into)
5345 ("perl-module-runtime" ,perl-module-runtime)
5346 ("perl-role-tiny" ,perl-role-tiny)
5347 ("perl-strictures" ,perl-strictures)))
5348 (home-page "http://search.cpan.org/dist/Moo/")
5349 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
5350 (description "Moo is an extremely light-weight Object Orientation system.
5351 It allows one to concisely define objects and roles with a convenient syntax
5352 that avoids the details of Perl's object system. Moo contains a subset of
5353 Moose and is optimised for rapid startup.")
5354 (license (package-license perl))))
5355
5356 ;; Some packages don't yet work with this newer version of ‘Moo’.
5357 (define-public perl-moo-2
5358 (package
5359 (inherit perl-moo)
5360 (name "perl-moo-2")
5361 (version "2.003004")
5362 (source
5363 (origin
5364 (method url-fetch)
5365 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5366 "Moo-" version ".tar.gz"))
5367 (sha256
5368 (base32
5369 "1qciprcgb4661g2g4ks0fxkx5gbjvn7h9yfg0nzflqz9z0jvdfzq"))))
5370 (propagated-inputs
5371 `(("perl-role-tiny" ,perl-role-tiny-2)
5372 ("perl-sub-name" ,perl-sub-name)
5373 ("perl-sub-quote" ,perl-sub-quote)
5374 ("perl-strictures" ,perl-strictures-2)
5375 ,@(alist-delete "perl-strictures"
5376 (alist-delete "perl-role-tiny"
5377 (package-propagated-inputs perl-moo)))))
5378 (arguments
5379 `(#:phases
5380 (modify-phases %standard-phases
5381 (add-before 'configure 'set-perl-search-path
5382 (lambda _
5383 ;; Use perl-strictures for testing.
5384 (setenv "MOO_FATAL_WARNINGS" "=1")
5385 #t)))))))
5386
5387 (define-public perl-moose
5388 (package
5389 (name "perl-moose")
5390 (version "2.2004")
5391 (source (origin
5392 (method url-fetch)
5393 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5394 "Moose-" version ".tar.gz"))
5395 (sha256
5396 (base32
5397 "1c6jx2lnrh2mi9wlj2c0sirj6345xmbpr34ax8d85mcginzq3j74"))))
5398 (build-system perl-build-system)
5399 (native-inputs
5400 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5401 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5402 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
5403 ("perl-test-fatal" ,perl-test-fatal)
5404 ("perl-test-requires" ,perl-test-requires)
5405 ("perl-test-warnings" ,perl-test-warnings)))
5406 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
5407 ;; # === Other Modules ===
5408 ;; #
5409 ;; # Module Want Have
5410 ;; # ---------------------------- ---- -------
5411 ;; # Algorithm::C3 any missing
5412 ;; # DBM::Deep any missing
5413 ;; # DateTime any missing
5414 ;; # DateTime::Calendar::Mayan any missing
5415 ;; # DateTime::Format::MySQL any missing
5416 ;; # Declare::Constraints::Simple any missing
5417 ;; # Dist::CheckConflicts any 0.11
5418 ;; # HTTP::Headers any missing
5419 ;; # IO::File any 1.16
5420 ;; # IO::String any missing
5421 ;; # Locale::US any missing
5422 ;; # Module::Refresh any missing
5423 ;; # MooseX::NonMoose any missing
5424 ;; # Params::Coerce any missing
5425 ;; # Regexp::Common any missing
5426 ;; # SUPER any missing
5427 ;; # Test::Deep any missing
5428 ;; # Test::DependentModules any missing
5429 ;; # Test::LeakTrace any missing
5430 ;; # Test::Output any missing
5431 ;; # URI any missing
5432 (propagated-inputs
5433 `(("perl-class-load" ,perl-class-load)
5434 ("perl-class-load-xs" ,perl-class-load-xs)
5435 ("perl-data-optlist" ,perl-data-optlist)
5436 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5437 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
5438 ("perl-devel-partialdump" ,perl-devel-partialdump)
5439 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
5440 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5441 ("perl-eval-closure" ,perl-eval-closure)
5442 ("perl-list-moreutils" ,perl-list-moreutils)
5443 ("perl-module-runtime" ,perl-module-runtime)
5444 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
5445 ("perl-mro-compat" ,perl-mro-compat)
5446 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
5447 ("perl-package-stash" ,perl-package-stash)
5448 ("perl-package-stash-xs" ,perl-package-stash-xs)
5449 ("perl-params-util" ,perl-params-util)
5450 ("perl-parent" ,perl-parent)
5451 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
5452 ("perl-sub-exporter" ,perl-sub-exporter)
5453 ("perl-sub-name" ,perl-sub-name)
5454 ("perl-task-weaken" ,perl-task-weaken)
5455 ("perl-try-tiny" ,perl-try-tiny)))
5456 (home-page "http://search.cpan.org/dist/Moose/")
5457 (synopsis "Postmodern object system for Perl 5")
5458 (description
5459 "Moose is a complete object system for Perl 5. It provides keywords for
5460 attribute declaration, object construction, inheritance, and maybe more. With
5461 Moose, you define your class declaratively, without needing to know about
5462 blessed hashrefs, accessor methods, and so on. You can concentrate on the
5463 logical structure of your classes, focusing on \"what\" rather than \"how\".
5464 A class definition with Moose reads like a list of very concise English
5465 sentences.")
5466 (license (package-license perl))))
5467
5468 (define-public perl-moosex-emulate-class-accessor-fast
5469 (package
5470 (name "perl-moosex-emulate-class-accessor-fast")
5471 (version "0.00903")
5472 (source
5473 (origin
5474 (method url-fetch)
5475 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
5476 "MooseX-Emulate-Class-Accessor-Fast-"
5477 version ".tar.gz"))
5478 (sha256
5479 (base32
5480 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
5481 (build-system perl-build-system)
5482 (native-inputs
5483 `(("perl-module-install" ,perl-module-install)
5484 ("perl-test-exception" ,perl-test-exception)))
5485 (propagated-inputs
5486 `(("perl-moose" ,perl-moose)))
5487 (home-page "http://search.cpan.org/dist/MooseX-Emulate-Class-Accessor-Fast/")
5488 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
5489 (description "This module attempts to emulate the behavior of
5490 Class::Accessor::Fast as accurately as possible using the Moose attribute
5491 system. The public API of Class::Accessor::Fast is wholly supported, but the
5492 private methods are not.")
5493 (license (package-license perl))))
5494
5495 (define-public perl-moosex-getopt
5496 (package
5497 (name "perl-moosex-getopt")
5498 (version "0.71")
5499 (source
5500 (origin
5501 (method url-fetch)
5502 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5503 "MooseX-Getopt-" version ".tar.gz"))
5504 (sha256
5505 (base32
5506 "0nf2094qgir0irxjycwqavy53ygm530g9f7cxfywnl2n1bmgh66y"))))
5507 (build-system perl-build-system)
5508 (native-inputs
5509 `(("perl-module-build" ,perl-module-build)
5510 ("perl-test-deep" ,perl-test-deep)
5511 ("perl-test-fatal" ,perl-test-fatal)
5512 ("perl-test-requires" ,perl-test-requires)
5513 ("perl-test-trap" ,perl-test-trap)
5514 ("perl-test-warnings" ,perl-test-warnings)))
5515 (propagated-inputs
5516 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
5517 ("perl-moose" ,perl-moose)
5518 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
5519 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5520 (home-page "http://search.cpan.org/dist/MooseX-Getopt/")
5521 (synopsis "Moose role for processing command line options")
5522 (description "This is a Moose role which provides an alternate constructor
5523 for creating objects using parameters passed in from the command line.")
5524 (license (package-license perl))))
5525
5526 (define-public perl-moosex-markasmethods
5527 (package
5528 (name "perl-moosex-markasmethods")
5529 (version "0.15")
5530 (source
5531 (origin
5532 (method url-fetch)
5533 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
5534 "MooseX-MarkAsMethods-" version ".tar.gz"))
5535 (sha256
5536 (base32
5537 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
5538 (build-system perl-build-system)
5539 (inputs
5540 `(("perl-moose" ,perl-moose)
5541 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5542 (home-page "http://search.cpan.org/dist/MooseX-MarkAsMethods/")
5543 (synopsis "Mark overload code symbols as methods")
5544 (description "MooseX::MarkAsMethods allows one to easily mark certain
5545 functions as Moose methods. This will allow other packages such as
5546 namespace::autoclean to operate without blowing away your overloads. After
5547 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
5548 being methods, and class extension as well as composition from roles with
5549 overloads will \"just work\".")
5550 (license lgpl2.1)))
5551
5552 (define-public perl-moosex-methodattributes
5553 (package
5554 (name "perl-moosex-methodattributes")
5555 (version "0.31")
5556 (source
5557 (origin
5558 (method url-fetch)
5559 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5560 "MooseX-MethodAttributes-" version ".tar.gz"))
5561 (sha256
5562 (base32
5563 "1whd10w7bm3dwaj7gpgw40bci9vvb2zmxs4349ifji91hvinwqck"))))
5564 (build-system perl-build-system)
5565 (native-inputs
5566 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5567 ("perl-test-fatal" ,perl-test-fatal)
5568 ("perl-test-requires" ,perl-test-requires)))
5569 (propagated-inputs
5570 `(("perl-moose" ,perl-moose)
5571 ("perl-moosex-types" ,perl-moosex-types)
5572 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5573 (home-page "http://search.cpan.org/dist/MooseX-MethodAttributes/")
5574 (synopsis "Code attribute introspection")
5575 (description "This module allows code attributes of methods to be
5576 introspected using Moose meta method objects.")
5577 (license (package-license perl))))
5578
5579 (define-public perl-moosex-nonmoose
5580 (package
5581 (name "perl-moosex-nonmoose")
5582 (version "0.26")
5583 (source
5584 (origin
5585 (method url-fetch)
5586 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5587 "MooseX-NonMoose-" version ".tar.gz"))
5588 (sha256
5589 (base32
5590 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
5591 (build-system perl-build-system)
5592 (native-inputs
5593 `(("perl-moose" ,perl-moose)
5594 ("perl-test-fatal" ,perl-test-fatal)))
5595 (propagated-inputs
5596 `(("perl-list-moreutils" ,perl-list-moreutils)
5597 ("perl-module-runtime" ,perl-module-runtime)
5598 ("perl-moose" ,perl-moose)
5599 ("perl-try-tiny" ,perl-try-tiny)))
5600 (home-page "http://search.cpan.org/dist/MooseX-NonMoose/")
5601 (synopsis "Subclassing of non-Moose classes")
5602 (description "MooseX::NonMoose allows for easily subclassing non-Moose
5603 classes with Moose, taking care of the details connected with doing this, such
5604 as setting up proper inheritance from Moose::Object and installing (and
5605 inlining, at make_immutable time) a constructor that makes sure things like
5606 BUILD methods are called. It tries to be as non-intrusive as possible.")
5607 (license (package-license perl))))
5608
5609 (define-public perl-moosex-params-validate
5610 (package
5611 (name "perl-moosex-params-validate")
5612 (version "0.19")
5613 (source
5614 (origin
5615 (method url-fetch)
5616 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5617 "MooseX-Params-Validate-" version ".tar.gz"))
5618 (sha256
5619 (base32
5620 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
5621 (build-system perl-build-system)
5622 (native-inputs
5623 `(("perl-moose" ,perl-moose)
5624 ("perl-test-fatal" ,perl-test-fatal)))
5625 (propagated-inputs
5626 `(("perl-devel-caller" ,perl-devel-caller)
5627 ("perl-moose" ,perl-moose)
5628 ("perl-params-validate" ,perl-params-validate)
5629 ("perl-sub-exporter" ,perl-sub-exporter)))
5630 (home-page "http://search.cpan.org/dist/MooseX-Params-Validate/")
5631 (synopsis "Extension of Params::Validate using Moose's types")
5632 (description "This module fills a gap in Moose by adding method parameter
5633 validation to Moose.")
5634 (license (package-license perl))))
5635
5636 (define-public perl-moosex-relatedclassroles
5637 (package
5638 (name "perl-moosex-relatedclassroles")
5639 (version "0.004")
5640 (source
5641 (origin
5642 (method url-fetch)
5643 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
5644 "MooseX-RelatedClassRoles-" version ".tar.gz"))
5645 (sha256
5646 (base32
5647 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
5648 (build-system perl-build-system)
5649 (propagated-inputs
5650 `(("perl-moose" ,perl-moose)
5651 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
5652 (home-page "http://search.cpan.org/dist/MooseX-RelatedClassRoles/")
5653 (synopsis "Apply roles to a related Perl class")
5654 (description "This module applies roles to make a subclass instead of
5655 manually setting up a subclass.")
5656 (license (package-license perl))))
5657
5658 (define-public perl-moosex-role-parameterized
5659 (package
5660 (name "perl-moosex-role-parameterized")
5661 (version "1.08")
5662 (source
5663 (origin
5664 (method url-fetch)
5665 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5666 "MooseX-Role-Parameterized-" version ".tar.gz"))
5667 (sha256
5668 (base32
5669 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
5670 (build-system perl-build-system)
5671 (native-inputs
5672 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5673 ("perl-module-build" ,perl-module-build)
5674 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
5675 ("perl-test-fatal" ,perl-test-fatal)
5676 ("perl-test-requires" ,perl-test-requires)))
5677 (propagated-inputs
5678 `(("perl-moose" ,perl-moose)
5679 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5680 (home-page "http://search.cpan.org/dist/MooseX-Role-Parameterized/")
5681 (synopsis "Moose roles with composition parameters")
5682 (description "Because Moose roles serve many different masters, they
5683 usually provide only the least common denominator of functionality. To
5684 empower roles further, more configurability than -alias and -excludes is
5685 required. Perhaps your role needs to know which method to call when it is
5686 done processing, or what default value to use for its url attribute.
5687 Parameterized roles offer a solution to these (and other) kinds of problems.")
5688 (license (package-license perl))))
5689
5690 (define-public perl-moosex-role-withoverloading
5691 (package
5692 (name "perl-moosex-role-withoverloading")
5693 (version "0.16")
5694 (source
5695 (origin
5696 (method url-fetch)
5697 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5698 "MooseX-Role-WithOverloading-" version ".tar.gz"))
5699 (sha256
5700 (base32
5701 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
5702 (build-system perl-build-system)
5703 (propagated-inputs
5704 `(("perl-aliased" ,perl-aliased)
5705 ("perl-moose" ,perl-moose)
5706 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5707 (home-page "http://search.cpan.org/dist/MooseX-Role-WithOverloading/")
5708 (synopsis "Roles which support overloading")
5709 (description "MooseX::Role::WithOverloading allows you to write a
5710 Moose::Role which defines overloaded operators and allows those overload
5711 methods to be composed into the classes/roles/instances it's compiled to,
5712 where plain Moose::Roles would lose the overloading.")
5713 (license (package-license perl))))
5714
5715 (define-public perl-moosex-semiaffordanceaccessor
5716 (package
5717 (name "perl-moosex-semiaffordanceaccessor")
5718 (version "0.10")
5719 (source
5720 (origin
5721 (method url-fetch)
5722 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5723 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
5724 (sha256
5725 (base32
5726 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
5727 (build-system perl-build-system)
5728 (propagated-inputs
5729 `(("perl-moose" ,perl-moose)))
5730 (home-page "http://search.cpan.org/dist/MooseX-SemiAffordanceAccessor/")
5731 (synopsis "Name your accessors foo() and set_foo()")
5732 (description "This module does not provide any methods. Simply loading it
5733 changes the default naming policy for the loading class so that accessors are
5734 separated into get and set methods. The get methods have the same name as the
5735 accessor, while set methods are prefixed with \"_set_\".")
5736 (license artistic2.0)))
5737
5738 (define-public perl-moosex-strictconstructor
5739 (package
5740 (name "perl-moosex-strictconstructor")
5741 (version "0.19")
5742 (source
5743 (origin
5744 (method url-fetch)
5745 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5746 "MooseX-StrictConstructor-" version ".tar.gz"))
5747 (sha256
5748 (base32
5749 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
5750 (build-system perl-build-system)
5751 (native-inputs
5752 `(("perl-moose" ,perl-moose)
5753 ("perl-test-fatal" ,perl-test-fatal)))
5754 (propagated-inputs
5755 `(("perl-moose" ,perl-moose)
5756 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5757 (home-page "http://search.cpan.org/dist/MooseX-StrictConstructor/")
5758 (synopsis "Strict object constructors for Moose")
5759 (description "Simply loading this module makes your constructors
5760 \"strict\". If your constructor is called with an attribute init argument
5761 that your class does not declare, then it calls Moose->throw_error().")
5762 (license artistic2.0)))
5763
5764 (define-public perl-moosex-traits-pluggable
5765 (package
5766 (name "perl-moosex-traits-pluggable")
5767 (version "0.12")
5768 (source
5769 (origin
5770 (method url-fetch)
5771 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
5772 "MooseX-Traits-Pluggable-" version ".tar.gz"))
5773 (sha256
5774 (base32
5775 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
5776 (build-system perl-build-system)
5777 (native-inputs
5778 `(("perl-moose" ,perl-moose)
5779 ("perl-test-exception" ,perl-test-exception)))
5780 (propagated-inputs
5781 `(("perl-class-load" ,perl-class-load)
5782 ("perl-list-moreutils" ,perl-list-moreutils)
5783 ("perl-moose" ,perl-moose)
5784 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5785 (home-page
5786 "http://search.cpan.org/dist/MooseX-Traits-Pluggable/")
5787 (synopsis "Trait loading and resolution for Moose")
5788 (description "Adds support on top of MooseX::Traits for class precedence
5789 search for traits and some extra attributes.")
5790 (license (package-license perl))))
5791
5792 (define-public perl-moosex-types
5793 (package
5794 (name "perl-moosex-types")
5795 (version "0.45")
5796 (source
5797 (origin
5798 (method url-fetch)
5799 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5800 "MooseX-Types-" version ".tar.gz"))
5801 (sha256
5802 (base32
5803 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
5804 (build-system perl-build-system)
5805 (native-inputs
5806 `(("perl-module-build" ,perl-module-build)
5807 ("perl-test-fatal" ,perl-test-fatal)
5808 ("perl-test-requires" ,perl-test-requires)))
5809 (propagated-inputs
5810 `(("perl-carp-clan" ,perl-carp-clan)
5811 ("perl-moose" ,perl-moose)
5812 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5813 (home-page "http://search.cpan.org/dist/MooseX-Types/")
5814 (synopsis "Organise your Moose types in libraries")
5815 (description "This package lets you declare types using short names, but
5816 behind the scenes it namespaces all your type declarations, effectively
5817 prevent name clashes between packages.")
5818 (license (package-license perl))))
5819
5820 (define-public perl-moosex-types-datetime
5821 (package
5822 (name "perl-moosex-types-datetime")
5823 (version "0.13")
5824 (source
5825 (origin
5826 (method url-fetch)
5827 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5828 "MooseX-Types-DateTime-" version ".tar.gz"))
5829 (sha256
5830 (base32
5831 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
5832 (build-system perl-build-system)
5833 (native-inputs
5834 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5835 ("perl-moose" ,perl-moose)
5836 ("perl-test-fatal" ,perl-test-fatal)
5837 ("perl-test-simple" ,perl-test-simple)))
5838 (propagated-inputs
5839 `(("perl-datetime" ,perl-datetime)
5840 ("perl-datetime-locale" ,perl-datetime-locale)
5841 ("perl-datetime-timezone" ,perl-datetime-timezone)
5842 ("perl-moose" ,perl-moose)
5843 ("perl-moosex-types" ,perl-moosex-types)
5844 ("perl-namespace-clean" ,perl-namespace-clean)))
5845 (home-page "http://search.cpan.org/dist/MooseX-Types-DateTime/")
5846 (synopsis "DateTime related constraints and coercions for Moose")
5847 (description "This module packages several Moose::Util::TypeConstraints
5848 with coercions, designed to work with the DateTime suite of objects.")
5849 (license (package-license perl))))
5850
5851 (define-public perl-moosex-types-datetime-morecoercions
5852 (package
5853 (name "perl-moosex-types-datetime-morecoercions")
5854 (version "0.14")
5855 (source
5856 (origin
5857 (method url-fetch)
5858 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5859 "MooseX-Types-DateTime-MoreCoercions-"
5860 version ".tar.gz"))
5861 (sha256
5862 (base32
5863 "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
5864 (build-system perl-build-system)
5865 (native-inputs
5866 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5867 ("perl-test-fatal" ,perl-test-fatal)
5868 ("perl-test-simple" ,perl-test-simple)))
5869 (propagated-inputs
5870 `(("perl-datetime" ,perl-datetime)
5871 ("perl-datetimex-easy" ,perl-datetimex-easy)
5872 ("perl-moose" ,perl-moose)
5873 ("perl-moosex-types" ,perl-moosex-types)
5874 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
5875 ("perl-namespace-clean" ,perl-namespace-clean)
5876 ("perl-time-duration-parse" ,perl-time-duration-parse)))
5877 (home-page
5878 "http://search.cpan.org/dist/MooseX-Types-DateTime-MoreCoercions/")
5879 (synopsis "Extensions to MooseX::Types::DateTime")
5880 (description "This module builds on MooseX::Types::DateTime to add
5881 additional custom types and coercions. Since it builds on an existing type,
5882 all coercions and constraints are inherited.")
5883 (license (package-license perl))))
5884
5885 (define-public perl-moosex-types-loadableclass
5886 (package
5887 (name "perl-moosex-types-loadableclass")
5888 (version "0.013")
5889 (source
5890 (origin
5891 (method url-fetch)
5892 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5893 "MooseX-Types-LoadableClass-" version ".tar.gz"))
5894 (sha256
5895 (base32
5896 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
5897 (build-system perl-build-system)
5898 (native-inputs
5899 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5900 ("perl-namespace-clean" ,perl-namespace-clean)
5901 ("perl-moose" ,perl-moose)
5902 ("perl-test-fatal" ,perl-test-fatal)
5903 ("perl-class-load" ,perl-class-load)))
5904 (propagated-inputs
5905 `(("perl-module-runtime" ,perl-module-runtime)
5906 ("perl-moosex-types" ,perl-moosex-types)
5907 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5908 (home-page "http://search.cpan.org/dist/MooseX-Types-LoadableClass/")
5909 (synopsis "ClassName type constraints for Moose")
5910 (description "MooseX::Types::LoadableClass provides a ClassName type
5911 constraint with coercion to load the class.")
5912 (license (package-license perl))))
5913
5914 (define-public perl-moox
5915 (package
5916 (name "perl-moox")
5917 (version "0.101")
5918 (source
5919 (origin
5920 (method url-fetch)
5921 (uri (string-append
5922 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
5923 version
5924 ".tar.gz"))
5925 (sha256
5926 (base32
5927 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
5928 (build-system perl-build-system)
5929 (inputs
5930 `(("perl-data-optlist" ,perl-data-optlist)
5931 ("perl-import-into" ,perl-import-into)
5932 ("perl-module-runtime" ,perl-module-runtime)
5933 ("perl-moo" ,perl-moo)))
5934 (home-page "http://search.cpan.org/dist/MooX/")
5935 (synopsis
5936 "Using Moo and MooX:: packages the most lazy way")
5937 (description "Contains the MooX and MooX::Role packages.")
5938 (license perl-license)))
5939
5940 (define-public perl-moox-cmd
5941 (package
5942 (name "perl-moox-cmd")
5943 (version "0.015")
5944 (source
5945 (origin
5946 (method url-fetch)
5947 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
5948 version ".tar.gz"))
5949 (sha256
5950 (base32
5951 "0145ha8vnc6sbg82ps96wj716bznq2qamm657bia9ji2yxhbnsam"))))
5952 (build-system perl-build-system)
5953 (native-inputs
5954 `(("perl-capture-tiny" ,perl-capture-tiny)
5955 ("perl-list-moreutils" ,perl-list-moreutils)))
5956 (propagated-inputs
5957 `(("perl-module-pluggable" ,perl-module-pluggable)
5958 ("perl-module-runtime" ,perl-module-runtime)
5959 ("perl-moo" ,perl-moo)
5960 ("perl-package-stash" ,perl-package-stash)
5961 ("perl-params-util" ,perl-params-util)
5962 ("perl-regexp-common" ,perl-regexp-common)))
5963 (home-page "http://search.cpan.org/dist/MooX-Cmd")
5964 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
5965 (description "This package eases the writing of command line utilities,
5966 accepting commands and subcommands and so on. These commands can form a tree,
5967 which is mirrored in the package structure. On invocation, each command along
5968 the path through the tree (starting from the top-level command through to the
5969 most specific one) is instantiated.")
5970 (license (package-license perl))))
5971
5972 (define-public perl-moox-configfromfile
5973 (package
5974 (name "perl-moox-configfromfile")
5975 (version "0.008")
5976 (source
5977 (origin
5978 (method url-fetch)
5979 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
5980 "MooX-ConfigFromFile-" version ".tar.gz"))
5981 (sha256
5982 (base32
5983 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
5984 (build-system perl-build-system)
5985 (native-inputs
5986 `(("perl-hash-merge" ,perl-hash-merge)
5987 ("perl-json" ,perl-json)
5988 ("perl-moox-cmd" ,perl-moox-cmd)))
5989 (propagated-inputs
5990 `(("perl-config-any" ,perl-config-any)
5991 ("perl-file-configdir" ,perl-file-configdir)
5992 ("perl-file-find-rule" ,perl-file-find-rule)
5993 ("perl-hash-merge" ,perl-hash-merge)
5994 ("perl-moo" ,perl-moo)
5995 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
5996 ("perl-namespace-clean" ,perl-namespace-clean)))
5997 (home-page "http://search.cpan.org/dist/MooX-ConfigFromFile/")
5998 (synopsis "Moo eXtension for initializing objects from config file")
5999 (description "This module is intended to easily load initialization values
6000 for attributes on object construction from an appropriate config file. The
6001 building is done in @code{MooX::ConfigFromFile::Role}---using
6002 @code{MooX::ConfigFromFile} ensures that the role is applied.")
6003 (license (package-license perl))))
6004
6005 (define-public perl-moox-file-configdir
6006 (package
6007 (name "perl-moox-file-configdir")
6008 (version "0.007")
6009 (source
6010 (origin
6011 (method url-fetch)
6012 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6013 "MooX-File-ConfigDir-" version ".tar.gz"))
6014 (sha256
6015 (base32
6016 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
6017 (build-system perl-build-system)
6018 (propagated-inputs
6019 `(("perl-file-configdir" ,perl-file-configdir)
6020 ("perl-moo" ,perl-moo)
6021 ("perl-namespace-clean" ,perl-namespace-clean)))
6022 (home-page "http://search.cpan.org/dist/MooX-File-ConfigDir/")
6023 (synopsis "Moo eXtension for @code{File::ConfigDir}")
6024 (description "This module is a helper for easily finding configuration
6025 file locations. This information can be used to find a suitable place for
6026 installing configuration files or for finding any piece of settings.")
6027 (license (package-license perl))))
6028
6029 (define-public perl-moox-handlesvia
6030 (package
6031 (name "perl-moox-handlesvia")
6032 (version "0.001008")
6033 (source
6034 (origin
6035 (method url-fetch)
6036 (uri (string-append
6037 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
6038 version
6039 ".tar.gz"))
6040 (sha256
6041 (base32
6042 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
6043 (build-system perl-build-system)
6044 (native-inputs
6045 `(("perl-moox-types-mooselike"
6046 ,perl-moox-types-mooselike)
6047 ("perl-test-exception" ,perl-test-exception)
6048 ("perl-test-fatal" ,perl-test-fatal)))
6049 (inputs
6050 `(("perl-class-method-modifiers"
6051 ,perl-class-method-modifiers)
6052 ("perl-module-runtime" ,perl-module-runtime)
6053 ("perl-moo" ,perl-moo)
6054 ("perl-role-tiny" ,perl-role-tiny)))
6055 (propagated-inputs
6056 `(("perl-data-perl" ,perl-data-perl)))
6057 (home-page
6058 "http://search.cpan.org/dist/MooX-HandlesVia/")
6059 (synopsis "NativeTrait-like behavior for Moo")
6060 (description
6061 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
6062 attribute functionality. It provides a means of proxying functionality from
6063 an external class to the given atttribute.")
6064 (license perl-license)))
6065
6066 (define-public perl-moox-late
6067 (package
6068 (name "perl-moox-late")
6069 (version "0.015")
6070 (source
6071 (origin
6072 (method url-fetch)
6073 (uri (string-append
6074 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
6075 version
6076 ".tar.gz"))
6077 (sha256
6078 (base32
6079 "1gzvd9zws3v09sh0xx6srmw4jwi22fnrya4zcsc8dykn62pjclqp"))))
6080 (build-system perl-build-system)
6081 (native-inputs
6082 `(("perl-test-fatal" ,perl-test-fatal)
6083 ("perl-test-requires" ,perl-test-requires)))
6084 (inputs
6085 `(("perl-moo" ,perl-moo)
6086 ("perl-moox" ,perl-moox)
6087 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
6088 (propagated-inputs
6089 `(("perl-type-tiny" ,perl-type-tiny)))
6090 (home-page
6091 "http://search.cpan.org/dist/MooX-late/")
6092 (synopsis "Easily translate Moose code to Moo")
6093 (description
6094 "MooX::late does the following:
6095 @enumerate
6096 @item Supports isa => $stringytype
6097 @item Supports does => $rolename
6098 @item Supports lazy_build => 1
6099 @item Exports blessed and confess functions to your namespace.
6100 @item Handles certain attribute traits
6101 Currently Hash, Array and Code are supported. This feature requires
6102 MooX::HandlesVia.
6103 @end enumerate")
6104 (license perl-license)))
6105
6106 (define-public perl-moox-options
6107 (package
6108 (name "perl-moox-options")
6109 (version "4.023")
6110 (source
6111 (origin
6112 (method url-fetch)
6113 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
6114 "MooX-Options-" version ".tar.gz"))
6115 (sha256
6116 (base32
6117 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
6118 (build-system perl-build-system)
6119 (native-inputs
6120 `(("perl-capture-tiny" ,perl-capture-tiny)
6121 ("perl-import-into" ,perl-import-into)
6122 ("perl-module-build" ,perl-module-build)
6123 ("perl-moo" ,perl-moo)
6124 ("perl-moose" ,perl-moose)
6125 ("perl-moox-cmd" ,perl-moox-cmd)
6126 ("perl-namespace-clean" ,perl-namespace-clean)
6127 ("perl-role-tiny" ,perl-role-tiny)
6128 ("perl-test-requires" ,perl-test-requires)
6129 ("perl-test-trap" ,perl-test-trap)
6130 ("perl-test-pod" ,perl-test-pod)
6131 ("perl-try-tiny" ,perl-try-tiny)))
6132 (propagated-inputs
6133 `(("perl-config-any" ,perl-config-any)
6134 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6135 ("perl-data-record" ,perl-data-record)
6136 ("perl-file-configdir" ,perl-file-configdir)
6137 ("perl-file-find-rule" ,perl-file-find-rule)
6138 ("perl-file-sharedir" ,perl-file-sharedir)
6139 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6140 ("perl-json-maybexs" ,perl-json-maybexs)
6141 ("perl-libintl-perl" ,perl-libintl-perl)
6142 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6143 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6144 ("perl-path-class" ,perl-path-class)
6145 ("perl-regexp-common" ,perl-regexp-common)
6146 ("perl-term-size-any" ,perl-term-size-any)
6147 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
6148 (home-page "http://search.cpan.org/dist/MooX-Options/")
6149 (synopsis "Explicit Options eXtension for Object Class")
6150 (description "Create a command line tool with your Mo, Moo, Moose objects.
6151 You have an @code{option} keyword to replace the usual @code{has} to
6152 explicitly use your attribute on the command line. The @code{option} keyword
6153 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
6154 generate a command line tool.")
6155 (license (package-license perl))))
6156
6157 (define-public perl-moox-types-mooselike
6158 (package
6159 (name "perl-moox-types-mooselike")
6160 (version "0.28")
6161 (source
6162 (origin
6163 (method url-fetch)
6164 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
6165 "MooX-Types-MooseLike-" version ".tar.gz"))
6166 (sha256
6167 (base32
6168 "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
6169 (build-system perl-build-system)
6170 (native-inputs
6171 `(("perl-moo" ,perl-moo)
6172 ("perl-test-fatal" ,perl-test-fatal)))
6173 (propagated-inputs
6174 `(("perl-module-runtime" ,perl-module-runtime)
6175 ("perl-strictures" ,perl-strictures)))
6176 (home-page "http://search.cpan.org/dist/MooX-Types-MooseLike/")
6177 (synopsis "Moosish types and type builder")
6178 (description "MooX::Types::MooseLike provides a possibility to build your
6179 own set of Moose-like types. These custom types can then be used to describe
6180 fields in Moo-based classes.")
6181 (license (package-license perl))))
6182
6183 (define-public perl-mouse
6184 (package
6185 (name "perl-mouse")
6186 (version "2.4.9")
6187 (source (origin
6188 (method url-fetch)
6189 (uri (string-append
6190 "mirror://cpan/authors/id/S/SY/SYOHEX/Mouse-v"
6191 version
6192 ".tar.gz"))
6193 (sha256
6194 (base32
6195 "1y20sl97x1h4y1iid47hj0w1hb2887dchh4nfffgmqpyggkslh4n"))))
6196 (build-system perl-build-system)
6197 (native-inputs
6198 `(("perl-module-build" ,perl-module-build)
6199 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
6200 ("perl-test-exception" ,perl-test-exception)
6201 ("perl-test-fatal" ,perl-test-fatal)
6202 ("perl-test-leaktrace" ,perl-test-leaktrace)
6203 ("perl-test-output" ,perl-test-output)
6204 ("perl-test-requires" ,perl-test-requires)
6205 ("perl-try-tiny" ,perl-try-tiny)))
6206 (home-page "https://github.com/gfx/p5-Mouse")
6207 (synopsis "Fast Moose-compatible object system for perl5")
6208 (description
6209 "Mouse is a @code{Moose} compatible object system that implements a
6210 subset of the functionality for reduced startup time.")
6211 (license (package-license perl))))
6212
6213 (define-public perl-mousex-nativetraits
6214 (package
6215 (name "perl-mousex-nativetraits")
6216 (version "1.09")
6217 (source (origin
6218 (method url-fetch)
6219 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
6220 "MouseX-NativeTraits-" version ".tar.gz"))
6221 (sha256
6222 (base32
6223 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
6224 (build-system perl-build-system)
6225 (native-inputs
6226 `(("perl-any-moose" ,perl-any-moose)
6227 ("perl-module-install" ,perl-module-install)
6228 ("perl-test-fatal" ,perl-test-fatal)))
6229 (propagated-inputs
6230 `(("perl-mouse" ,perl-mouse)))
6231 (home-page "http://search.cpan.org/dist/MouseX-NativeTraits/")
6232 (synopsis "Extend attribute interfaces for Mouse")
6233 (description
6234 "While @code{Mouse} attributes provide a way to name your accessors,
6235 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
6236 provides commonly used attribute helper methods for more specific types
6237 of data.")
6238 (license (package-license perl))))
6239
6240 (define-public perl-mozilla-ca
6241 (package
6242 (name "perl-mozilla-ca")
6243 (version "20180117")
6244 (source
6245 (origin
6246 (method url-fetch)
6247 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
6248 version ".tar.gz"))
6249 (sha256
6250 (base32
6251 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
6252 (build-system perl-build-system)
6253 (home-page "http://search.cpan.org/dist/Mozilla-CA/")
6254 (synopsis "Mozilla's CA cert bundle in PEM format")
6255 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
6256 Certificate Authority certificates in a form that can be consumed by modules
6257 and libraries based on OpenSSL.")
6258 (license mpl2.0)))
6259
6260 (define-public perl-multidimensional
6261 (package
6262 (name "perl-multidimensional")
6263 (version "0.014")
6264 (source
6265 (origin
6266 (method url-fetch)
6267 (uri (string-append
6268 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
6269 version ".tar.gz"))
6270 (sha256
6271 (base32
6272 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
6273 (build-system perl-build-system)
6274 (native-inputs
6275 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6276 ("perl-extutils-depends" ,perl-extutils-depends)))
6277 (propagated-inputs
6278 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6279 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
6280 (home-page "http://search.cpan.org/dist/multidimensional/")
6281 (synopsis "Disable multidimensional array emulation")
6282 (description
6283 "Multidimensional disables multidimensional array emulation.")
6284 (license (package-license perl))))
6285
6286 (define-public perl-mro-compat
6287 (package
6288 (name "perl-mro-compat")
6289 (version "0.13")
6290 (source
6291 (origin
6292 (method url-fetch)
6293 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6294 "MRO-Compat-" version ".tar.gz"))
6295 (sha256
6296 (base32
6297 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
6298 (build-system perl-build-system)
6299 (home-page "http://search.cpan.org/dist/MRO-Compat/")
6300 (synopsis "MRO interface compatibility for Perls < 5.9.5")
6301 (description "The \"mro\" namespace provides several utilities for dealing
6302 with method resolution order and method caching in general in Perl 5.9.5 and
6303 higher. This module provides those interfaces for earlier versions of
6304 Perl (back to 5.6.0).")
6305 (license (package-license perl))))
6306
6307 (define-public perl-namespace-autoclean
6308 (package
6309 (name "perl-namespace-autoclean")
6310 (version "0.28")
6311 (source
6312 (origin
6313 (method url-fetch)
6314 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6315 "namespace-autoclean-" version ".tar.gz"))
6316 (sha256
6317 (base32
6318 "0fbcq99yaix1aa99jl3v811dbw24il9jxnh5i2i23mddh4b0lhfd"))))
6319 (build-system perl-build-system)
6320 (native-inputs
6321 `(("perl-module-build" ,perl-module-build)
6322 ("perl-test-requires" ,perl-test-requires)))
6323 (propagated-inputs
6324 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
6325 ("perl-namespace-clean" ,perl-namespace-clean)
6326 ("perl-sub-identify" ,perl-sub-identify)))
6327 (home-page "http://search.cpan.org/dist/namespace-autoclean/")
6328 (synopsis "Keep imports out of your namespace")
6329 (description "The namespace::autoclean pragma will remove all imported
6330 symbols at the end of the current package's compile cycle. Functions called
6331 in the package itself will still be bound by their name, but they won't show
6332 up as methods on your class or instances. It is very similar to
6333 namespace::clean, except it will clean all imported functions, no matter if
6334 you imported them before or after you used the pragma. It will also not touch
6335 anything that looks like a method.")
6336 (license (package-license perl))))
6337
6338 (define-public perl-namespace-clean
6339 (package
6340 (name "perl-namespace-clean")
6341 (version "0.25")
6342 (source
6343 (origin
6344 (method url-fetch)
6345 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
6346 "namespace-clean-" version ".tar.gz"))
6347 (sha256
6348 (base32
6349 "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
6350 (build-system perl-build-system)
6351 (propagated-inputs
6352 `(("perl-package-stash" ,perl-package-stash)
6353 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
6354 (home-page "http://search.cpan.org/dist/namespace-clean/")
6355 (synopsis "Keep imports and functions out of your namespace")
6356 (description "The namespace::clean pragma will remove all previously
6357 declared or imported symbols at the end of the current package's compile
6358 cycle. Functions called in the package itself will still be bound by their
6359 name, but they won't show up as methods on your class or instances.")
6360 (license (package-license perl))))
6361
6362 (define-public perl-net-dns-native
6363 (package
6364 (name "perl-net-dns-native")
6365 (version "0.15")
6366 (source
6367 (origin
6368 (method url-fetch)
6369 (uri (string-append
6370 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
6371 version ".tar.gz"))
6372 (sha256
6373 (base32 "12bsv5jkic3q4arpzk6dda35didkn445v658j87rmi540dpnac85"))))
6374 (build-system perl-build-system)
6375 (home-page "http://search.cpan.org/dist/Net-DNS-Native/")
6376 (synopsis "Non-blocking system DNS resolver")
6377 (description
6378 "This class provides several methods for host name resolution. It is
6379 designed to be used with event loops. Names are resolved by your system's
6380 native @code{getaddrinfo(3)} implementation, called in a separate thread to
6381 avoid blocking the entire application. Threading overhead is limited by using
6382 system threads instead of Perl threads.")
6383 (license perl-license)))
6384
6385 (define-public perl-net-idn-encode
6386 (package
6387 (name "perl-net-idn-encode")
6388 (version "2.400")
6389 (source
6390 (origin
6391 (method url-fetch)
6392 (uri (string-append
6393 "mirror://cpan/authors/id/C/CF/CFAERBER/Net-IDN-Encode-"
6394 version
6395 ".tar.gz"))
6396 (sha256
6397 (base32
6398 "0a9knav5f9kjldrkxx1k47ivd3p23zkmi8aqgyhnxidhgasz1dlq"))))
6399 (build-system perl-build-system)
6400 (native-inputs
6401 `(("perl-module-build" ,perl-module-build)
6402 ("perl-test-nowarnings" ,perl-test-nowarnings)))
6403 (home-page
6404 "http://search.cpan.org/dist/Net-IDN-Encode/")
6405 (synopsis
6406 "Internationalizing Domain Names in Applications (IDNA)")
6407 (description
6408 "Internationalized Domain Names (IDNs) use characters drawn from a large
6409 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
6410 represented using only the ASCII characters already allowed in so-called host
6411 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
6412
6413 Use this module if you just want to convert domain names (or email addresses),
6414 using whatever IDNA standard is the best choice at the moment.")
6415 (license perl-license)))
6416
6417 (define-public perl-net-statsd
6418 (package
6419 (name "perl-net-statsd")
6420 (version "0.12")
6421 (source
6422 (origin
6423 (method url-fetch)
6424 (uri (string-append
6425 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
6426 version
6427 ".tar.gz"))
6428 (sha256
6429 (base32
6430 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
6431 (build-system perl-build-system)
6432 (home-page
6433 "http://search.cpan.org/dist/Net-Statsd/")
6434 (synopsis "Perl client for Etsy's statsd daemon")
6435 (description "This module implement a UDP client for the statsd statistics
6436 collector daemon in use at Etsy.com.")
6437 (license (package-license perl))))
6438
6439 (define-public perl-number-compare
6440 (package
6441 (name "perl-number-compare")
6442 (version "0.03")
6443 (source
6444 (origin
6445 (method url-fetch)
6446 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6447 "Number-Compare-" version ".tar.gz"))
6448 (sha256
6449 (base32
6450 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
6451 (build-system perl-build-system)
6452 (home-page "http://search.cpan.org/dist/Number-Compare/")
6453 (synopsis "Numeric comparisons")
6454 (description "Number::Compare compiles a simple comparison to an anonymous
6455 subroutine, which you can call with a value to be tested against.")
6456 (license (package-license perl))))
6457
6458 (define-public perl-number-format
6459 (package
6460 (name "perl-number-format")
6461 (version "1.75")
6462 (source (origin
6463 (method url-fetch)
6464 (uri (string-append
6465 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
6466 version ".tar.gz"))
6467 (sha256
6468 (base32
6469 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
6470 (build-system perl-build-system)
6471 (home-page "http://search.cpan.org/dist/Number-Format/")
6472 (synopsis "Convert numbers to strings with pretty formatting")
6473 (description "@code{Number::Format} is a library for formatting numbers.
6474 Functions are provided for converting numbers to strings in a variety of ways,
6475 and to convert strings that contain numbers back into numeric form. The
6476 output formats may include thousands separators - characters inserted between
6477 each group of three characters counting right to left from the decimal point.
6478 The characters used for the decimal point and the thousands separator come from
6479 the locale information or can be specified by the user.")
6480 (license perl-license)))
6481
6482 (define-public perl-number-range
6483 (package
6484 (name "perl-number-range")
6485 (version "0.12")
6486 (source
6487 (origin
6488 (method url-fetch)
6489 (uri (string-append
6490 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
6491 version ".tar.gz"))
6492 (sha256
6493 (base32
6494 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
6495 (build-system perl-build-system)
6496 (home-page "http://search.cpan.org/dist/Number-Range/")
6497 (synopsis "Perl extension defining ranges of numbers")
6498 (description "Number::Range is an object-oriented interface to test if a
6499 number exists in a given range, and to be able to manipulate the range.")
6500 (license (package-license perl))))
6501
6502 (define-public perl-object-signature
6503 (package
6504 (name "perl-object-signature")
6505 (version "1.07")
6506 (source
6507 (origin
6508 (method url-fetch)
6509 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6510 "Object-Signature-" version ".tar.gz"))
6511 (sha256
6512 (base32
6513 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
6514 (build-system perl-build-system)
6515 (native-inputs
6516 `(("perl-module-install" ,perl-module-install)))
6517 (home-page "http://search.cpan.org/dist/Object-Signature/")
6518 (synopsis "Generate cryptographic signatures for objects")
6519 (description "Object::Signature is an abstract base class that you can
6520 inherit from in order to allow your objects to generate unique cryptographic
6521 signatures.")
6522 (license (package-license perl))))
6523
6524 (define-public perl-ole-storage-lite
6525 (package
6526 (name "perl-ole-storage-lite")
6527 (version "0.19")
6528 (source
6529 (origin
6530 (method url-fetch)
6531 (uri (string-append
6532 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
6533 version
6534 ".tar.gz"))
6535 (sha256
6536 (base32
6537 "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"))))
6538 (build-system perl-build-system)
6539 (home-page "http://search.cpan.org/dist/OLE-Storage_Lite/")
6540 (synopsis "Read and write OLE storage files")
6541 (description "This module allows you to read and write
6542 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
6543 technology to store hierarchical information such as links to other
6544 documents within a single file.")
6545 (license (package-license perl))))
6546
6547 (define-public perl-package-anon
6548 (package
6549 (name "perl-package-anon")
6550 (version "0.05")
6551 (source
6552 (origin
6553 (method url-fetch)
6554 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
6555 "Package-Anon-" version ".tar.gz"))
6556 (sha256
6557 (base32
6558 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
6559 (build-system perl-build-system)
6560 (propagated-inputs
6561 `(("perl-sub-exporter" ,perl-sub-exporter)
6562 ("perl-params-util" ,perl-params-util)))
6563 (home-page "http://search.cpan.org/dist/Package-Anon/")
6564 (synopsis "Anonymous packages")
6565 (description "This module allows for anonymous packages that are
6566 independent of the main namespace and only available through an object
6567 instance, not by name.")
6568 (license (package-license perl))))
6569
6570 (define-public perl-package-deprecationmanager
6571 (package
6572 (name "perl-package-deprecationmanager")
6573 (version "0.17")
6574 (source
6575 (origin
6576 (method url-fetch)
6577 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6578 "Package-DeprecationManager-" version ".tar.gz"))
6579 (sha256
6580 (base32
6581 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
6582 (build-system perl-build-system)
6583 (native-inputs
6584 `(("perl-test-fatal" ,perl-test-fatal)
6585 ("perl-test-requires" ,perl-test-requires)
6586 ("perl-test-output" ,perl-test-output)))
6587 (propagated-inputs
6588 `(("perl-list-moreutils" ,perl-list-moreutils)
6589 ("perl-params-util" ,perl-params-util)
6590 ("perl-sub-install" ,perl-sub-install)))
6591 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
6592 (home-page "http://search.cpan.org/dist/Package-DeprecationManager/")
6593 (synopsis "Manage deprecation warnings for your distribution")
6594 (description "This module allows you to manage a set of deprecations for
6595 one or more modules.")
6596 (license artistic2.0)))
6597
6598 (define-public perl-package-stash
6599 (package
6600 (name "perl-package-stash")
6601 (version "0.37")
6602 (source
6603 (origin
6604 (method url-fetch)
6605 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6606 "Package-Stash-" version ".tar.gz"))
6607 (sha256
6608 (base32
6609 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
6610 (build-system perl-build-system)
6611 (native-inputs
6612 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6613 ("perl-test-fatal" ,perl-test-fatal)
6614 ("perl-test-requires" ,perl-test-requires)
6615 ("perl-package-anon" ,perl-package-anon)))
6616 (propagated-inputs
6617 `(("perl-module-implementation" ,perl-module-implementation)
6618 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6619 ("perl-package-stash-xs" ,perl-package-stash-xs)))
6620 (home-page "http://search.cpan.org/dist/Package-Stash/")
6621 (synopsis "Routines for manipulating stashes")
6622 (description "Manipulating stashes (Perl's symbol tables) is occasionally
6623 necessary, but incredibly messy, and easy to get wrong. This module hides all
6624 of that behind a simple API.")
6625 (license (package-license perl))))
6626
6627 (define-public perl-package-stash-xs
6628 (package
6629 (name "perl-package-stash-xs")
6630 (version "0.28")
6631 (source
6632 (origin
6633 (method url-fetch)
6634 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6635 "Package-Stash-XS-" version ".tar.gz"))
6636 (sha256
6637 (base32
6638 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
6639 (build-system perl-build-system)
6640 (native-inputs
6641 `(("perl-test-fatal" ,perl-test-fatal)
6642 ("perl-test-requires" ,perl-test-requires)
6643 ("perl-package-anon" ,perl-package-anon)))
6644 (home-page "http://search.cpan.org/dist/Package-Stash-XS/")
6645 (synopsis "Faster implementation of the Package::Stash API")
6646 (description "This is a backend for Package::Stash, which provides the
6647 functionality in a way that's less buggy and much faster. It will be used by
6648 default if it's installed, and should be preferred in all environments with a
6649 compiler.")
6650 (license (package-license perl))))
6651
6652 (define-public perl-padwalker
6653 (package
6654 (name "perl-padwalker")
6655 (version "2.0")
6656 (source
6657 (origin
6658 (method url-fetch)
6659 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
6660 "PadWalker-" version ".tar.gz"))
6661 (sha256
6662 (base32
6663 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
6664 (build-system perl-build-system)
6665 (home-page "http://search.cpan.org/dist/PadWalker/")
6666 (synopsis "Play with other peoples' lexical variables")
6667 (description "PadWalker is a module which allows you to inspect (and even
6668 change) lexical variables in any subroutine which called you. It will only
6669 show those variables which are in scope at the point of the call. PadWalker
6670 is particularly useful for debugging.")
6671 (license (package-license perl))))
6672
6673 (define-public perl-parallel-forkmanager
6674 (package
6675 (name "perl-parallel-forkmanager")
6676 (version "1.19")
6677 (source
6678 (origin
6679 (method url-fetch)
6680 (uri (string-append
6681 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
6682 version
6683 ".tar.gz"))
6684 (sha256
6685 (base32
6686 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
6687 (build-system perl-build-system)
6688 (native-inputs
6689 `(("perl-test-warn" ,perl-test-warn)))
6690 (home-page "http://search.cpan.org/dist/Parallel-ForkManager/")
6691 (synopsis "Simple parallel processing fork manager")
6692 (description "@code{Parallel::ForkManager} is intended for use in
6693 operations that can be done in parallel where the number of
6694 processes to be forked off should be limited.")
6695 (license (package-license perl))))
6696
6697 (define-public perl-params-util
6698 (package
6699 (name "perl-params-util")
6700 (version "1.07")
6701 (source
6702 (origin
6703 (method url-fetch)
6704 (uri (string-append
6705 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
6706 version ".tar.gz"))
6707 (sha256
6708 (base32
6709 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
6710 (build-system perl-build-system)
6711 (home-page "http://search.cpan.org/dist/Params-Util/")
6712 (synopsis "Simple, compact and correct param-checking functions")
6713 (description
6714 "Params::Util provides a basic set of importable functions that makes
6715 checking parameters easier.")
6716 (license (package-license perl))))
6717
6718 (define-public perl-params-validate
6719 (package
6720 (name "perl-params-validate")
6721 (version "1.26")
6722 (source
6723 (origin
6724 (method url-fetch)
6725 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6726 "Params-Validate-" version ".tar.gz"))
6727 (sha256
6728 (base32
6729 "1vbj78qd46ip09i06dsbb62jfwpzp4bg7yi617v98nvim77w66l2"))))
6730 (build-system perl-build-system)
6731 (native-inputs
6732 `(("perl-module-build" ,perl-module-build)
6733 ("perl-test-fatal" ,perl-test-fatal)
6734 ("perl-test-requires" ,perl-test-requires)))
6735 (propagated-inputs
6736 `(("perl-module-implementation" ,perl-module-implementation)))
6737 (home-page "http://search.cpan.org/dist/Params-Validate/")
6738 (synopsis "Validate method/function parameters")
6739 (description "The Params::Validate module allows you to validate method or
6740 function call parameters to an arbitrary level of specificity.")
6741 (license artistic2.0)))
6742
6743 (define-public perl-params-validationcompiler
6744 (package
6745 (name "perl-params-validationcompiler")
6746 (version "0.27")
6747 (source
6748 (origin
6749 (method url-fetch)
6750 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6751 "Params-ValidationCompiler-" version ".tar.gz"))
6752 (sha256
6753 (base32
6754 "1cpr188c2xm0kkmdir6slcsgv7v6ibqff4lax8s0whwx6ml9kaah"))))
6755 (build-system perl-build-system)
6756 (native-inputs
6757 ;; For tests.
6758 `(("perl-test-without-module" ,perl-test-without-module)
6759 ("perl-test2-bundle-extended" ,perl-test2-bundle-extended)
6760 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
6761 ("perl-type-tiny" ,perl-type-tiny)))
6762 (propagated-inputs
6763 `(("perl-eval-closure" ,perl-eval-closure)
6764 ("perl-exception-class" ,perl-exception-class)
6765 ("perl-specio" ,perl-specio)))
6766 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
6767 (synopsis "Build an optimized subroutine parameter validator")
6768 (description "This module creates a customized, highly efficient
6769 parameter checking subroutine. It can handle named or positional
6770 parameters, and can return the parameters as key/value pairs or a list
6771 of values. In addition to type checks, it also supports parameter
6772 defaults, optional parameters, and extra \"slurpy\" parameters.")
6773 (license artistic2.0)))
6774
6775 (define-public perl-par-dist
6776 (package
6777 (name "perl-par-dist")
6778 (version "0.49")
6779 (source
6780 (origin
6781 (method url-fetch)
6782 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6783 "PAR-Dist-" version ".tar.gz"))
6784 (sha256
6785 (base32
6786 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
6787 (build-system perl-build-system)
6788 (home-page "http://search.cpan.org/dist/PAR-Dist/")
6789 (synopsis "Create and manipulate PAR distributions")
6790 (description "PAR::Dist is a toolkit to create and manipulate PAR
6791 distributions.")
6792 (license (package-license perl))))
6793
6794 (define-public perl-parent
6795 (package
6796 (name "perl-parent")
6797 (version "0.228")
6798 (source
6799 (origin
6800 (method url-fetch)
6801 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
6802 "parent-" version ".tar.gz"))
6803 (sha256
6804 (base32
6805 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
6806 (build-system perl-build-system)
6807 (home-page "http://search.cpan.org/dist/parent/")
6808 (synopsis "Establish an ISA relationship with base classes at compile time")
6809 (description "Allows you to both load one or more modules, while setting
6810 up inheritance from those modules at the same time.")
6811 (license (package-license perl))))
6812
6813 (define-public perl-path-class
6814 (package
6815 (name "perl-path-class")
6816 (version "0.37")
6817 (source
6818 (origin
6819 (method url-fetch)
6820 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
6821 "Path-Class-" version ".tar.gz"))
6822 (sha256
6823 (base32
6824 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
6825 (build-system perl-build-system)
6826 (native-inputs `(("perl-module-build" ,perl-module-build)))
6827 (home-page "http://search.cpan.org/dist/Path-Class/")
6828 (synopsis "Path specification manipulation")
6829 (description "Path::Class is a module for manipulation of file and
6830 directory specifications in a cross-platform manner.")
6831 (license (package-license perl))))
6832
6833 (define-public perl-pathtools
6834 (package
6835 (name "perl-pathtools")
6836 (version "3.74")
6837 (source
6838 (origin
6839 (method url-fetch)
6840 (uri (string-append
6841 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
6842 version ".tar.gz"))
6843 (sha256
6844 (base32 "04bfjdvn5p78hirljcinpxv8djcjn8nyg5gcmnmvz8sr9k2lqwi5"))))
6845 (build-system perl-build-system)
6846 (arguments
6847 `(#:phases
6848 (modify-phases %standard-phases
6849 (add-after 'unpack 'patch-pwd-path
6850 (lambda* (#:key inputs #:allow-other-keys)
6851 (substitute* "Cwd.pm"
6852 (("'/bin/pwd'")
6853 (string-append "'" (assoc-ref inputs "coreutils")
6854 "/bin/pwd'"))))))))
6855 (inputs
6856 `(("coreutils" ,coreutils)))
6857 (home-page "http://search.cpan.org/dist/PathTools/")
6858 (synopsis "Tools for working with directory and file names")
6859 (description "This package provides functions to work with directory and
6860 file names.")
6861 (license perl-license)))
6862
6863 (define-public perl-path-tiny
6864 (package
6865 (name "perl-path-tiny")
6866 (version "0.104")
6867 (source (origin
6868 (method url-fetch)
6869 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6870 "Path-Tiny-" version ".tar.gz"))
6871 (sha256
6872 (base32
6873 "1vxaczi44d2acfyyzwa7p6c5gx3rgm6c36zbdl40982axg7iv7y6"))))
6874 (build-system perl-build-system)
6875 (arguments
6876 `(#:tests? #f)) ; Tests require additional test modules to be packaged
6877 ;; (native-inputs
6878 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
6879 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
6880 (inputs
6881 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
6882 (home-page "http://search.cpan.org/dist/Path-Tiny/")
6883 (synopsis "File path utility")
6884 (description "This module provides a small, fast utility for working
6885 with file paths.")
6886 (license asl2.0)))
6887
6888 (define-public perl-perlio-utf8_strict
6889 (package
6890 (name "perl-perlio-utf8-strict")
6891 (version "0.006")
6892 (source (origin
6893 (method url-fetch)
6894 (uri (string-append
6895 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
6896 version ".tar.gz"))
6897 (sha256
6898 (base32
6899 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
6900 (build-system perl-build-system)
6901 (native-inputs
6902 `(("perl-test-exception" ,perl-test-exception)))
6903 (home-page
6904 "http://search.cpan.org/dist/PerlIO-utf8_strict/")
6905 (synopsis "Fast and correct UTF-8 IO")
6906 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
6907 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
6908 for correctness.")
6909 (license (package-license perl))))
6910
6911 (define-public perl-pegex
6912 (package
6913 (name "perl-pegex")
6914 (version "0.64")
6915 (source
6916 (origin
6917 (method url-fetch)
6918 (uri (string-append
6919 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
6920 version ".tar.gz"))
6921 (sha256
6922 (base32
6923 "1kb7y2cc3nibbn8i8y3vrzz1f9h3892nbf8jj88c5fdgpmj05q17"))))
6924 (build-system perl-build-system)
6925 (native-inputs
6926 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
6927 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
6928 (home-page "http://search.cpan.org/dist/Pegex/")
6929 (synopsis "Acmeist PEG Parser Framework")
6930 (description "Pegex is an Acmeist parser framework. It allows you to easily
6931 create parsers that will work equivalently in lots of programming languages.
6932 The inspiration for Pegex comes from the parsing engine upon which the
6933 postmodern programming language Perl 6 is based on. Pegex brings this beauty
6934 to the other justmodern languages that have a normal regular expression engine
6935 available.")
6936 (license (package-license perl))))
6937
6938 (define-public perl-pod-coverage
6939 (package
6940 (name "perl-pod-coverage")
6941 (version "0.23")
6942 (source
6943 (origin
6944 (method url-fetch)
6945 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6946 "Pod-Coverage-" version ".tar.gz"))
6947 (sha256
6948 (base32
6949 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
6950 (build-system perl-build-system)
6951 (propagated-inputs
6952 `(("perl-devel-symdump" ,perl-devel-symdump)))
6953 (home-page "http://search.cpan.org/dist/Pod-Coverage/")
6954 (synopsis "Check for comprehensive documentation of a module")
6955 (description "This module provides a mechanism for determining if the pod
6956 for a given module is comprehensive.")
6957 (license (package-license perl))))
6958
6959 (define-public perl-pod-simple
6960 (package
6961 (name "perl-pod-simple")
6962 (version "3.35")
6963 (source (origin
6964 (method url-fetch)
6965 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
6966 "Pod-Simple-" version ".tar.gz"))
6967 (sha256
6968 (base32
6969 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
6970 (build-system perl-build-system)
6971 (home-page "http://search.cpan.org/dist/Pod-Simple/")
6972 (synopsis "Parsing library for text in Pod format")
6973 (description "@code{Pod::Simple} is a Perl library for parsing text in
6974 the @dfn{Pod} (plain old documentation) markup language that is typically
6975 used for writing documentation for Perl and for Perl modules.")
6976 (license (package-license perl))))
6977
6978 (define-public perl-posix-strftime-compiler
6979 (package
6980 (name "perl-posix-strftime-compiler")
6981 (version "0.42")
6982 (source
6983 (origin
6984 (method url-fetch)
6985 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
6986 "POSIX-strftime-Compiler-" version ".tar.gz"))
6987 (sha256
6988 (base32
6989 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
6990 (build-system perl-build-system)
6991 (native-inputs `(("perl-module-build" ,perl-module-build)))
6992 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
6993 (home-page "http://search.cpan.org/dist/POSIX-strftime-Compiler/")
6994 (synopsis "GNU C library compatible strftime for loggers and servers")
6995 (description "POSIX::strftime::Compiler provides GNU C library compatible
6996 strftime(3). But this module is not affected by the system locale. This
6997 feature is useful when you want to write loggers, servers, and portable
6998 applications.")
6999 (license (package-license perl))))
7000
7001 (define-public perl-probe-perl
7002 (package
7003 (name "perl-probe-perl")
7004 (version "0.03")
7005 (source (origin
7006 (method url-fetch)
7007 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
7008 "Probe-Perl-" version ".tar.gz"))
7009 (sha256
7010 (base32
7011 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
7012 (build-system perl-build-system)
7013 (synopsis "Information about the currently running perl")
7014 (description
7015 "Probe::Perl provides methods for obtaining information about the
7016 currently running perl interpreter. It originally began life as code in the
7017 Module::Build project, but has been externalized here for general use.")
7018 (home-page (string-append "http://search.cpan.org/~kwilliams//"
7019 "Probe-Perl-" version))
7020 (license (package-license perl))))
7021
7022 (define-public perl-proc-invokeeditor
7023 (package
7024 (name "perl-proc-invokeeditor")
7025 (version "1.13")
7026 (source
7027 (origin
7028 (method url-fetch)
7029 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
7030 version ".tar.gz"))
7031 (sha256
7032 (base32
7033 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
7034 (build-system perl-build-system)
7035 (arguments
7036 `(#:phases
7037 (modify-phases %standard-phases
7038 (add-after 'unpack 'set-EDITOR
7039 (lambda _ (setenv "EDITOR" "echo") #t)))))
7040 (propagated-inputs
7041 `(("perl-carp-assert" ,perl-carp-assert)))
7042 (home-page "http://search.cpan.org/dist/Proc-InvokeEditor/")
7043 (synopsis "Interface to external editor from Perl")
7044 (description "This module provides the ability to supply some text to an
7045 external text editor, have it edited by the user, and retrieve the results.")
7046 (license (package-license perl))))
7047
7048 (define-public perl-readonly
7049 (package
7050 (name "perl-readonly")
7051 (version "2.00")
7052 (source
7053 (origin
7054 (method url-fetch)
7055 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
7056 "Readonly-" version ".tar.gz"))
7057 (sha256
7058 (base32
7059 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
7060 (build-system perl-build-system)
7061 (native-inputs `(("perl-module-build" ,perl-module-build)))
7062 (home-page "http://search.cpan.org/dist/Readonly/")
7063 (synopsis "Create read-only scalars, arrays, hashes")
7064 (description "This module provides a facility for creating non-modifiable
7065 variables in Perl. This is useful for configuration files, headers, etc. It
7066 can also be useful as a development and debugging tool for catching updates to
7067 variables that should not be changed.")
7068 (license (package-license perl))))
7069
7070 (define-public perl-ref-util-xs
7071 (package
7072 (name "perl-ref-util-xs")
7073 (version "0.117")
7074 (source
7075 (origin
7076 (method url-fetch)
7077 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
7078 "Ref-Util-XS-" version ".tar.gz"))
7079 (sha256
7080 (base32
7081 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
7082 (build-system perl-build-system)
7083 (home-page "http://search.cpan.org/dist/Ref-Util-XS/")
7084 (synopsis "XS implementation for Ref::Util")
7085 (description "@code{Ref::Util::XS} is the XS implementation of
7086 @code{Ref::Util}, which provides several functions to help identify references
7087 in a more convenient way than the usual approach of examining the return value
7088 of @code{ref}.")
7089 (license x11)))
7090
7091 (define-public perl-regexp-common
7092 (package
7093 (name "perl-regexp-common")
7094 (version "2017060201")
7095 (source (origin
7096 (method url-fetch)
7097 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
7098 "Regexp-Common-" version ".tar.gz"))
7099 (sha256
7100 (base32
7101 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
7102 (build-system perl-build-system)
7103 (synopsis "Provide commonly requested regular expressions")
7104 (description
7105 "This module exports a single hash (`%RE') that stores or generates
7106 commonly needed regular expressions. Patterns currently provided include:
7107 balanced parentheses and brackets, delimited text (with escapes), integers and
7108 floating-point numbers in any base (up to 36), comments in 44 languages,
7109 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
7110 codes.")
7111 (home-page (string-append "http://search.cpan.org/~abigail//"
7112 "Regexp-Common-" version))
7113 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
7114 (license (list (package-license perl) x11 bsd-3))))
7115
7116 (define-public perl-regexp-util
7117 (package
7118 (name "perl-regexp-util")
7119 (version "0.003")
7120 (source
7121 (origin
7122 (method url-fetch)
7123 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
7124 "Regexp-Util-" version ".tar.gz"))
7125 (sha256
7126 (base32
7127 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
7128 (build-system perl-build-system)
7129 (home-page "http://search.cpan.org/dist/Regexp-Util/")
7130 (synopsis "Selection of general-utility regexp subroutines")
7131 (description "This package provides a selection of regular expression
7132 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
7133 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
7134 and @code{deserialize_regexp}.")
7135 (license (package-license perl))))
7136
7137 (define-public perl-role-tiny
7138 (package
7139 (name "perl-role-tiny")
7140 (version "1.003004")
7141 (source
7142 (origin
7143 (method url-fetch)
7144 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7145 "Role-Tiny-" version ".tar.gz"))
7146 (sha256
7147 (base32
7148 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
7149 (build-system perl-build-system)
7150 (native-inputs
7151 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
7152 ("perl-test-fatal" ,perl-test-fatal)))
7153 (propagated-inputs
7154 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
7155 (home-page "http://search.cpan.org/dist/Role-Tiny/")
7156 (synopsis "Roles, as a slice of Moose")
7157 (description "Role::Tiny is a minimalist role composition tool.")
7158 (license (package-license perl))))
7159
7160 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
7161 (define-public perl-role-tiny-2
7162 (package
7163 (inherit perl-role-tiny)
7164 (version "2.000006")
7165 (source
7166 (origin
7167 (method url-fetch)
7168 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7169 "Role-Tiny-" version ".tar.gz"))
7170 (sha256
7171 (base32
7172 "10p3sc639c0nj56bb77a2wg8samyyl8sqpliv3n8c0jaj2642wyc"))))))
7173
7174 (define-public perl-safe-isa
7175 (package
7176 (name "perl-safe-isa")
7177 (version "1.000010")
7178 (source
7179 (origin
7180 (method url-fetch)
7181 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7182 "Safe-Isa-" version ".tar.gz"))
7183 (sha256
7184 (base32
7185 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
7186 (build-system perl-build-system)
7187 (home-page "http://search.cpan.org/dist/Safe-Isa/")
7188 (synopsis "Call isa, can, does, and DOES safely")
7189 (description "This module allows you to call isa, can, does, and DOES
7190 safely on things that may not be objects.")
7191 (license (package-license perl))))
7192
7193 (define-public perl-scope-guard
7194 (package
7195 (name "perl-scope-guard")
7196 (version "0.21")
7197 (source
7198 (origin
7199 (method url-fetch)
7200 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
7201 "Scope-Guard-" version ".tar.gz"))
7202 (sha256
7203 (base32
7204 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
7205 (build-system perl-build-system)
7206 (home-page "http://search.cpan.org/dist/Scope-Guard/")
7207 (synopsis "Lexically-scoped resource management")
7208 (description "This module provides a convenient way to perform cleanup or
7209 other forms of resource management at the end of a scope. It is particularly
7210 useful when dealing with exceptions: the Scope::Guard constructor takes a
7211 reference to a subroutine that is guaranteed to be called even if the thread
7212 of execution is aborted prematurely. This effectively allows lexically-scoped
7213 \"promises\" to be made that are automatically honoured by perl's garbage
7214 collector.")
7215 (license (package-license perl))))
7216
7217 (define-public perl-set-infinite
7218 (package
7219 (name "perl-set-infinite")
7220 (version "0.65")
7221 (source
7222 (origin
7223 (method url-fetch)
7224 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
7225 "Set-Infinite-" version ".tar.gz"))
7226 (sha256
7227 (base32
7228 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
7229 (build-system perl-build-system)
7230 (home-page "http://search.cpan.org/dist/Set-Infinite/")
7231 (synopsis "Infinite sets")
7232 (description "Set::Infinite is a set theory module for infinite sets.")
7233 (license (package-license perl))))
7234
7235 (define-public perl-set-intspan
7236 (package
7237 (name "perl-set-intspan")
7238 (version "1.19")
7239 (source (origin
7240 (method url-fetch)
7241 (uri (string-append
7242 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
7243 version ".tar.gz"))
7244 (sha256
7245 (base32
7246 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
7247 (build-system perl-build-system)
7248 (home-page "http://search.cpan.org/dist/Set-IntSpan/")
7249 (synopsis "Manage sets of integers")
7250 (description "@code{Set::IntSpan} manages sets of integers. It is
7251 optimized for sets that have long runs of consecutive integers.")
7252 (license perl-license)))
7253
7254 (define-public perl-set-object
7255 (package
7256 (name "perl-set-object")
7257 (version "1.35")
7258 (source
7259 (origin
7260 (method url-fetch)
7261 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
7262 "Set-Object-" version ".tar.gz"))
7263 (sha256
7264 (base32
7265 "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
7266 (build-system perl-build-system)
7267 (propagated-inputs
7268 `(("perl-moose" ,perl-moose)
7269 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7270 (home-page "http://search.cpan.org/dist/Set-Object/")
7271 (synopsis "Unordered collections of Perl Objects")
7272 (description "Set::Object provides efficient sets, unordered collections
7273 of Perl objects without duplicates for scalars and references.")
7274 (license artistic2.0)))
7275
7276 (define-public perl-set-scalar
7277 (package
7278 (name "perl-set-scalar")
7279 (version "1.29")
7280 (source
7281 (origin
7282 (method url-fetch)
7283 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
7284 "Set-Scalar-" version ".tar.gz"))
7285 (sha256
7286 (base32
7287 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
7288 (build-system perl-build-system)
7289 (home-page "http://search.cpan.org/dist/Set-Scalar/")
7290 (synopsis "Set operations for Perl")
7291 (description "The first priority of Set::Scalar is to be a convenient
7292 interface to sets (as in: unordered collections of Perl scalars). While not
7293 designed to be slow or big, neither has it been designed to be fast or
7294 compact.")
7295 (license (package-license perl))))
7296
7297 (define-public perl-sort-key
7298 (package
7299 (name "perl-sort-key")
7300 (version "1.33")
7301 (source
7302 (origin
7303 (method url-fetch)
7304 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
7305 version ".tar.gz"))
7306 (sha256
7307 (base32
7308 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
7309 (build-system perl-build-system)
7310 (home-page "http://search.cpan.org/dist/Sort-Key/")
7311 (synopsis "Sort arrays by one or multiple calculated keys")
7312 (description "This Perl module provides various functions to quickly sort
7313 arrays by one or multiple calculated keys.")
7314 (license (package-license perl))))
7315
7316 (define-public perl-sort-naturally
7317 (package
7318 (name "perl-sort-naturally")
7319 (version "1.03")
7320 (source
7321 (origin
7322 (method url-fetch)
7323 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
7324 version ".tar.gz"))
7325 (sha256
7326 (base32
7327 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
7328 (build-system perl-build-system)
7329 (home-page "http://search.cpan.org/dist/Sort-Naturally/")
7330 (synopsis "Sort lexically, but sort numeral parts numerically")
7331 (description "This module exports two functions, @code{nsort} and
7332 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
7333 Under natural sorting, numeric substrings are compared numerically, and other
7334 word-characters are compared lexically.")
7335 (license (package-license perl))))
7336
7337 (define-public perl-specio
7338 (package
7339 (name "perl-specio")
7340 (version "0.38")
7341 (source
7342 (origin
7343 (method url-fetch)
7344 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7345 "Specio-" version ".tar.gz"))
7346 (sha256
7347 (base32
7348 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
7349 (build-system perl-build-system)
7350 (propagated-inputs
7351 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
7352 ("perl-eval-closure" ,perl-eval-closure)
7353 ("perl-module-runtime" ,perl-module-runtime)
7354 ("perl-mro-compat" ,perl-mro-compat)
7355 ("perl-role-tiny" ,perl-role-tiny)
7356 ("perl-test-fatal" ,perl-test-fatal)
7357 ("perl-test-needs" ,perl-test-needs)))
7358 (home-page "http://search.cpan.org/dist/Specio//")
7359 (synopsis "Classes for representing type constraints and coercion")
7360 (description "The Specio distribution provides classes for representing type
7361 constraints and coercion, along with syntax sugar for declaring them. Note that
7362 this is not a proper type system for Perl. Nothing in this distribution will
7363 magically make the Perl interpreter start checking a value's type on assignment
7364 to a variable. In fact, there's no built-in way to apply a type to a variable at
7365 all. Instead, you can explicitly check a value against a type, and optionally
7366 coerce values to that type.")
7367 (license artistic2.0)))
7368
7369 (define-public perl-spiffy
7370 (package
7371 (name "perl-spiffy")
7372 (version "0.46")
7373 (source
7374 (origin
7375 (method url-fetch)
7376 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7377 "Spiffy-" version ".tar.gz"))
7378 (sha256
7379 (base32
7380 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
7381 (build-system perl-build-system)
7382 (home-page "http://search.cpan.org/dist/Spiffy/")
7383 (synopsis "Spiffy Perl Interface Framework For You")
7384 (description "Spiffy is a framework and methodology for doing object
7385 oriented (OO) programming in Perl. Spiffy combines the best parts of
7386 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
7387 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
7388 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
7389 other OO languages like Python, Ruby, Java and Perl 6.")
7390 (license (package-license perl))))
7391
7392 (define-public perl-statistics-basic
7393 (package
7394 (name "perl-statistics-basic")
7395 (version "1.6611")
7396 (source (origin
7397 (method url-fetch)
7398 (uri (string-append
7399 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
7400 version ".tar.gz"))
7401 (sha256
7402 (base32
7403 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
7404 (build-system perl-build-system)
7405 (inputs
7406 `(("perl-number-format" ,perl-number-format)))
7407 (home-page "http://search.cpan.org/dist/Statistics-Basic/")
7408 (synopsis "Collection of very basic statistics modules")
7409 (description "This package provides basic statistics functions like
7410 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
7411 (license lgpl2.0)))
7412
7413 (define-public perl-stream-buffered
7414 (package
7415 (name "perl-stream-buffered")
7416 (version "0.03")
7417 (source
7418 (origin
7419 (method url-fetch)
7420 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
7421 "Stream-Buffered-" version ".tar.gz"))
7422 (sha256
7423 (base32
7424 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
7425 (build-system perl-build-system)
7426 (home-page "http://search.cpan.org/dist/Stream-Buffered/")
7427 (synopsis "Temporary buffer to save bytes")
7428 (description "Stream::Buffered is a buffer class to store arbitrary length
7429 of byte strings and then get a seekable filehandle once everything is
7430 buffered. It uses PerlIO and/or temporary file to save the buffer depending
7431 on the length of the size.")
7432 (license (package-license perl))))
7433
7434 (define-public perl-strictures
7435 (package
7436 (name "perl-strictures")
7437 (version "1.005005")
7438 (source
7439 (origin
7440 (method url-fetch)
7441 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7442 "strictures-" version ".tar.gz"))
7443 (sha256
7444 (base32
7445 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
7446 (build-system perl-build-system)
7447 (home-page "http://search.cpan.org/dist/strictures/")
7448 (synopsis "Turn on strict and make all warnings fatal")
7449 (description "Strictures turns on strict and make all warnings fatal when
7450 run from within a source-controlled directory.")
7451 (license (package-license perl))))
7452
7453 ;; Some packages don't yet work with this newer version of ‘strictures’.
7454 (define-public perl-strictures-2
7455 (package
7456 (inherit perl-strictures)
7457 (version "2.000004")
7458 (source
7459 (origin
7460 (method url-fetch)
7461 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7462 "strictures-" version ".tar.gz"))
7463 (sha256
7464 (base32
7465 "0lzp0q6kwk6vgf7zdlvy9zz28fj6n1b776irm556c7gylcq29113"))))))
7466
7467 (define-public perl-string-camelcase
7468 (package
7469 (name "perl-string-camelcase")
7470 (version "0.02")
7471 (source
7472 (origin
7473 (method url-fetch)
7474 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
7475 "String-CamelCase-" version ".tar.gz"))
7476 (sha256
7477 (base32
7478 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
7479 (build-system perl-build-system)
7480 (arguments
7481 `(#:phases
7482 (modify-phases %standard-phases
7483 (add-before 'configure 'set-perl-search-path
7484 (lambda _
7485 ;; Work around "dotless @INC" build failure.
7486 (setenv "PERL5LIB"
7487 (string-append (getcwd) ":"
7488 (getenv "PERL5LIB")))
7489 #t)))))
7490 (home-page "http://search.cpan.org/dist/String-CamelCase/")
7491 (synopsis "Camelcase and de-camelcase")
7492 (description "This module may be used to convert from under_score text to
7493 CamelCase and back again.")
7494 (license (package-license perl))))
7495
7496 (define-public perl-string-escape
7497 (package
7498 (name "perl-string-escape")
7499 (version "2010.002")
7500 (source
7501 (origin
7502 (method url-fetch)
7503 (uri (string-append
7504 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
7505 version ".tar.gz"))
7506 (sha256
7507 (base32
7508 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
7509 (build-system perl-build-system)
7510 (home-page "http://search.cpan.org/dist/String-Escape/")
7511 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
7512 (description "This module provides a flexible calling interface to some
7513 frequently-performed string conversion functions, including applying and
7514 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
7515 removing double-quotes, and truncating to fit within a desired length.")
7516 (license (package-license perl))))
7517
7518 (define-public perl-string-rewriteprefix
7519 (package
7520 (name "perl-string-rewriteprefix")
7521 (version "0.007")
7522 (source
7523 (origin
7524 (method url-fetch)
7525 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7526 "String-RewritePrefix-" version ".tar.gz"))
7527 (sha256
7528 (base32
7529 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
7530 (build-system perl-build-system)
7531 (propagated-inputs
7532 `(("perl-sub-exporter" ,perl-sub-exporter)))
7533 (home-page "http://search.cpan.org/dist/String-RewritePrefix/")
7534 (synopsis "Rewrite strings based on a set of known prefixes")
7535 (description "This module allows you to rewrite strings based on a set of
7536 known prefixes.")
7537 (license (package-license perl))))
7538
7539 (define-public perl-string-print
7540 (package
7541 (name "perl-string-print")
7542 (version "0.15")
7543 (source (origin
7544 (method url-fetch)
7545 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
7546 "String-Print-" version ".tar.gz"))
7547 (sha256
7548 (base32
7549 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
7550 (build-system perl-build-system)
7551 (propagated-inputs
7552 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7553 (home-page "http://search.cpan.org/dist/String-Print/")
7554 (synopsis "String printing alternatives to printf")
7555 (description
7556 "This module inserts values into (translated) strings. It provides
7557 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
7558 a functional interface.")
7559 (license (package-license perl))))
7560
7561 (define-public perl-sub-exporter
7562 (package
7563 (name "perl-sub-exporter")
7564 (version "0.987")
7565 (source
7566 (origin
7567 (method url-fetch)
7568 (uri (string-append
7569 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
7570 version ".tar.gz"))
7571 (sha256
7572 (base32
7573 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
7574 (build-system perl-build-system)
7575 (propagated-inputs
7576 `(("perl-data-optlist" ,perl-data-optlist)
7577 ("perl-params-util" ,perl-params-util)))
7578 (home-page "http://search.cpan.org/dist/Sub-Exporter/")
7579 (synopsis "Sophisticated exporter for custom-built routines")
7580 (description
7581 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
7582 custom-built routines.")
7583 (license (package-license perl))))
7584
7585 (define-public perl-sub-exporter-progressive
7586 (package
7587 (name "perl-sub-exporter-progressive")
7588 (version "0.001013")
7589 (source
7590 (origin
7591 (method url-fetch)
7592 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
7593 "Sub-Exporter-Progressive-" version ".tar.gz"))
7594 (sha256
7595 (base32
7596 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
7597 (build-system perl-build-system)
7598 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
7599 (home-page "http://search.cpan.org/dist/Sub-Exporter-Progressive/")
7600 (synopsis "Only use Sub::Exporter if you need it")
7601 (description "Sub::Exporter is an incredibly powerful module, but with
7602 that power comes great responsibility, as well as some runtime penalties.
7603 This module is a \"Sub::Exporter\" wrapper that will let your users just use
7604 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
7605 if your users try to use \"Sub::Exporter\"'s more advanced features, like
7606 renaming exports, if they try to use them.")
7607 (license (package-license perl))))
7608
7609 (define-public perl-sub-identify
7610 (package
7611 (name "perl-sub-identify")
7612 (version "0.10")
7613 (source
7614 (origin
7615 (method url-fetch)
7616 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
7617 "Sub-Identify-" version ".tar.gz"))
7618 (sha256
7619 (base32
7620 "087fjcg6w576w47i1slj6mjfd3gl1b0airgddmn3prn0nff6nn2m"))))
7621 (build-system perl-build-system)
7622 (home-page "http://search.cpan.org/dist/Sub-Identify/")
7623 (synopsis "Retrieve names of code references")
7624 (description "Sub::Identify allows you to retrieve the real name of code
7625 references.")
7626 (license (package-license perl))))
7627
7628 (define-public perl-sub-info
7629 (package
7630 (name "perl-sub-info")
7631 (version "0.002")
7632 (source
7633 (origin
7634 (method url-fetch)
7635 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
7636 version ".tar.gz"))
7637 (sha256
7638 (base32
7639 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
7640 (build-system perl-build-system)
7641 (propagated-inputs
7642 `(("perl-importer" ,perl-importer)))
7643 (home-page "http://search.cpan.org/dist/Sub-Info//")
7644 (synopsis "Tool to inspect subroutines")
7645 (description "This package provides tools for inspecting subroutines
7646 in Perl.")
7647 (license (package-license perl))))
7648
7649 (define-public perl-sub-install
7650 (package
7651 (name "perl-sub-install")
7652 (version "0.928")
7653 (source
7654 (origin
7655 (method url-fetch)
7656 (uri (string-append
7657 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
7658 version ".tar.gz"))
7659 (sha256
7660 (base32
7661 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
7662 (build-system perl-build-system)
7663 (home-page "http://search.cpan.org/dist/Sub-Install/")
7664 (synopsis "Install subroutines into packages easily")
7665 (description
7666 "Sub::Install makes it easy to install subroutines into packages without
7667 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
7668 can see them.")
7669 (license (package-license perl))))
7670
7671 (define-public perl-sub-name
7672 (package
7673 (name "perl-sub-name")
7674 (version "0.21")
7675 (source
7676 (origin
7677 (method url-fetch)
7678 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7679 "Sub-Name-" version ".tar.gz"))
7680 (sha256
7681 (base32
7682 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
7683 (build-system perl-build-system)
7684 (native-inputs
7685 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
7686 (home-page "http://search.cpan.org/dist/Sub-Name/")
7687 (synopsis "(Re)name a sub")
7688 (description "Assigns a new name to referenced sub. If package
7689 specification is omitted in the name, then the current package is used. The
7690 return value is the sub.")
7691 (license (package-license perl))))
7692
7693 (define-public perl-sub-quote
7694 (package
7695 (name "perl-sub-quote")
7696 (version "2.005001")
7697 (source
7698 (origin
7699 (method url-fetch)
7700 (uri (string-append
7701 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
7702 version ".tar.gz"))
7703 (sha256
7704 (base32
7705 "01xsvfdpxzimsbrp9mqipsr93y83nhj21q05g8v1bw6yfl3lzayn"))))
7706 (build-system perl-build-system)
7707 (native-inputs
7708 `(("perl-test-fatal" ,perl-test-fatal)))
7709 (propagated-inputs
7710 `(("perl-sub-name" ,perl-sub-name)))
7711 (home-page "http://search.cpan.org/dist/Sub-Quote/")
7712 (synopsis "Efficient generation of subroutines via string eval")
7713 (description "Sub::Quote provides an efficient generation of subroutines
7714 via string eval.")
7715 (license (package-license perl))))
7716
7717 (define-public perl-sub-uplevel
7718 (package
7719 (name "perl-sub-uplevel")
7720 (version "0.24")
7721 (source
7722 (origin
7723 (method url-fetch)
7724 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7725 "Sub-Uplevel-" version ".tar.gz"))
7726 (sha256
7727 (base32
7728 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
7729 (build-system perl-build-system)
7730 (home-page "http://search.cpan.org/dist/Sub-Uplevel/")
7731 (synopsis "Apparently run a function in a higher stack frame")
7732 (description "Like Tcl's uplevel() function, but not quite so dangerous.
7733 The idea is just to fool caller(). All the really naughty bits of Tcl's
7734 uplevel() are avoided.")
7735 (license (package-license perl))))
7736
7737 (define-public perl-super
7738 (package
7739 (name "perl-super")
7740 (version "1.20141117")
7741 (source
7742 (origin
7743 (method url-fetch)
7744 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
7745 "SUPER-" version ".tar.gz"))
7746 (sha256
7747 (base32 "1cn05kacg0xfbm1zzksm2yx2pnrzqja4d9163cxv3sdfc1yhwqhs"))))
7748 (build-system perl-build-system)
7749 (native-inputs
7750 `(("perl-module-build" ,perl-module-build)))
7751 (propagated-inputs
7752 `(("perl-sub-identify" ,perl-sub-identify)))
7753 (home-page "http://search.cpan.org/dist/SUPER/")
7754 (synopsis "Control superclass method dispatching")
7755 (description
7756 "When subclassing a class, you may occasionally want to dispatch control to
7757 the superclass---at least conditionally and temporarily. This module provides
7758 nicer equivalents to the native Perl syntax for calling superclasses, along with
7759 a universal @code{super} method to determine a class' own superclass, and better
7760 support for run-time mix-ins and roles.")
7761 (license perl-license)))
7762
7763 (define-public perl-svg
7764 (package
7765 (name "perl-svg")
7766 (version "2.63")
7767 (source
7768 (origin
7769 (method url-fetch)
7770 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
7771 version ".tar.gz"))
7772 (sha256
7773 (base32
7774 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
7775 (build-system perl-build-system)
7776 (home-page "http://search.cpan.org/dist/SVG/")
7777 (synopsis "Perl extension for generating SVG documents")
7778 (description "SVG is a Perl module which generates a nested data structure
7779 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
7780 Using SVG, you can generate SVG objects, embed other SVG instances into it,
7781 access the DOM object, create and access Javascript, and generate SMIL
7782 animation content.")
7783 (license (package-license perl))))
7784
7785 (define-public perl-switch
7786 (package
7787 (name "perl-switch")
7788 (version "2.17")
7789 (source
7790 (origin
7791 (method url-fetch)
7792 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
7793 version ".tar.gz"))
7794 (sha256
7795 (base32
7796 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
7797 (build-system perl-build-system)
7798 (home-page "http://search.cpan.org/dist/Switch/")
7799 (synopsis "Switch statement for Perl")
7800 (description "Switch is a Perl module which implements a generalized case
7801 mechanism. The module augments the standard Perl syntax with two new
7802 statements: @code{switch} and @code{case}.")
7803 (license (package-license perl))))
7804
7805 (define-public perl-sys-cpu
7806 (package
7807 (name "perl-sys-cpu")
7808 (version "0.61")
7809 (source (origin
7810 (method url-fetch)
7811 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
7812 "Sys-CPU-" version ".tar.gz"))
7813 (sha256
7814 (base32
7815 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
7816 (modules '((guix build utils)))
7817 (snippet
7818 '(begin
7819 ;; The contents of /proc/cpuinfo can differ and confuse the
7820 ;; cpu_clock and cpu_type methods, so we replace the test
7821 ;; with one that marks cpu_clock and cpu_type as TODO.
7822 ;; Borrowed from Debian.
7823 (call-with-output-file "t/Sys-CPU.t"
7824 (lambda (port)
7825 (format port "#!/usr/bin/perl
7826
7827 use Test::More tests => 4;
7828
7829 BEGIN { use_ok('Sys::CPU'); }
7830
7831 $number = &Sys::CPU::cpu_count();
7832 ok( defined($number), \"CPU Count: $number\" );
7833
7834 TODO: {
7835 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
7836 $speed = &Sys::CPU::cpu_clock();
7837 ok( defined($speed), \"CPU Speed: $speed\" );
7838 }
7839
7840 TODO: {
7841 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
7842 $type = &Sys::CPU::cpu_type();
7843 ok( defined($type), \"CPU Type: $type\" );
7844 }~%")))
7845 #t))))
7846 (build-system perl-build-system)
7847 (synopsis "Perl extension for getting CPU information")
7848 (description
7849 "Sys::CPU is a module for counting the number of CPUs on a system, and
7850 determining their type and clock speed.")
7851 (home-page (string-append "http://search.cpan.org/~mzsanford//"
7852 "Sys-CPU-" version))
7853 (license (package-license perl))))
7854
7855 (define-public perl-sys-hostname-long
7856 (package
7857 (name "perl-sys-hostname-long")
7858 (version "1.5")
7859 (source
7860 (origin
7861 (method url-fetch)
7862 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
7863 "Sys-Hostname-Long-" version ".tar.gz"))
7864 (sha256
7865 (base32
7866 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
7867 (build-system perl-build-system)
7868 (arguments `(#:tests? #f)) ;no `hostname' during build
7869 (home-page "http://search.cpan.org/dist/Sys-Hostname-Long/")
7870 (synopsis "Get full hostname in Perl")
7871 (description "Sys::Hostname::Long tries very hard to get the full hostname
7872 of a system.")
7873 (license (package-license perl))))
7874
7875 (define-public perl-task-weaken
7876 (package
7877 (name "perl-task-weaken")
7878 (version "1.06")
7879 (source
7880 (origin
7881 (method url-fetch)
7882 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7883 "Task-Weaken-" version ".tar.gz"))
7884 (sha256
7885 (base32
7886 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
7887 (build-system perl-build-system)
7888 (arguments
7889 '(#:phases (modify-phases %standard-phases
7890 (add-before 'configure 'set-search-path
7891 (lambda _
7892 ;; Work around "dotless @INC" build failure.
7893 (setenv "PERL5LIB"
7894 (string-append (getcwd) ":"
7895 (getenv "PERL5LIB")))
7896 #t)))))
7897 (home-page "http://search.cpan.org/dist/Task-Weaken/")
7898 (synopsis "Ensure that a platform has weaken support")
7899 (description "One recurring problem in modules that use Scalar::Util's
7900 weaken function is that it is not present in the pure-perl variant. If
7901 Scalar::Util is not available at all, it will issue a normal dependency on the
7902 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
7903 module does not have weaken, the install will bail out altogether with a long
7904 error encouraging the user to seek support.")
7905 (license (package-license perl))))
7906
7907 (define-public perl-template-toolkit
7908 (package
7909 (name "perl-template-toolkit")
7910 (version "2.26")
7911 (source
7912 (origin
7913 (method url-fetch)
7914 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
7915 "Template-Toolkit-" version ".tar.gz"))
7916 (sha256
7917 (base32
7918 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
7919 (build-system perl-build-system)
7920 (propagated-inputs
7921 `(("perl-appconfig" ,perl-appconfig)
7922 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7923 (home-page "http://search.cpan.org/dist/Template-Toolkit/")
7924 (synopsis "Template processing system for Perl")
7925 (description "The Template Toolkit is a collection of modules which
7926 implement an extensible template processing system. It was originally
7927 designed and remains primarily useful for generating dynamic web content, but
7928 it can be used equally well for processing any other kind of text based
7929 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
7930 (license (package-license perl))))
7931
7932 (define-public perl-template-timer
7933 (package
7934 (name "perl-template-timer")
7935 (version "1.00")
7936 (source
7937 (origin
7938 (method url-fetch)
7939 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
7940 "Template-Timer-" version ".tar.gz"))
7941 (sha256
7942 (base32
7943 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
7944 (build-system perl-build-system)
7945 (propagated-inputs
7946 `(("perl-template-toolkit" ,perl-template-toolkit)))
7947 (home-page "http://search.cpan.org/dist/Template-Timer/")
7948 (synopsis "Profiling for Template Toolkit")
7949 (description "Template::Timer provides inline profiling of the template
7950 processing in Perl code.")
7951 (license (list gpl3 artistic2.0))))
7952
7953 (define-public perl-term-encoding
7954 (package
7955 (name "perl-term-encoding")
7956 (version "0.02")
7957 (source
7958 (origin
7959 (method url-fetch)
7960 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
7961 "Term-Encoding-" version ".tar.gz"))
7962 (sha256
7963 (base32
7964 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
7965 (build-system perl-build-system)
7966 (native-inputs
7967 `(("perl-module-install" ,perl-module-install)))
7968 (home-page "http://search.cpan.org/dist/Term-Encoding/")
7969 (synopsis "Detect encoding of the current terminal")
7970 (description "Term::Encoding is a simple module to detect the encoding of
7971 the current terminal expects in various ways.")
7972 (license (package-license perl))))
7973
7974 (define-public perl-term-progressbar
7975 (package
7976 (name "perl-term-progressbar")
7977 (version "2.17")
7978 (source
7979 (origin
7980 (method url-fetch)
7981 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
7982 "Term-ProgressBar-" version ".tar.gz"))
7983 (sha256
7984 (base32
7985 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
7986 (build-system perl-build-system)
7987 (native-inputs
7988 `(("perl-capture-tiny" ,perl-capture-tiny)
7989 ("perl-test-exception" ,perl-test-exception)))
7990 (propagated-inputs
7991 `(("perl-class-methodmaker" ,perl-class-methodmaker)
7992 ("perl-term-readkey" ,perl-term-readkey)))
7993 (home-page "http://search.cpan.org/dist/Term-ProgressBar/")
7994 (synopsis "Progress meter on a standard terminal")
7995 (description "Term::ProgressBar provides a simple progress bar on the
7996 terminal, to let the user know that something is happening, roughly how much
7997 stuff has been done, and maybe an estimate at how long remains.")
7998 (license (package-license perl))))
7999
8000 (define-public perl-term-progressbar-quiet
8001 (package
8002 (name "perl-term-progressbar-quiet")
8003 (version "0.31")
8004 (source
8005 (origin
8006 (method url-fetch)
8007 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
8008 "Term-ProgressBar-Quiet-" version ".tar.gz"))
8009 (sha256
8010 (base32
8011 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
8012 (build-system perl-build-system)
8013 (propagated-inputs
8014 `(("perl-io-interactive" ,perl-io-interactive)
8015 ("perl-term-progressbar" ,perl-term-progressbar)
8016 ("perl-test-mockobject" ,perl-test-mockobject)))
8017 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Quiet/")
8018 (synopsis "Progress meter if run interactively")
8019 (description "Term::ProgressBar is a wonderful module for showing progress
8020 bars on the terminal. This module acts very much like that module when it is
8021 run interactively. However, when it is not run interactively (for example, as
8022 a cron job) then it does not show the progress bar.")
8023 (license (package-license perl))))
8024
8025 (define-public perl-term-progressbar-simple
8026 (package
8027 (name "perl-term-progressbar-simple")
8028 (version "0.03")
8029 (source
8030 (origin
8031 (method url-fetch)
8032 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
8033 "Term-ProgressBar-Simple-" version ".tar.gz"))
8034 (sha256
8035 (base32
8036 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
8037 (build-system perl-build-system)
8038 (propagated-inputs
8039 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
8040 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Simple/")
8041 (synopsis "Simple progress bars")
8042 (description "Term::ProgressBar::Simple tells you how much work has been
8043 done, how much is left to do, and estimate how long it will take.")
8044 (license (package-license perl))))
8045
8046 (define-public perl-term-readkey
8047 (package
8048 (name "perl-term-readkey")
8049 (version "2.37")
8050 (source
8051 (origin
8052 (method url-fetch)
8053 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
8054 "TermReadKey-" version ".tar.gz"))
8055 (sha256
8056 (base32
8057 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
8058 (build-system perl-build-system)
8059 (home-page "http://search.cpan.org/dist/TermReadKey/")
8060 (synopsis "Simple terminal control")
8061 (description "This module, ReadKey, provides ioctl control for terminals
8062 so the input modes can be changed (thus allowing reads of a single character
8063 at a time), and also provides non-blocking reads of stdin, as well as several
8064 other terminal related features, including retrieval/modification of the
8065 screen size, and retrieval/modification of the control characters.")
8066 (license (package-license perl))))
8067
8068 (define-public perl-term-size-any
8069 (package
8070 (name "perl-term-size-any")
8071 (version "0.002")
8072 (source
8073 (origin
8074 (method url-fetch)
8075 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8076 "Term-Size-Any-" version ".tar.gz"))
8077 (sha256
8078 (base32
8079 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
8080 (build-system perl-build-system)
8081 (native-inputs
8082 `(("perl-devel-hide" ,perl-devel-hide)))
8083 (propagated-inputs
8084 `(("perl-term-size-perl" ,perl-term-size-perl)))
8085 (home-page "http://search.cpan.org/dist/Term-Size-Any/")
8086 (synopsis "Retrieve terminal size")
8087 (description "This is a unified interface to retrieve terminal size. It
8088 loads one module of a list of known alternatives, each implementing some way
8089 to get the desired terminal information. This loaded module will actually do
8090 the job on behalf of @code{Term::Size::Any}.")
8091 (license (package-license perl))))
8092
8093 (define-public perl-term-size-perl
8094 (package
8095 (name "perl-term-size-perl")
8096 (version "0.029")
8097 (source
8098 (origin
8099 (method url-fetch)
8100 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8101 "Term-Size-Perl-" version ".tar.gz"))
8102 (sha256
8103 (base32
8104 "1rvm91bhdlxfwx5zka023p7szf2s7gm16wl27qiivvj66svsl6lc"))))
8105 (build-system perl-build-system)
8106 (home-page "http://search.cpan.org/dist/Term-Size-Perl/")
8107 (synopsis "Perl extension for retrieving terminal size (Perl version)")
8108 (description "This is yet another implementation of @code{Term::Size}.
8109 Now in pure Perl, with the exception of a C probe run at build time.")
8110 (license (package-license perl))))
8111
8112 (define-public perl-term-table
8113 (package
8114 (name "perl-term-table")
8115 (version "0.008")
8116 (source
8117 (origin
8118 (method url-fetch)
8119 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
8120 version ".tar.gz"))
8121 (sha256
8122 (base32
8123 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
8124 (build-system perl-build-system)
8125 (propagated-inputs
8126 `(("perl-importer" ,perl-importer)))
8127 (home-page "http://search.cpan.org/dist/Term-Table//")
8128 (synopsis "Format a header and rows into a table")
8129 (description "This module is able to generically format rows of data
8130 into tables.")
8131 (license (package-license perl))))
8132
8133 (define-public perl-text-aligner
8134 (package
8135 (name "perl-text-aligner")
8136 (version "0.12")
8137 (source
8138 (origin
8139 (method url-fetch)
8140 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8141 "Text-Aligner-" version ".tar.gz"))
8142 (sha256
8143 (base32
8144 "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
8145 (build-system perl-build-system)
8146 (native-inputs `(("perl-module-build" ,perl-module-build)))
8147 (home-page "http://search.cpan.org/dist/Text-Aligner/")
8148 (synopsis "Align text")
8149 (description "Text::Aligner exports a single function, align(), which is
8150 used to justify strings to various alignment styles.")
8151 (license x11)))
8152
8153 (define-public perl-text-balanced
8154 (package
8155 (name "perl-text-balanced")
8156 (version "2.03")
8157 (source
8158 (origin
8159 (method url-fetch)
8160 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
8161 "Text-Balanced-" version ".tar.gz"))
8162 (sha256
8163 (base32
8164 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
8165 (build-system perl-build-system)
8166 (home-page "http://search.cpan.org/dist/Text-Balanced/")
8167 (synopsis "Extract delimited text sequences from strings")
8168 (description "The Text::Balanced module can be used to extract delimited
8169 text sequences from strings.")
8170 (license (package-license perl))))
8171
8172 (define-public perl-text-csv
8173 (package
8174 (name "perl-text-csv")
8175 (version "1.33")
8176 (source
8177 (origin
8178 (method url-fetch)
8179 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
8180 "Text-CSV-" version ".tar.gz"))
8181 (sha256
8182 (base32
8183 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
8184 (build-system perl-build-system)
8185 (home-page "http://search.cpan.org/dist/Text-CSV/")
8186 (synopsis "Manipulate comma-separated values")
8187 (description "Text::CSV provides facilities for the composition and
8188 decomposition of comma-separated values. An instance of the Text::CSV class
8189 can combine fields into a CSV string and parse a CSV string into fields.")
8190 (license (package-license perl))))
8191
8192 (define-public perl-text-csv-xs
8193 (package
8194 (name "perl-text-csv-xs")
8195 (version "1.25")
8196 (source
8197 (origin
8198 (method url-fetch)
8199 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
8200 "Text-CSV_XS-" version ".tgz"))
8201 (sha256
8202 (base32
8203 "06zlfbqrwbl0g2g3bhk6046yy5pf2rz80fzcp8aj47rnswz2yx5k"))))
8204 (build-system perl-build-system)
8205 (home-page "http://search.cpan.org/dist/Text-CSV_XS/")
8206 (synopsis "Rountines for manipulating CSV files")
8207 (description "@code{Text::CSV_XS} provides facilities for the composition
8208 and decomposition of comma-separated values. An instance of the
8209 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
8210 CSV string into fields. The module accepts either strings or files as input
8211 and support the use of user-specified characters for delimiters, separators,
8212 and escapes.")
8213 (license (package-license perl))))
8214
8215 (define-public perl-text-diff
8216 (package
8217 (name "perl-text-diff")
8218 (version "1.45")
8219 (source
8220 (origin
8221 (method url-fetch)
8222 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8223 "Text-Diff-" version ".tar.gz"))
8224 (sha256
8225 (base32
8226 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
8227 (build-system perl-build-system)
8228 (propagated-inputs
8229 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
8230 (home-page "http://search.cpan.org/dist/Text-Diff/")
8231 (synopsis "Perform diffs on files and record sets")
8232 (description "Text::Diff provides a basic set of services akin to the GNU
8233 diff utility. It is not anywhere near as feature complete as GNU diff, but it
8234 is better integrated with Perl and available on all platforms. It is often
8235 faster than shelling out to a system's diff executable for small files, and
8236 generally slower on larger files.")
8237 (license (package-license perl))))
8238
8239 (define-public perl-text-format
8240 (package
8241 (name "perl-text-format")
8242 (version "0.61")
8243 (source (origin
8244 (method url-fetch)
8245 (uri (string-append
8246 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
8247 version ".tar.gz"))
8248 (sha256
8249 (base32
8250 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
8251 (build-system perl-build-system)
8252 (native-inputs
8253 `(("perl-module-build" ,perl-module-build)
8254 ("perl-test-pod" ,perl-test-pod)
8255 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8256 (home-page "http://search.cpan.org/dist/Text-Format/")
8257 (synopsis "Various subroutines to format text")
8258 (description "This package provides functions to format text in various
8259 ways like centering, paragraphing, and converting tabs to spaces and spaces
8260 to tabs.")
8261 (license perl-license)))
8262
8263 (define-public perl-text-glob
8264 (package
8265 (name "perl-text-glob")
8266 (version "0.11")
8267 (source
8268 (origin
8269 (method url-fetch)
8270 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8271 "Text-Glob-" version ".tar.gz"))
8272 (sha256
8273 (base32
8274 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
8275 (build-system perl-build-system)
8276 (native-inputs `(("perl-module-build" ,perl-module-build)))
8277 (home-page "http://search.cpan.org/dist/Text-Glob/")
8278 (synopsis "Match globbing patterns against text")
8279 (description "Text::Glob implements glob(3) style matching that can be
8280 used to match against text, rather than fetching names from a file system. If
8281 you want to do full file globbing use the File::Glob module instead.")
8282 (license (package-license perl))))
8283
8284 (define-public perl-text-neattemplate
8285 (package
8286 (name "perl-text-neattemplate")
8287 (version "0.1101")
8288 (source
8289 (origin
8290 (method url-fetch)
8291 (uri (string-append
8292 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
8293 "Text-NeatTemplate-" version ".tar.gz"))
8294 (sha256
8295 (base32
8296 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
8297 (build-system perl-build-system)
8298 (native-inputs
8299 `(("perl-module-build" ,perl-module-build)))
8300 (home-page
8301 "http://search.cpan.org/dist/Text-NeatTemplate/")
8302 (synopsis "Fast, middleweight template engine")
8303 (description
8304 "Text::NeatTemplate provides a simple, middleweight but fast
8305 template engine, for when you need speed rather than complex features,
8306 yet need more features than simple variable substitution.")
8307 (license (package-license perl))))
8308
8309 (define-public perl-text-roman
8310 (package
8311 (name "perl-text-roman")
8312 (version "3.5")
8313 (source
8314 (origin
8315 (method url-fetch)
8316 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
8317 version ".tar.gz"))
8318 (sha256
8319 (base32
8320 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
8321 (build-system perl-build-system)
8322 (home-page "http://search.cpan.org/dist/Text-Roman/")
8323 (synopsis "Convert between Roman and Arabic algorisms")
8324 (description "This package provides functions to convert between Roman and
8325 Arabic algorisms. It supports both conventional Roman algorisms (which range
8326 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
8327 algorism to indicate multiplication by 1000.")
8328 (license (package-license perl))))
8329
8330 (define-public perl-text-simpletable
8331 (package
8332 (name "perl-text-simpletable")
8333 (version "2.04")
8334 (source
8335 (origin
8336 (method url-fetch)
8337 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
8338 "Text-SimpleTable-" version ".tar.gz"))
8339 (sha256
8340 (base32
8341 "14sjmdcy7s73sk740g3ccmzmwhwd52x5ay3bjmibjlql1cag70ld"))))
8342 (build-system perl-build-system)
8343 (home-page "http://search.cpan.org/dist/Text-SimpleTable/")
8344 (synopsis "Simple ASCII tables")
8345 (description "Text::SimpleTable draws simple ASCII tables.")
8346 (license artistic2.0)))
8347
8348 (define-public perl-text-table
8349 (package
8350 (name "perl-text-table")
8351 (version "1.133")
8352 (source
8353 (origin
8354 (method url-fetch)
8355 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8356 "Text-Table-" version ".tar.gz"))
8357 (sha256
8358 (base32
8359 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
8360 (build-system perl-build-system)
8361 (native-inputs
8362 `(("perl-module-build" ,perl-module-build)))
8363 (propagated-inputs
8364 `(("perl-text-aligner" ,perl-text-aligner)))
8365 (home-page "http://search.cpan.org/dist/Text-Table/")
8366 (synopsis "Organize Data in Tables")
8367 (description "Text::Table renders plaintext tables.")
8368 (license x11)))
8369
8370 (define-public perl-text-template
8371 (package
8372 (name "perl-text-template")
8373 (version "1.47")
8374 (source
8375 (origin
8376 (method url-fetch)
8377 (uri (string-append
8378 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
8379 version
8380 ".tar.gz"))
8381 (sha256
8382 (base32
8383 "1z781cgz7wbn80lf3kqr2ad0pg6g1wlnim0822h8liw28k3l5msh"))))
8384 (build-system perl-build-system)
8385 (home-page
8386 "http://search.cpan.org/dist/Text-Template/")
8387 (synopsis
8388 "Expand template text with embedded Perl")
8389 (description
8390 "This is a library for generating letters, building HTML pages, or
8391 filling in templates generally. A template is a piece of text that has little
8392 Perl programs embedded in it here and there. When you fill in a template, you
8393 evaluate the little programs and replace them with their values.")
8394 (license perl-license)))
8395
8396 (define-public perl-text-unidecode
8397 (package
8398 (name "perl-text-unidecode")
8399 (version "1.23")
8400 (source
8401 (origin
8402 (method url-fetch)
8403 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
8404 "Text-Unidecode-" version ".tar.gz"))
8405 (sha256
8406 (base32
8407 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
8408 (build-system perl-build-system)
8409 (home-page "http://search.cpan.org/dist/Text-Unidecode/")
8410 (synopsis "Provide plain ASCII transliterations of Unicode text")
8411 (description "Text::Unidecode provides a function, unidecode(...) that
8412 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
8413 universally displayable characters between 0x00 and 0x7F). The representation
8414 is almost always an attempt at transliteration-- i.e., conveying, in Roman
8415 letters, the pronunciation expressed by the text in some other writing
8416 system.")
8417 (license (package-license perl))))
8418
8419 (define-public perl-threads
8420 (package
8421 (name "perl-threads")
8422 (version "2.21")
8423 (source
8424 (origin
8425 (method url-fetch)
8426 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
8427 version ".tar.gz"))
8428 (sha256
8429 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
8430 (build-system perl-build-system)
8431 (home-page "http://search.cpan.org/dist/threads/")
8432 (synopsis "Perl interpreter-based threads")
8433 (description "This module exposes interpreter threads to the Perl level.")
8434 (license perl-license)))
8435
8436 (define-public perl-throwable
8437 (package
8438 (name "perl-throwable")
8439 (version "0.200013")
8440 (source
8441 (origin
8442 (method url-fetch)
8443 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8444 "Throwable-" version ".tar.gz"))
8445 (sha256
8446 (base32
8447 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
8448 (build-system perl-build-system)
8449 (native-inputs
8450 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
8451 (propagated-inputs
8452 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8453 ("perl-module-runtime" ,perl-module-runtime)
8454 ("perl-moo" ,perl-moo)))
8455 (home-page "http://search.cpan.org/dist/Throwable/")
8456 (synopsis "Role for classes that can be thrown")
8457 (description "Throwable is a role for classes that are meant to be thrown
8458 as exceptions to standard program flow.")
8459 (license (package-license perl))))
8460
8461 (define-public perltidy
8462 (package
8463 (name "perltidy")
8464 (version "20160302")
8465 (source (origin
8466 (method url-fetch)
8467 (uri (string-append "mirror://sourceforge/perltidy/" version
8468 "/Perl-Tidy-" version ".tar.gz"))
8469 (sha256
8470 (base32
8471 "19yw63yh5s3pq7k3nkw6nsamg5b8vvwyhgbizslgxg0mqgc4xl3d"))))
8472 (build-system perl-build-system)
8473 (home-page "http://perltidy.sourceforge.net/")
8474 (synopsis "Perl script tidier")
8475 (description "This package contains a Perl script which indents and
8476 reformats Perl scripts to make them easier to read. The formatting can be
8477 controlled with command line parameters. The default parameter settings
8478 approximately follow the suggestions in the Perl Style Guide.")
8479 (license gpl2+)))
8480
8481 (define-public perl-tie-cycle
8482 (package
8483 (name "perl-tie-cycle")
8484 (version "1.225")
8485 (source
8486 (origin
8487 (method url-fetch)
8488 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
8489 version ".tar.gz"))
8490 (sha256
8491 (base32
8492 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
8493 (build-system perl-build-system)
8494 (home-page "http://search.cpan.org/dist/Tie-Cycle/")
8495 (synopsis "Cycle through a list of values")
8496 (description "You use @code{Tie::Cycle} to go through a list over and over
8497 again. Once you get to the end of the list, you go back to the beginning.")
8498 (license (package-license perl))))
8499
8500 (define-public perl-tie-ixhash
8501 (package
8502 (name "perl-tie-ixhash")
8503 (version "1.23")
8504 (source
8505 (origin
8506 (method url-fetch)
8507 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
8508 "Tie-IxHash-" version ".tar.gz"))
8509 (sha256
8510 (base32
8511 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
8512 (build-system perl-build-system)
8513 (native-inputs `(("perl-module-build" ,perl-module-build)))
8514 (home-page "http://search.cpan.org/dist/Tie-IxHash/")
8515 (synopsis "Ordered associative arrays for Perl")
8516 (description "This Perl module implements Perl hashes that preserve the
8517 order in which the hash elements were added. The order is not affected when
8518 values corresponding to existing keys in the IxHash are changed. The elements
8519 can also be set to any arbitrary supplied order. The familiar perl array
8520 operations can also be performed on the IxHash.")
8521 (license (package-license perl))))
8522
8523 (define-public perl-tie-toobject
8524 (package
8525 (name "perl-tie-toobject")
8526 (version "0.03")
8527 (source
8528 (origin
8529 (method url-fetch)
8530 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
8531 "Tie-ToObject-" version ".tar.gz"))
8532 (sha256
8533 (base32
8534 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
8535 (build-system perl-build-system)
8536 (propagated-inputs
8537 `(("perl-test-simple" ,perl-test-simple)))
8538 (home-page "http://search.cpan.org/dist/Tie-ToObject/")
8539 (synopsis "Tie to an existing Perl object")
8540 (description "This class provides a tie constructor that returns the
8541 object it was given as it's first argument. This way side effects of calling
8542 $object->TIEHASH are avoided.")
8543 (license (package-license perl))))
8544
8545 (define-public perl-time-duration
8546 (package
8547 (name "perl-time-duration")
8548 (version "1.1")
8549 (source
8550 (origin
8551 (method url-fetch)
8552 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
8553 "Time-Duration-" version ".tar.gz"))
8554 (sha256
8555 (base32
8556 "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
8557 (build-system perl-build-system)
8558 (native-inputs
8559 `(("perl-module-install" ,perl-module-install)
8560 ("perl-test-pod" ,perl-test-pod)
8561 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8562 (home-page "http://search.cpan.org/dist/Time-Duration/")
8563 (synopsis "English expression of durations")
8564 (description "This module provides functions for expressing durations in
8565 rounded or exact terms.")
8566 (license (package-license perl))))
8567
8568 (define-public perl-time-duration-parse
8569 (package
8570 (name "perl-time-duration-parse")
8571 (version "0.13")
8572 (source
8573 (origin
8574 (method url-fetch)
8575 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8576 "Time-Duration-Parse-" version ".tar.gz"))
8577 (sha256
8578 (base32
8579 "0affdzhsiy7dr6dzj2p6m9lynmjh53k31bprfsfa21pz8551hjj1"))))
8580 (build-system perl-build-system)
8581 (native-inputs
8582 `(("perl-time-duration" ,perl-time-duration)))
8583 (propagated-inputs
8584 `(("perl-exporter-lite" ,perl-exporter-lite)))
8585 (home-page "http://search.cpan.org/dist/Time-Duration-Parse/")
8586 (synopsis "Parse time duration strings")
8587 (description "Time::Duration::Parse is a module to parse human readable
8588 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
8589 (license (package-license perl))))
8590
8591 (define-public perl-time-hires
8592 (package
8593 (name "perl-time-hires")
8594 (version "1.9758")
8595 (source (origin
8596 (method url-fetch)
8597 (uri (string-append
8598 "mirror://cpan/authors/id/J/JH/JHI/Time-HiRes-"
8599 version ".tar.gz"))
8600 (sha256
8601 (base32
8602 "07jbydcdzpjm6i4nidci0rlklx4kla210fsl6zishw0yq5di9yjv"))))
8603 (build-system perl-build-system)
8604 (home-page "http://search.cpan.org/dist/Time-HiRes/")
8605 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
8606 (description "This package implements @code{usleep}, @code{ualarm}, and
8607 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
8608 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
8609 (license perl-license)))
8610
8611 (define-public perl-time-local
8612 (package
8613 (name "perl-time-local")
8614 (version "1.2300")
8615 (source
8616 (origin
8617 (method url-fetch)
8618 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8619 "Time-Local-" version ".tar.gz"))
8620 (sha256
8621 (base32
8622 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
8623 (build-system perl-build-system)
8624 (home-page "http://search.cpan.org/dist/Time-Local/")
8625 (synopsis "Efficiently compute time from local and GMT time")
8626 (description "This module provides functions that are the inverse of
8627 built-in perl functions localtime() and gmtime(). They accept a date as a
8628 six-element array, and return the corresponding time(2) value in seconds since
8629 the system epoch.")
8630 (license (package-license perl))))
8631
8632 (define-public perl-time-piece
8633 (package
8634 (name "perl-time-piece")
8635 (version "1.3203")
8636 (source
8637 (origin
8638 (method url-fetch)
8639 (uri (string-append
8640 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
8641 version ".tar.gz"))
8642 (sha256
8643 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
8644 (build-system perl-build-system)
8645 (home-page "http://search.cpan.org/dist/Time-Piece/")
8646 (synopsis "Object-Oriented time objects")
8647 (description
8648 "This module replaces the standard @code{localtime} and @code{gmtime}
8649 functions with implementations that return objects. It does so in a
8650 backwards-compatible manner, so that using these functions as documented will
8651 still work as expected.")
8652 (license perl-license)))
8653
8654 (define-public perl-timedate
8655 (package
8656 (name "perl-timedate")
8657 (version "2.30")
8658 (source
8659 (origin
8660 (method url-fetch)
8661 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
8662 "TimeDate-" version ".tar.gz"))
8663 (sha256
8664 (base32
8665 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
8666 (build-system perl-build-system)
8667 (home-page "http://search.cpan.org/dist/TimeDate/")
8668 (synopsis "Date parsing/formatting subroutines")
8669 (description "This module provides routines for parsing date string into
8670 time values and formatting dates into ASCII strings.")
8671 (license (package-license perl))))
8672
8673 (define-public perl-time-mock
8674 (package
8675 (name "perl-time-mock")
8676 (version "v0.0.2")
8677 (source
8678 (origin
8679 (method url-fetch)
8680 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
8681 "Time-Mock-" version ".tar.gz"))
8682 (sha256
8683 (base32
8684 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
8685 (build-system perl-build-system)
8686 (native-inputs
8687 `(("perl-module-build" ,perl-module-build)))
8688 (propagated-inputs
8689 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
8690 (home-page "http://search.cpan.org/dist/Time-Mock/")
8691 (synopsis "Shift and scale time")
8692 (description "This module allows you to speed up your sleep(), alarm(),
8693 and time() calls.")
8694 (license (package-license perl))))
8695
8696 (define-public perl-tree-simple
8697 (package
8698 (name "perl-tree-simple")
8699 (version "1.25")
8700 (source
8701 (origin
8702 (method url-fetch)
8703 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8704 "Tree-Simple-" version ".tgz"))
8705 (sha256
8706 (base32
8707 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
8708 (build-system perl-build-system)
8709 (native-inputs
8710 `(("perl-module-build" ,perl-module-build)
8711 ("perl-test-exception" ,perl-test-exception)))
8712 (propagated-inputs
8713 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
8714 (home-page "http://search.cpan.org/dist/Tree-Simple/")
8715 (synopsis "Simple tree object")
8716 (description "This module in a fully object-oriented implementation of a
8717 simple n-ary tree.")
8718 (license (package-license perl))))
8719
8720 (define-public perl-tree-simple-visitorfactory
8721 (package
8722 (name "perl-tree-simple-visitorfactory")
8723 (version "0.12")
8724 (source
8725 (origin
8726 (method url-fetch)
8727 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8728 "Tree-Simple-VisitorFactory-" version ".tgz"))
8729 (sha256
8730 (base32
8731 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
8732 (build-system perl-build-system)
8733 (native-inputs
8734 `(("perl-module-build" ,perl-module-build)
8735 ("perl-test-exception" ,perl-test-exception)))
8736 (propagated-inputs
8737 `(("perl-tree-simple" ,perl-tree-simple)
8738 ("perl-base" ,perl-base)))
8739 (home-page "http://search.cpan.org/dist/Tree-Simple-VisitorFactory/")
8740 (synopsis "Factory object for dispensing Visitor objects")
8741 (description "This module is a factory for dispensing
8742 Tree::Simple::Visitor::* objects.")
8743 (license (package-license perl))))
8744
8745 (define-public perl-try-tiny
8746 (package
8747 (name "perl-try-tiny")
8748 (version "0.22")
8749 (source
8750 (origin
8751 (method url-fetch)
8752 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8753 "Try-Tiny-" version ".tar.gz"))
8754 (sha256
8755 (base32
8756 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
8757 (build-system perl-build-system)
8758 (home-page "http://search.cpan.org/dist/Try-Tiny/")
8759 (synopsis "Minimal try/catch with proper preservation of $@@")
8760 (description "This module provides bare bones try/catch/finally statements
8761 that are designed to minimize common mistakes with eval blocks, and nothing
8762 else.")
8763 (license x11)))
8764
8765 (define-public perl-type-tie
8766 (package
8767 (name "perl-type-tie")
8768 (version "0.009")
8769 (source
8770 (origin
8771 (method url-fetch)
8772 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8773 "Type-Tie-" version ".tar.gz"))
8774 (sha256
8775 (base32
8776 "1wv32kd7gx4kfyvzs13y029f49qbbji991wawvarac7rlz09wpan"))))
8777 (build-system perl-build-system)
8778 (native-inputs
8779 `(("perl-test-fatal" ,perl-test-fatal)
8780 ("perl-test-requires" ,perl-test-requires)))
8781 (propagated-inputs
8782 `(("perl-exporter-tiny" ,perl-exporter-tiny)
8783 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
8784 (home-page "http://search.cpan.org/dist/Type-Tie/")
8785 (synopsis "Tie a variable to a type constraint")
8786 (description "This module exports a single function: @code{ttie}. It ties
8787 a variable to a type constraint, ensuring that whatever values stored in the
8788 variable will conform to the type constraint. If the type constraint has
8789 coercions, these will be used if necessary to ensure values assigned to the
8790 variable conform.")
8791 (license (package-license perl))))
8792
8793 (define-public perl-type-tiny
8794 (package
8795 (name "perl-type-tiny")
8796 (version "1.002002")
8797 (source
8798 (origin
8799 (method url-fetch)
8800 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8801 "Type-Tiny-" version ".tar.gz"))
8802 (sha256
8803 (base32
8804 "0b48v28rvl20969gyr62yg6gr6a2nj9qik0bixavbjdmk67hqnx8"))))
8805 (build-system perl-build-system)
8806 (native-inputs
8807 `(("perl-test-warnings" ,perl-test-warnings)))
8808 (propagated-inputs
8809 `(("perl-devel-lexalias" ,perl-devel-lexalias)
8810 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
8811 ("perl-exporter-tiny" ,perl-exporter-tiny)
8812 ("perl-moo" ,perl-moo)
8813 ("perl-moose" ,perl-moose)
8814 ("perl-mouse" ,perl-mouse)
8815 ("perl-ref-util-xs" ,perl-ref-util-xs)
8816 ("perl-regexp-util" ,perl-regexp-util)
8817 ("perl-type-tie" ,perl-type-tie)))
8818 (home-page "http://search.cpan.org/dist/Type-Tiny/")
8819 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
8820 (description "@code{Type::Tiny} is a small class for writing type
8821 constraints, inspired by Moose's type constraint API. It has only one
8822 non-core dependency (and even that is simply a module that was previously
8823 distributed as part of @code{Type::Tiny} but has since been spun off), and can
8824 be used with Moose, Mouse and Moo (or none of the above).")
8825 (license (package-license perl))))
8826
8827 (define-public perl-type-tiny-xs
8828 (package
8829 (name "perl-type-tiny-xs")
8830 (version "0.012")
8831 (source
8832 (origin
8833 (method url-fetch)
8834 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
8835 version ".tar.gz"))
8836 (sha256
8837 (base32
8838 "05nbr898cvjjh1wsy55l84zasx65gijdxc6dnn558ihns8zx6gm9"))))
8839 (build-system perl-build-system)
8840 (home-page "http://search.cpan.org/dist/Type-Tiny-XS/")
8841 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
8842 (description "This module is optionally used by @code{Type::Tiny} to
8843 provide faster, C-based implementations of some type constraints. This
8844 package has only core dependencies, and does not depend on @code{Type::Tiny},
8845 so other data validation frameworks might also consider using it.")
8846 (license perl-license)))
8847
8848 (define-public perl-types-path-tiny
8849 (package
8850 (name "perl-types-path-tiny")
8851 (version "0.005")
8852 (source
8853 (origin
8854 (method url-fetch)
8855 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8856 "Types-Path-Tiny-" version ".tar.gz"))
8857 (sha256
8858 (base32
8859 "09nf167ssi4rgj8hhzylwp3zdx61njdpyfri43arcmk9aqn7f0pp"))))
8860 (build-system perl-build-system)
8861 (propagated-inputs
8862 `(("perl-file-pushd" ,perl-file-pushd)
8863 ("perl-path-tiny" ,perl-path-tiny)
8864 ("perl-type-tiny" ,perl-type-tiny)
8865 ("perl-exporter-tiny" ,perl-exporter-tiny)))
8866 (home-page "http://search.cpan.org/dist/Types-Path-Tiny/")
8867 (synopsis "Types and coercions for Moose and Moo")
8868 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
8869 etc. It handles two important types of coercion: coercing objects with
8870 overloaded stringification, and coercing to absolute paths. It also can check
8871 to ensure that files or directories exist.")
8872 (license artistic2.0)))
8873
8874 (define-public perl-types-serialiser
8875 (package
8876 (name "perl-types-serialiser")
8877 (version "1.0")
8878 (source
8879 (origin
8880 (method url-fetch)
8881 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
8882 "Types-Serialiser-" version ".tar.gz"))
8883 (sha256
8884 (base32
8885 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
8886 (build-system perl-build-system)
8887 (propagated-inputs
8888 `(("perl-common-sense" ,perl-common-sense)))
8889 (home-page "http://search.cpan.org/dist/Types-Serialiser/")
8890 (synopsis "Data types for common serialisation formats")
8891 (description "This module provides some extra datatypes that are used by
8892 common serialisation formats such as JSON or CBOR.")
8893 (license (package-license perl))))
8894
8895 (define-public perl-unicode-normalize
8896 (package
8897 (name "perl-unicode-normalize")
8898 (version "1.25")
8899 (source
8900 (origin
8901 (method url-fetch)
8902 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8903 "Unicode-Normalize-" version ".tar.gz"))
8904 (sha256
8905 (base32
8906 "0v04bcyjfcfap4kfpc8q3ikq3j7s68nym4ckw3iasmmksdskmcq0"))))
8907 (build-system perl-build-system)
8908 (arguments
8909 '(#:phases (modify-phases %standard-phases
8910 (add-before 'configure 'set-search-path
8911 (lambda _
8912 ;; Work around "dotless @INC" build failure.
8913 (setenv "PERL5LIB"
8914 (string-append (getcwd) ":"
8915 (getenv "PERL5LIB")))
8916 #t)))))
8917 (home-page "http://search.cpan.org/dist/Unicode-Normalize/")
8918 (synopsis "Unicode normalization forms")
8919 (description "This Perl module provides Unicode normalization forms.")
8920 (license (package-license perl))))
8921
8922 (define-public perl-unicode-collate
8923 (package
8924 (name "perl-unicode-collate")
8925 (version "1.18")
8926 (source
8927 (origin
8928 (method url-fetch)
8929 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
8930 "Unicode-Collate-" version ".tar.gz"))
8931 (sha256
8932 (base32
8933 "1lq4p3mqqljhhy8wyiyahris33j4m5qfzpi6iacmcqjzw5g4afbm"))))
8934 (build-system perl-build-system)
8935 (arguments
8936 `(#:phases
8937 (modify-phases %standard-phases
8938 (add-before 'configure 'set-perl-search-path
8939 (lambda _
8940 ;; Work around "dotless @INC" build failure.
8941 (setenv "PERL5LIB"
8942 (string-append (getcwd) ":"
8943 (getenv "PERL5LIB")))
8944 #t)))))
8945 (propagated-inputs
8946 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
8947 (home-page "http://search.cpan.org/dist/Unicode-Collate/")
8948 (synopsis "Unicode collation algorithm")
8949 (description "This package provides tools for sorting and comparing
8950 Unicode data.")
8951 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
8952 ;; license.
8953 (license (list (package-license perl) expat))))
8954
8955 (define-public perl-unicode-linebreak
8956 (package
8957 (name "perl-unicode-linebreak")
8958 (version "2016.003")
8959 (source (origin
8960 (method url-fetch)
8961 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
8962 "Unicode-LineBreak-" version ".tar.gz"))
8963 (sha256
8964 (base32
8965 "096wf5x99swx7l7yd8pm2aw50g596nf50rkq7250zjcc1acjskp6"))))
8966 (build-system perl-build-system)
8967 (propagated-inputs
8968 `(("perl-mime-charset" ,perl-mime-charset)))
8969 (home-page "http://search.cpan.org/dist/Unicode-LineBreak/")
8970 (synopsis "Unicode line breaking algorithm")
8971 (description
8972 "@code{Unicode::LineBreak} implements the line breaking algorithm
8973 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
8974 defined by Annex #11 is used to determine breaking positions.")
8975 (license (package-license perl))))
8976
8977 (define-public perl-unicode-utf8
8978 (package
8979 (name "perl-unicode-utf8")
8980 (version "0.62")
8981 (source (origin
8982 (method url-fetch)
8983 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
8984 "Unicode-UTF8-" version ".tar.gz"))
8985 (sha256
8986 (base32
8987 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
8988 (build-system perl-build-system)
8989 (native-inputs
8990 `(("perl-test-fatal" ,perl-test-fatal)
8991 ("perl-test-leaktrace" ,perl-test-leaktrace)
8992 ("perl-variable-magic" ,perl-variable-magic)
8993 ("perl-test-pod" ,perl-test-pod)))
8994 (home-page "http://search.cpan.org/dist/Unicode-UTF8/")
8995 (synopsis "Encoding and decoding of UTF-8 encoding form")
8996 (description
8997 "This module provides functions to encode and decode UTF-8 encoding form
8998 as specified by Unicode and ISO/IEC 10646:2011.")
8999 (license (package-license perl))))
9000
9001 (define-public perl-universal-can
9002 (package
9003 (name "perl-universal-can")
9004 (version "1.20140328")
9005 (source
9006 (origin
9007 (method url-fetch)
9008 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9009 "UNIVERSAL-can-" version ".tar.gz"))
9010 (sha256
9011 (base32
9012 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
9013 (build-system perl-build-system)
9014 (home-page "http://search.cpan.org/dist/UNIVERSAL-can/")
9015 (synopsis "UNIVERSAL::can() reimplementation")
9016 (description "This module attempts to work around people calling
9017 UNIVERSAL::can() as a function, which it is not.")
9018 (license (package-license perl))))
9019
9020 (define-public perl-universal-isa
9021 (package
9022 (name "perl-universal-isa")
9023 (version "1.20140927")
9024 (source
9025 (origin
9026 (method url-fetch)
9027 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9028 "UNIVERSAL-isa-" version ".tar.gz"))
9029 (sha256
9030 (base32
9031 "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
9032 (build-system perl-build-system)
9033 (native-inputs
9034 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
9035 (home-page "http://search.cpan.org/dist/UNIVERSAL-isa/")
9036 (synopsis "UNIVERSAL::isa() reimplementation")
9037 (description "This module attempts to recover from people calling
9038 UNIVERSAL::isa as a function.")
9039 (license (package-license perl))))
9040
9041 (define-public perl-universal-require
9042 (package
9043 (name "perl-universal-require")
9044 (version "0.18")
9045 (source
9046 (origin
9047 (method url-fetch)
9048 (uri (string-append
9049 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
9050 version ".tar.gz"))
9051 (sha256
9052 (base32
9053 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
9054 (build-system perl-build-system)
9055 (home-page "http://search.cpan.org/dist/UNIVERSAL-require/")
9056 (synopsis "Require modules from a variable")
9057 (description "This module lets you require other modules where the module
9058 name is in a variable, something you can't do with the @code{require}
9059 built-in.")
9060 (license (package-license perl))))
9061
9062 (define-public perl-variable-magic
9063 (package
9064 (name "perl-variable-magic")
9065 (version "0.62")
9066 (source
9067 (origin
9068 (method url-fetch)
9069 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
9070 "Variable-Magic-" version ".tar.gz"))
9071 (sha256
9072 (base32
9073 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
9074 (build-system perl-build-system)
9075 (home-page "http://search.cpan.org/dist/Variable-Magic/")
9076 (synopsis "Associate user-defined magic to variables from Perl")
9077 (description "Magic is Perl's way of enhancing variables. This mechanism
9078 lets the user add extra data to any variable and hook syntactical
9079 operations (such as access, assignment or destruction) that can be applied to
9080 it. With this module, you can add your own magic to any variable without
9081 having to write a single line of XS.")
9082 (license (package-license perl))))
9083
9084 (define-public perl-xml-writer
9085 (package
9086 (name "perl-xml-writer")
9087 (version "0.625")
9088 (source
9089 (origin
9090 (method url-fetch)
9091 (uri (string-append
9092 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
9093 version
9094 ".tar.gz"))
9095 (sha256
9096 (base32
9097 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
9098 (build-system perl-build-system)
9099 (home-page "http://search.cpan.org/dist/XML-Writer/")
9100 (synopsis "Easily generate well-formed, namespace-aware XML")
9101 (description "@code{XML::Writer} is a simple Perl module for writing XML
9102 documents: it takes care of constructing markup and escaping data correctly.
9103 By default, it also performs a significant amount of well-formedness checking
9104 on the output to make certain (for example) that start and end tags match,
9105 that there is exactly one document element, and that there are not duplicate
9106 attribute names.")
9107 ;; Redistribution and use in source and compiled forms, with or without
9108 ;; modification, are permitted under any circumstances. No warranty.
9109 (license public-domain)))
9110
9111 (define-public perl-xs-object-magic
9112 (package
9113 (name "perl-xs-object-magic")
9114 (version "0.04")
9115 (source (origin
9116 (method url-fetch)
9117 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
9118 "XS-Object-Magic-" version ".tar.gz"))
9119 (sha256
9120 (base32
9121 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
9122 (build-system perl-build-system)
9123 (native-inputs
9124 `(("perl-extutils-depends" ,perl-extutils-depends)
9125 ("perl-module-install" ,perl-module-install)
9126 ("perl-test-fatal" ,perl-test-fatal)))
9127 (home-page "http://search.cpan.org/dist/XS-Object-Magic/")
9128 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
9129 (description
9130 "This way of associating structs with Perl space objects is designed to
9131 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
9132 (structs can be associated with any data type) and opaque (the C pointer is
9133 neither visible nor modifiable from Perl space).")
9134 (license (package-license perl))))
9135
9136 (define-public perl-yaml
9137 (package
9138 (name "perl-yaml")
9139 (version "1.24")
9140 (source
9141 (origin
9142 (method url-fetch)
9143 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
9144 "YAML-" version ".tar.gz"))
9145 (sha256
9146 (base32
9147 "1dpzgnjbd8yvf94vf45cmyj5bc6vrm6bchhx9xqwxqd5f9d093dm"))))
9148 (build-system perl-build-system)
9149 (native-inputs
9150 `(("perl-test-yaml" ,perl-test-yaml)))
9151 (home-page "http://search.cpan.org/dist/YAML/")
9152 (synopsis "YAML for Perl")
9153 (description "The YAML.pm module implements a YAML Loader and Dumper based
9154 on the YAML 1.0 specification.")
9155 (license (package-license perl))))
9156
9157 (define-public perl-yaml-libyaml
9158 (package
9159 (name "perl-yaml-libyaml")
9160 (version "0.69")
9161 (source
9162 (origin
9163 (method url-fetch)
9164 (uri (string-append
9165 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
9166 version
9167 ".tar.gz"))
9168 (sha256
9169 (base32
9170 "06msvj3vmjszl5zj1k7g47ll0kkds9gdb5sky0q27lh4zw1vlj33"))))
9171 (build-system perl-build-system)
9172 (home-page
9173 "http://search.cpan.org/dist/YAML-LibYAML/")
9174 (synopsis
9175 "Perl YAML Serialization using XS and libyaml")
9176 (description
9177 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
9178 best YAML support to date.")
9179 (license perl-license)))
9180
9181 (define-public perl-yaml-tiny
9182 (package
9183 (name "perl-yaml-tiny")
9184 (version "1.66")
9185 (source
9186 (origin
9187 (method url-fetch)
9188 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9189 "YAML-Tiny-" version ".tar.gz"))
9190 (sha256
9191 (base32
9192 "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
9193 (build-system perl-build-system)
9194 (native-inputs
9195 `(("perl-json-maybexs" ,perl-json-maybexs)
9196 ("perl-module-build-tiny" ,perl-module-build-tiny)))
9197 (arguments
9198 `(#:tests? #f)) ;requires Test::More >= 0.99
9199 (home-page "http://search.cpan.org/dist/YAML-Tiny/")
9200 (synopsis "Read/Write YAML files")
9201 (description "YAML::Tiny is a perl class for reading and writing
9202 YAML-style files, written with as little code as possible, reducing load time
9203 and memory overhead.")
9204 (license (package-license perl))))
9205
9206 (define-public perl-parse-recdescent
9207 (package
9208 (name "perl-parse-recdescent")
9209 (version "1.967015")
9210 (source
9211 (origin
9212 (method url-fetch)
9213 (uri (string-append
9214 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
9215 version
9216 ".tar.gz"))
9217 (sha256
9218 (base32
9219 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
9220 (build-system perl-build-system)
9221 (native-inputs
9222 `(("perl-module-build" ,perl-module-build)))
9223 (home-page
9224 "http://search.cpan.org/dist/Parse-RecDescent/")
9225 (synopsis "Generate recursive-descent parsers")
9226 (description
9227 "@code{Parse::RecDescent} can incrementally generate top-down
9228 recursive-descent text parsers from simple yacc-like grammar specifications.")
9229 (license perl-license)))
9230
9231 (define-public perl-parse-yapp
9232 (package
9233 (name "perl-parse-yapp")
9234 (version "1.21")
9235 (source
9236 (origin
9237 (method url-fetch)
9238 (uri (string-append
9239 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
9240 version
9241 ".tar.gz"))
9242 (sha256
9243 (base32
9244 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
9245 (build-system perl-build-system)
9246 (home-page "http://search.cpan.org/dist/Parse-Yapp/")
9247 (synopsis "Generate and use LALR parsers")
9248 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
9249 grammars to generate Perl object oriented parser modules.")
9250 (license (package-license perl))))
9251
9252 \f
9253 ;;; Some packaged modules need versions of core modules that are newer than
9254 ;;; those in our perl 5.16.1.
9255
9256 (define-public perl-cpan-meta
9257 (package
9258 (name "perl-cpan-meta")
9259 (version "2.143240")
9260 (source
9261 (origin
9262 (method url-fetch)
9263 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9264 "CPAN-Meta-" version ".tar.gz"))
9265 (sha256
9266 (base32
9267 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
9268 (build-system perl-build-system)
9269 (propagated-inputs
9270 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
9271 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
9272 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
9273 (home-page "http://search.cpan.org/dist/CPAN-Meta/")
9274 (synopsis "Distribution metadata for a CPAN dist")
9275 (description "Software distributions released to the CPAN include a
9276 META.json or, for older distributions, META.yml, which describes the
9277 distribution, its contents, and the requirements for building and installing
9278 the distribution. The data structure stored in the META.json file is
9279 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
9280 represent this distribution metadata (or distmeta), along with some helpful
9281 methods for interrogating that data.")
9282 (license (package-license perl))))
9283
9284 (define-public perl-cpan-meta-requirements
9285 (package
9286 (name "perl-cpan-meta-requirements")
9287 (version "2.140")
9288 (source
9289 (origin
9290 (method url-fetch)
9291 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9292 "CPAN-Meta-Requirements-" version ".tar.gz"))
9293 (sha256
9294 (base32
9295 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
9296 (build-system perl-build-system)
9297 (home-page "http://search.cpan.org/dist/CPAN-Meta-Requirements/")
9298 (synopsis "Set of version requirements for a CPAN dist")
9299 (description "A CPAN::Meta::Requirements object models a set of version
9300 constraints like those specified in the META.yml or META.json files in CPAN
9301 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
9302 adding more and more constraints, and will reduce them to the simplest
9303 representation.")
9304 (license (package-license perl))))
9305
9306 (define-public perl-cpan-meta-yaml
9307 (package
9308 (name "perl-cpan-meta-yaml")
9309 (version "0.018")
9310 (source
9311 (origin
9312 (method url-fetch)
9313 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9314 "CPAN-Meta-YAML-" version ".tar.gz"))
9315 (sha256
9316 (base32
9317 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
9318 (build-system perl-build-system)
9319 (arguments
9320 `(#:tests? #f)) ;Tests require Test::More >= 0.99
9321 (home-page "http://search.cpan.org/dist/CPAN-Meta-YAML/")
9322 (synopsis "Read and write a subset of YAML for CPAN Meta files")
9323 (description "This module implements a subset of the YAML specification
9324 for use in reading and writing CPAN metadata files like META.yml and
9325 MYMETA.yml.")
9326 (license (package-license perl))))
9327
9328 (define-public perl-module-build
9329 (package
9330 (name "perl-module-build")
9331 (version "0.4220")
9332 (source
9333 (origin
9334 (method url-fetch)
9335 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
9336 "Module-Build-" version ".tar.gz"))
9337 (sha256
9338 (base32
9339 "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
9340 (build-system perl-build-system)
9341 (propagated-inputs
9342 `(("perl-cpan-meta" ,perl-cpan-meta)))
9343 (home-page "http://search.cpan.org/dist/Module-Build/")
9344 (synopsis "Build and install Perl modules")
9345 (description "@code{Module::Build} is a system for building, testing, and
9346 installing Perl modules; it used to be part of Perl itself until version 5.22,
9347 which dropped it. It is meant to be an alternative to
9348 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
9349 through subclassing in a much more straightforward way than with
9350 @code{MakeMaker}. It also does not require a @command{make} on your
9351 system---most of the @code{Module::Build} code is pure-Perl.")
9352 (license (package-license perl))))
9353
9354 (define-public perl-parse-cpan-meta
9355 (package
9356 (name "perl-parse-cpan-meta")
9357 (version "2.150010")
9358 (source
9359 (origin
9360 (method url-fetch)
9361 ;; This module is now known as CPAN::Meta on CPAN.
9362 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9363 "CPAN-Meta-" version ".tar.gz"))
9364 (sha256
9365 (base32
9366 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
9367 (build-system perl-build-system)
9368 (propagated-inputs
9369 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
9370 (home-page "http://search.cpan.org/dist/Parse-CPAN-Meta/")
9371 (synopsis "Parse META.yml and META.json CPAN metadata files")
9372 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
9373 files, using JSON::PP and/or CPAN::Meta::YAML.")
9374 (license (package-license perl))))
9375
9376 (define-public perl-scalar-list-utils
9377 (package
9378 (name "perl-scalar-list-utils")
9379 (version "1.50")
9380 (source
9381 (origin
9382 (method url-fetch)
9383 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
9384 "Scalar-List-Utils-" version ".tar.gz"))
9385 (sha256
9386 (base32
9387 "0x9n0617gjjcqa4nk5biiwkxdi90xpdfg6z07gjr009qjg3bkah6"))))
9388 (build-system perl-build-system)
9389 (home-page "http://search.cpan.org/dist/Scalar-List-Utils/")
9390 (synopsis "Common Scalar and List utility subroutines")
9391 (description "This package contains a selection of subroutines that people
9392 have expressed would be nice to have in the perl core, but the usage would not
9393 really be high enough to warrant the use of a keyword, and the size so small
9394 such that being individual extensions would be wasteful.")
9395 (license (package-license perl))))
9396
9397 (define-public perl-shell-command
9398 (package
9399 (name "perl-shell-command")
9400 (version "0.06")
9401 (source
9402 (origin
9403 (method url-fetch)
9404 (uri (string-append
9405 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
9406 version
9407 ".tar.gz"))
9408 (sha256
9409 (base32
9410 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
9411 (build-system perl-build-system)
9412 (home-page
9413 "http://search.cpan.org/dist/Shell-Command/")
9414 (synopsis
9415 "Cross-platform functions emulating common shell commands")
9416 (description
9417 "Shell::Command is a thin wrapper around ExtUtils::Command.")
9418 (license (package-license perl))))
9419
9420 ;;; END: Core module overrides
9421
9422 (define-public perl-file-find-object
9423 (package
9424 (name "perl-file-find-object")
9425 (version "v0.2.13")
9426 (source
9427 (origin
9428 (method url-fetch)
9429 (uri (string-append
9430 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
9431 version
9432 ".tar.gz"))
9433 (sha256
9434 (base32
9435 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
9436 (build-system perl-build-system)
9437 (native-inputs
9438 `(("perl-module-build" ,perl-module-build)))
9439 (inputs
9440 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
9441 (home-page
9442 "http://search.cpan.org/dist/File-Find-Object/")
9443 (synopsis
9444 "Object-oriented File::Find replacement in Perl")
9445 (description "File::Find::Object is an object-oriented
9446 File::Find replacement in Perl.")
9447 (license artistic2.0)))
9448
9449 (define-public perl-file-find-object-rule
9450 (package
9451 (name "perl-file-find-object-rule")
9452 (version "0.0305")
9453 (source
9454 (origin
9455 (method url-fetch)
9456 (uri (string-append
9457 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
9458 version
9459 ".tar.gz"))
9460 (sha256
9461 (base32
9462 "0hs4n3w99q4ylkhg3qhzcwkxqn7zblfj1zjdgl06ca30afkk4cv6"))))
9463 (build-system perl-build-system)
9464 (native-inputs
9465 `(("perl-module-build" ,perl-module-build)))
9466 (inputs
9467 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
9468 ("perl-file-find-object" ,perl-file-find-object)
9469 ("perl-number-compare" ,perl-number-compare)
9470 ("perl-text-glob" ,perl-text-glob)))
9471 (home-page
9472 "http://search.cpan.org/dist/File-Find-Object-Rule/")
9473 (synopsis
9474 "Alternative interface to File::Find::Object")
9475 (description "File::Find::Object::Rule is an alternative Perl
9476 interface to File::Find::Object.")
9477 (license (package-license perl))))
9478
9479 (define-public perl-font-ttf
9480 (package
9481 (name "perl-font-ttf")
9482 (version "1.06")
9483 (source (origin
9484 (method url-fetch)
9485 (uri (string-append
9486 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
9487 version ".tar.gz"))
9488 (sha256
9489 (base32
9490 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
9491 (build-system perl-build-system)
9492 (propagated-inputs
9493 `(("perl-io-string" ,perl-io-string)))
9494 (home-page "http://search.cpan.org/dist/Font-TTF/")
9495 (synopsis "TTF font support for Perl")
9496 (description "This package provides a Perl module for TrueType/OpenType
9497 font hacking. It supports reading, processing and writing of the following
9498 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
9499 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
9500 prop, vhea, vmtx and the reading and writing of all other table types.")
9501 (license artistic2.0)))
9502
9503 (define-public perl-libtime-parsedate
9504 (package
9505 (name "perl-libtime-parsedate")
9506 (version "2015.103")
9507 (source
9508 (origin
9509 (method url-fetch)
9510 (uri (string-append
9511 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
9512 version ".tar.gz"))
9513 (sha256
9514 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
9515 (build-system perl-build-system)
9516 (arguments
9517 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
9518 ;; doesn't support it yet.
9519 ;;
9520 ;; #:disallowed-references (,tzdata-for-tests)
9521
9522 #:phases
9523 (modify-phases %standard-phases
9524 ;; This is needed for tests
9525 (add-after 'unpack 'set-TZDIR
9526 (lambda* (#:key inputs #:allow-other-keys)
9527 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
9528 "/share/zoneinfo"))
9529 #t)))))
9530 (native-inputs
9531 `(("perl-module-build" ,perl-module-build)
9532 ("tzdata" ,tzdata-for-tests)))
9533 (home-page "https://metacpan.org/release/Time-ParseDate")
9534 (synopsis "Collection of Perl modules for time/date manipulation")
9535 (description "Provides several perl modules for date/time manipulation:
9536 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
9537 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
9538 ;; License text:
9539 ;; "License hereby granted for anyone to use, modify or redistribute this
9540 ;; module at their own risk. Please feed useful changes back to
9541 ;; cpan@dave.sharnoff.org."
9542 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
9543 changelogs/main/libt/libtime-parsedate-perl/\
9544 libtime-parsedate-perl_2015.103-2_copyright"))))
9545
9546 (define-public perl-libtime-period
9547 (package
9548 (name "perl-libtime-period")
9549 (version "1.20")
9550 (source
9551 (origin
9552 (method url-fetch)
9553 (uri (string-append
9554 "http://http.debian.net/debian/pool/main/libt/"
9555 "libtime-period-perl/libtime-period-perl_"
9556 version ".orig.tar.gz"))
9557 (sha256
9558 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
9559 (build-system perl-build-system)
9560 (native-inputs
9561 `(("perl-module-build" ,perl-module-build)))
9562 ;; Unless some other homepage is out there...
9563 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
9564 (synopsis "Perl library for testing if a time() is in a specific period")
9565 (description "This Perl library provides a function which tells whether a
9566 specific time falls within a specified time period. Its syntax for specifying
9567 time periods allows you to test for conditions like \"Monday to Friday, 9am
9568 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
9569 4:15pm\" and \"in the first half of each minute\" and \"in January of
9570 1998\".")
9571 (license perl-license)))
9572
9573 (define-public perl-path-iterator-rule
9574 (package
9575 (name "perl-path-iterator-rule")
9576 (version "1.012")
9577 (source
9578 (origin
9579 (method url-fetch)
9580 (uri (string-append
9581 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
9582 version ".tar.gz"))
9583 (sha256
9584 (base32
9585 "1z76avwvwgv4bw28kzx79mmb4449s5l345sn0wljq3dbf4wqigd1"))))
9586 (build-system perl-build-system)
9587 (native-inputs
9588 `(("perl-file-pushd" ,perl-file-pushd)
9589 ("perl-path-tiny" ,perl-path-tiny)
9590 ("perl-test-deep" ,perl-test-deep)
9591 ("perl-test-filename" ,perl-test-filename)))
9592 (propagated-inputs
9593 `(("perl-number-compare" ,perl-number-compare)
9594 ("perl-text-glob" ,perl-text-glob)
9595 ("perl-try-tiny" ,perl-try-tiny)))
9596 (home-page "http://search.cpan.org/dist/Path-Iterator-Rule/")
9597 (synopsis "Iterative, recursive file finder")
9598 (description "Path::Iterator::Rule iterates over files and directories to
9599 identify ones matching a user-defined set of rules. The API is based heavily
9600 on File::Find::Rule, but with more explicit distinction between matching rules
9601 and options that influence how directories are searched. A
9602 Path::Iterator::Rule object is a collection of rules (match criteria) with
9603 methods to add additional criteria. Options that control directory traversal
9604 are given as arguments to the method that generates an iterator.
9605
9606 A summary of features for comparison to other file finding modules:
9607
9608 @itemize
9609 @item provides many helper methods for specifying rules
9610 @item offers (lazy) iterator and flattened list interfaces
9611 @item custom rules implemented with callbacks
9612 @item breadth-first (default) or pre- or post-order depth-first searching
9613 @item follows symlinks (by default, but can be disabled)
9614 @item directories visited only once (no infinite loop; can be disabled)
9615 @item doesn't chdir during operation
9616 @item provides an API for extensions
9617 @end itemize
9618
9619 As a convenience, the PIR module is an empty subclass of this one that is less
9620 arduous to type for one-liners.")
9621 (license asl2.0)))
9622
9623 (define-public perl-pod-constants
9624 (package
9625 (name "perl-pod-constants")
9626 (version "0.19")
9627 (source
9628 (origin
9629 (method url-fetch)
9630 (uri (string-append
9631 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
9632 version ".tar.gz"))
9633 (sha256
9634 (base32
9635 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
9636 (build-system perl-build-system)
9637 (home-page "http://search.cpan.org/dist/Pod-Constants/")
9638 (synopsis "Include constants from POD")
9639 (description "This module allows you to specify those constants that
9640 should be documented in your POD, and pull them out a run time in a fairly
9641 arbitrary fashion.
9642
9643 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
9644 to open the source file it is called from, and does so directly either by
9645 lookup in %INC or by assuming it is $0 if the caller is @code{main}
9646 (or it can't find %INC{caller()}).")
9647 (license artistic2.0)))
9648
9649 (define-public perl-regexp-pattern
9650 (package
9651 (name "perl-regexp-pattern")
9652 (version "0.1.4")
9653 (source
9654 (origin
9655 (method url-fetch)
9656 (uri (string-append
9657 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
9658 version ".tar.gz"))
9659 (sha256
9660 (base32
9661 "0rwpl6dxd1yl2ng3d4jdy68jz3mggmdl35rphrw1x619sm1aa876"))))
9662 (build-system perl-build-system)
9663 (native-inputs
9664 `(("perl-test-exception" ,perl-test-exception)))
9665 (home-page "http://search.cpan.org/dist/Regexp-Pattern/")
9666 (synopsis "Collection of regexp patterns")
9667 (description "Regexp::Pattern is a convention for organizing reusable
9668 regexp patterns in modules.")
9669 (license (package-license perl))))