gnu: superlu-dist: Return #t from all phases.
[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 ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
24 ;;;
25 ;;; This file is part of GNU Guix.
26 ;;;
27 ;;; GNU Guix is free software; you can redistribute it and/or modify it
28 ;;; under the terms of the GNU General Public License as published by
29 ;;; the Free Software Foundation; either version 3 of the License, or (at
30 ;;; your option) any later version.
31 ;;;
32 ;;; GNU Guix is distributed in the hope that it will be useful, but
33 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
34 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 ;;; GNU General Public License for more details.
36 ;;;
37 ;;; You should have received a copy of the GNU General Public License
38 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
39
40 (define-module (gnu packages perl)
41 #:use-module (srfi srfi-1)
42 #:use-module (guix licenses)
43 #:use-module (gnu packages)
44 #:use-module (guix packages)
45 #:use-module (guix download)
46 #:use-module (guix build-system gnu)
47 #:use-module (guix build-system perl)
48 #:use-module (guix utils) ;substitute-keyword-arguments for perl-5.26.2
49 #:use-module (gnu packages base)
50 #:use-module (gnu packages compression)
51 #:use-module (gnu packages freedesktop)
52 #:use-module (gnu packages perl-check)
53 #:use-module (gnu packages perl-web)
54 #:use-module (gnu packages pkg-config))
55
56 ;;;
57 ;;; Please: Try to add new module packages in alphabetic order.
58 ;;;
59
60 \f
61 (define-public perl
62 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
63 (package
64 (name "perl")
65 (version "5.26.1")
66 (replacement perl/fixed)
67 (source (origin
68 (method url-fetch)
69 (uri (string-append "mirror://cpan/src/5.0/perl-"
70 version ".tar.gz"))
71 (sha256
72 (base32
73 "1p81wwvr5jb81m41d07kfywk5gvbk0axdrnvhc2aghcdbr4alqz7"))
74 (patches (search-patches
75 "perl-file-path-CVE-2017-6512.patch"
76 "perl-no-sys-dirs.patch"
77 "perl-autosplit-default-time.patch"
78 "perl-deterministic-ordering.patch"
79 "perl-reproducible-build-date.patch"))))
80 (build-system gnu-build-system)
81 (arguments
82 '(#:tests? #f
83 #:configure-flags
84 (let ((out (assoc-ref %outputs "out"))
85 (libc (assoc-ref %build-inputs "libc")))
86 (list
87 (string-append "-Dprefix=" out)
88 (string-append "-Dman1dir=" out "/share/man/man1")
89 (string-append "-Dman3dir=" out "/share/man/man3")
90 "-de" "-Dcc=gcc"
91 "-Uinstallusrbinperl"
92 "-Dinstallstyle=lib/perl5"
93 "-Duseshrplib"
94 (string-append "-Dlocincpth=" libc "/include")
95 (string-append "-Dloclibpth=" libc "/lib")
96 "-Dusethreads"))
97 #:phases
98 (modify-phases %standard-phases
99 (add-before 'configure 'setup-configure
100 (lambda _
101 ;; Use the right path for `pwd'.
102 (substitute* "dist/PathTools/Cwd.pm"
103 (("/bin/pwd")
104 (which "pwd")))
105
106 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
107 ;; <bits/string3.h>.
108 (substitute* "cflags.SH"
109 (("-std=c89")
110 "-std=gnu89"))
111 #t))
112 (replace 'configure
113 (lambda* (#:key configure-flags #:allow-other-keys)
114 (format #t "Perl configure flags: ~s~%" configure-flags)
115 (apply invoke "./Configure" configure-flags)))
116 (add-before
117 'strip 'make-shared-objects-writable
118 (lambda* (#:key outputs #:allow-other-keys)
119 ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them
120 ;; writable so that 'strip' actually strips them.
121 (let* ((out (assoc-ref outputs "out"))
122 (lib (string-append out "/lib")))
123 (for-each (lambda (dso)
124 (chmod dso #o755))
125 (find-files lib "\\.so$"))
126 #t)))
127
128 (add-after 'install 'remove-extra-references
129 (lambda* (#:key inputs outputs #:allow-other-keys)
130 (let* ((out (assoc-ref outputs "out"))
131 (libc (assoc-ref inputs "libc"))
132 (config1 (car (find-files (string-append out "/lib/perl5")
133 "^Config_heavy\\.pl$")))
134 (config2 (find-files (string-append out "/lib/perl5")
135 "^Config\\.pm$")))
136 ;; Force the library search path to contain only libc because
137 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
138 ;; want to keep a reference to everything that's in
139 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
140 ;; etc.)
141 (substitute* config1
142 (("^incpth=.*$")
143 (string-append "incpth='" libc "/include'\n"))
144 (("^(libpth|plibpth|libspath)=.*$" _ variable)
145 (string-append variable "='" libc "/lib'\n")))
146
147 (for-each (lambda (file)
148 (substitute* config2
149 (("libpth => .*$")
150 (string-append "libpth => '" libc
151 "/lib',\n"))))
152 config2)
153 #t))))))
154 (native-search-paths (list (search-path-specification
155 (variable "PERL5LIB")
156 (files '("lib/perl5/site_perl")))))
157 (synopsis "Implementation of the Perl programming language")
158 (description
159 "Perl 5 is a highly capable, feature-rich programming language with over
160 24 years of development.")
161 (home-page "http://www.perl.org/")
162 (license gpl1+))) ; or "Artistic"
163
164 ;; Fixes CVE-2018-6797, CVE-2018-6798, and CVE-2018-6913.
165 ;; See <https://metacpan.org/changes/release/SHAY/perl-5.26.2>.
166 (define perl-5.26.2
167 (package
168 (inherit perl)
169 (version "5.26.2")
170 (source (origin
171 (inherit (package-source perl))
172 (uri (string-append "mirror://cpan/src/5.0/perl-"
173 version ".tar.gz"))
174 (patches (append (origin-patches (package-source perl))
175 (search-patches "perl-archive-tar-CVE-2018-12015.patch")))
176 (sha256
177 (base32
178 "03gpnxx1g6hvlh0v4aqx00580h787sfywp1vlvw64q2xcbm9qbsp"))))))
179
180 ;; When grafting perl, complications arise when the replacement perl has a
181 ;; different version number than the original. So, here we create a version
182 ;; of perl-5.26.2 that thinks it is version 5.26.1. See
183 ;; <https://bugs.gnu.org/31210> and <https://bugs.gnu.org/31216>.
184 (define perl/fixed
185 (package
186 (inherit perl-5.26.2)
187 (version "5.26.1")
188 (arguments
189 (substitute-keyword-arguments (package-arguments perl-5.26.2)
190 ((#:phases phases)
191 `(modify-phases ,phases
192 (add-after 'unpack 'revert-perl-subversion
193 (lambda _
194 (substitute* "patchlevel.h"
195 (("^#define PERL_SUBVERSION 2")
196 "#define PERL_SUBVERSION 1"))
197 #t))))))))
198
199 (define-public perl-algorithm-c3
200 (package
201 (name "perl-algorithm-c3")
202 (version "0.10")
203 (source
204 (origin
205 (method url-fetch)
206 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
207 "Algorithm-C3-" version ".tar.gz"))
208 (sha256
209 (base32
210 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
211 (build-system perl-build-system)
212 (home-page "http://search.cpan.org/dist/Algorithm-C3/")
213 (synopsis "Module for merging hierarchies using the C3 algorithm")
214 (description "This module implements the C3 algorithm, which aims to
215 provide a sane method resolution order under multiple inheritance.")
216 (license (package-license perl))))
217
218 (define-public perl-algorithm-diff
219 (package
220 (name "perl-algorithm-diff")
221 (version "1.1903")
222 (source
223 (origin
224 (method url-fetch)
225 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
226 "Algorithm-Diff-" version ".tar.gz"))
227 (sha256
228 (base32
229 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
230 (build-system perl-build-system)
231 (home-page "http://search.cpan.org/dist/Algorithm-Diff/")
232 (synopsis "Compute differences between two files or lists")
233 (description "This is a module for computing the difference between two
234 files, two strings, or any other two lists of things. It uses an intelligent
235 algorithm similar to (or identical to) the one used by the Unix \"diff\"
236 program. It is guaranteed to find the *smallest possible* set of
237 differences.")
238 (license (package-license perl))))
239
240 (define-public perl-aliased
241 (package
242 (name "perl-aliased")
243 (version "0.34")
244 (source
245 (origin
246 (method url-fetch)
247 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
248 "aliased-" version ".tar.gz"))
249 (sha256
250 (base32
251 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
252 (build-system perl-build-system)
253 (native-inputs `(("perl-module-build" ,perl-module-build)))
254 (home-page "http://search.cpan.org/dist/aliased/")
255 (synopsis "Use shorter versions of class names")
256 (description "The alias module loads the class you specify and exports
257 into your namespace a subroutine that returns the class name. You can
258 explicitly alias the class to another name or, if you prefer, you can do so
259 implicitly.")
260 (license (package-license perl))))
261
262 (define-public perl-any-moose
263 (package
264 (name "perl-any-moose")
265 (version "0.27")
266 (source (origin
267 (method url-fetch)
268 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
269 "Any-Moose-" version ".tar.gz"))
270 (sha256
271 (base32
272 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
273 (build-system perl-build-system)
274 (native-inputs
275 `(("perl-mouse" ,perl-mouse)
276 ("perl-moose" ,perl-moose)))
277 (home-page "http://search.cpan.org/dist/Any-Moose/")
278 (synopsis "Transparently use Moose or Mouse modules")
279 (description
280 "This module facilitates using @code{Moose} or @code{Mouse} modules
281 without changing the code. By default, Mouse will be provided to libraries,
282 unless Moose is already loaded, or explicitly requested by the end-user. End
283 users can force the decision of which backend to use by setting the environment
284 variable ANY_MOOSE to be Moose or Mouse.")
285 (license (package-license perl))))
286
287 (define-public perl-appconfig
288 (package
289 (name "perl-appconfig")
290 (version "1.71")
291 (source
292 (origin
293 (method url-fetch)
294 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
295 "AppConfig-" version ".tar.gz"))
296 (sha256
297 (base32
298 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
299 (build-system perl-build-system)
300 (native-inputs
301 `(("perl-test-pod" ,perl-test-pod)))
302 (home-page "http://search.cpan.org/dist/AppConfig/")
303 (synopsis "Configuration files and command line parsing")
304 (description "AppConfig is a bundle of Perl5 modules for reading
305 configuration files and parsing command line arguments.")
306 (license (package-license perl))))
307
308 (define-public perl-array-utils
309 (package
310 (name "perl-array-utils")
311 (version "0.5")
312 (source
313 (origin
314 (method url-fetch)
315 (uri (string-append
316 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
317 version
318 ".tar.gz"))
319 (sha256
320 (base32
321 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
322 (build-system perl-build-system)
323 (home-page "http://search.cpan.org/dist/Array-Utils/")
324 (synopsis "Small utils for array manipulation")
325 (description "@code{Array::Utils} is a small pure-perl module containing
326 list manipulation routines.")
327 (license (package-license perl))))
328
329 (define-public perl-async-interrupt
330 (package
331 (name "perl-async-interrupt")
332 (version "1.21")
333 (source (origin
334 (method url-fetch)
335 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
336 "Async-Interrupt-" version ".tar.gz"))
337 (sha256
338 (base32
339 "092zs7b72f8q109c3z829nqfgwqghp3nhw44c0gcyhacbb4wgpk3"))))
340 (build-system perl-build-system)
341 (propagated-inputs
342 `(("perl-common-sense" ,perl-common-sense)))
343 (home-page "http://search.cpan.org/dist/Async-Interrupt/")
344 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
345 (description
346 "@code{Async::Interrupt} implements a single feature only of interest
347 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
348 signals\", which are very similar).
349
350 Sometimes, modules wish to run code asynchronously (in another thread,
351 or from a signal handler), and then signal the perl interpreter on
352 certain events. One common way is to write some data to a pipe and use
353 an event handling toolkit to watch for I/O events. Another way is to
354 send a signal. Those methods are slow, and in the case of a pipe, also
355 not asynchronous - it won't interrupt a running perl interpreter.
356
357 This module implements asynchronous notifications that enable you to
358 signal running perl code from another thread, asynchronously, and
359 sometimes even without using a single syscall.")
360 (license (package-license perl))))
361
362 (define-public perl-autovivification
363 (package
364 (name "perl-autovivification")
365 (version "0.16")
366 (source
367 (origin
368 (method url-fetch)
369 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
370 "autovivification-" version ".tar.gz"))
371 (sha256
372 (base32
373 "1422kw9fknv7rbjkgdfflg1q3mb69d3yryszp38dn0bgzkqhwkc1"))))
374 (build-system perl-build-system)
375 (home-page "http://search.cpan.org/dist/autovivification/")
376 (synopsis "Lexically disable autovivification")
377 (description "When an undefined variable is dereferenced, it gets silently
378 upgraded to an array or hash reference (depending of the type of the
379 dereferencing). This behaviour is called autovivification and usually does
380 what you mean but it may be unnatural or surprising because your variables get
381 populated behind your back. This is especially true when several levels of
382 dereferencing are involved, in which case all levels are vivified up to the
383 last, or when it happens in intuitively read-only constructs like
384 @code{exists}. The pragma provided by this package lets you disable
385 autovivification for some constructs and optionally throws a warning or an
386 error when it would have happened.")
387 (license (package-license perl))))
388
389 (define-public perl-bareword-filehandles
390 (package
391 (name "perl-bareword-filehandles")
392 (version "0.006")
393 (source
394 (origin
395 (method url-fetch)
396 (uri (string-append
397 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
398 version ".tar.gz"))
399 (sha256
400 (base32
401 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
402 (build-system perl-build-system)
403 (native-inputs
404 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
405 ("perl-extutils-depends" ,perl-extutils-depends)))
406 (propagated-inputs
407 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
408 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
409 (home-page "http://search.cpan.org/dist/bareword-filehandles/")
410 (synopsis "Disables bareword filehandles")
411 (description "This module disables bareword filehandles.")
412 (license (package-license perl))))
413
414 (define-public perl-base
415 (package
416 (name "perl-base")
417 (version "2.18")
418 (source
419 (origin
420 (method url-fetch)
421 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
422 "base-" version ".tar.gz"))
423 (sha256
424 (base32
425 "01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
426 (build-system perl-build-system)
427 (home-page "http://search.cpan.org/dist/base/")
428 (synopsis "Establish an ISA relationship with base classes at compile time")
429 (description "Allows you to both load one or more modules, while setting
430 up inheritance from those modules at the same time. Unless you are using the
431 fields pragma, consider this module discouraged in favor of the lighter-weight
432 parent.")
433 (license (package-license perl)))) ;See README
434
435 (define-public perl-browser-open
436 (package
437 (name "perl-browser-open")
438 (version "0.04")
439 (source
440 (origin
441 (method url-fetch)
442 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
443 version ".tar.gz"))
444 (sha256
445 (base32
446 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
447 (build-system perl-build-system)
448 (home-page "http://search.cpan.org/dist/Browser-Open/")
449 (synopsis "Open a browser in a given URL")
450 (description "The functions exported by this module allow you to open URLs
451 in the user's browser. A set of known commands per OS-name is tested for
452 presence, and the first one found is executed. With an optional parameter,
453 all known commands are checked.")
454 (license (package-license perl))))
455
456 (define-public perl-b-hooks-endofscope
457 (package
458 (name "perl-b-hooks-endofscope")
459 (version "0.24")
460 (source
461 (origin
462 (method url-fetch)
463 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
464 "B-Hooks-EndOfScope-" version ".tar.gz"))
465 (sha256
466 (base32
467 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
468 (build-system perl-build-system)
469 (propagated-inputs
470 `(("perl-module-runtime" ,perl-module-runtime)
471 ("perl-module-implementation" ,perl-module-implementation)
472 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
473 ("perl-variable-magic" ,perl-variable-magic)))
474 (home-page "http://search.cpan.org/dist/B-Hooks-EndOfScope/")
475 (synopsis "Execute code after a scope finished compilation")
476 (description "This module allows you to execute code when perl finished
477 compiling the surrounding scope.")
478 (license (package-license perl))))
479
480 (define-public perl-b-hooks-op-check
481 (package
482 (name "perl-b-hooks-op-check")
483 (version "0.22")
484 (source
485 (origin
486 (method url-fetch)
487 (uri (string-append
488 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
489 version ".tar.gz"))
490 (sha256
491 (base32
492 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
493 (build-system perl-build-system)
494 (native-inputs
495 `(("perl-extutils-depends" ,perl-extutils-depends)))
496 (home-page "http://search.cpan.org/dist/B-Hooks-OP-Check/")
497 (synopsis "Wrap OP check callbacks")
498 (description "This module allows you to wrap OP check callbacks.")
499 (license (package-license perl))))
500
501 (define-public perl-b-keywords
502 (package
503 (name "perl-b-keywords")
504 (version "1.15")
505 (source
506 (origin
507 (method url-fetch)
508 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
509 version ".tar.gz"))
510 (sha256
511 (base32
512 "1nhdplmd0y69lnwyajg3anhk6pm13nm6qzm05nzpz8zl7j7fzlk5"))))
513 (build-system perl-build-system)
514 (home-page "http://search.cpan.org/dist/B-Keywords/")
515 (synopsis "Lists of reserved barewords and symbol names")
516 (description "@code{B::Keywords} supplies several arrays of exportable
517 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
518 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
519 @@ExporterSymbols}.")
520 ;; GPLv2 only
521 (license gpl2)))
522
523 (define-public perl-benchmark-timer
524 (package
525 (name "perl-benchmark-timer")
526 (version "0.7102")
527 (source (origin
528 (method url-fetch)
529 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
530 "Benchmark-Timer-" version ".tar.gz"))
531 (sha256
532 (base32
533 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
534 (build-system perl-build-system)
535 (native-inputs
536 `(("perl-module-install" ,perl-module-install)))
537 ;; The optional input module Statistics::PointEstimation (from
538 ;; Statistics-TTest) lists no license.
539 (synopsis "Benchmarking with statistical confidence")
540 (description
541 "The Benchmark::Timer class allows you to time portions of code
542 conveniently, as well as benchmark code by allowing timings of repeated
543 trials. It is perfect for when you need more precise information about the
544 running time of portions of your code than the Benchmark module will give you,
545 but don't want to go all out and profile your code.")
546 (home-page (string-append "http://search.cpan.org/~dcoppit/"
547 "Benchmark-Timer-" version "/"))
548 (license gpl2)))
549
550 (define-public perl-bit-vector
551 (package
552 (name "perl-bit-vector")
553 (version "7.4")
554 (source
555 (origin
556 (method url-fetch)
557 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
558 "Bit-Vector-" version ".tar.gz"))
559 (sha256
560 (base32
561 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
562 (build-system perl-build-system)
563 (propagated-inputs
564 `(("perl-carp-clan" ,perl-carp-clan)))
565 (home-page "http://search.cpan.org/dist/Bit-Vector/")
566 (synopsis "Bit vector library")
567 (description "Bit::Vector is an efficient C library which allows you to
568 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
569 matrices, all of arbitrary sizes. The package also includes an
570 object-oriented Perl module for accessing the C library from Perl, and
571 optionally features overloaded operators for maximum ease of use. The C
572 library can nevertheless be used stand-alone, without Perl.")
573 (license (list (package-license perl) lgpl2.0+))))
574
575 (define-public perl-boolean
576 (package
577 (name "perl-boolean")
578 (version "0.45")
579 (source
580 (origin
581 (method url-fetch)
582 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
583 "boolean-" version ".tar.gz"))
584 (sha256
585 (base32
586 "18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"))))
587 (build-system perl-build-system)
588 (home-page "http://search.cpan.org/dist/boolean/")
589 (synopsis "Boolean support for Perl")
590 (description "This module provides basic Boolean support, by defining two
591 special objects: true and false.")
592 (license (package-license perl))))
593
594 (define-public perl-business-isbn-data
595 (package
596 (name "perl-business-isbn-data")
597 (version "20140910.003")
598 (source
599 (origin
600 (method url-fetch)
601 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
602 "Business-ISBN-Data-" version ".tar.gz"))
603 (sha256
604 (base32
605 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
606 (build-system perl-build-system)
607 (home-page "http://search.cpan.org/dist/Business-ISBN-Data/")
608 (synopsis "Data files for Business::ISBN")
609 (description "This package provides a data pack for @code{Business::ISBN}.
610 These data are generated from the RangeMessage.xml file provided by the ISBN
611 Agency.")
612 (license (package-license perl))))
613
614 (define-public perl-business-isbn
615 (package
616 (name "perl-business-isbn")
617 (version "3.004")
618 (source
619 (origin
620 (method url-fetch)
621 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
622 "Business-ISBN-" version ".tar.gz"))
623 (sha256
624 (base32
625 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
626 (build-system perl-build-system)
627 (propagated-inputs
628 `(("perl-business-isbn-data" ,perl-business-isbn-data)
629 ("perl-mojolicious" ,perl-mojolicious)))
630 (home-page "http://search.cpan.org/dist/Business-ISBN/")
631 (synopsis "Work with International Standard Book Numbers")
632 (description "This modules provides tools to deal with International
633 Standard Book Numbers, including ISBN-10 and ISBN-13.")
634 (license artistic2.0)))
635
636 (define-public perl-business-issn
637 (package
638 (name "perl-business-issn")
639 (version "0.91")
640 (source
641 (origin
642 (method url-fetch)
643 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
644 "Business-ISSN-" version ".tar.gz"))
645 (sha256
646 (base32
647 "1dfnm7h7lbqj356700ldlmgbr51v6hyjn1qig2bb4ysl1wn1jnzi"))))
648 (build-system perl-build-system)
649 (home-page "http://search.cpan.org/dist/Business-ISSN/")
650 (synopsis "Work with International Standard Serial Numbers")
651 (description "This modules provides tools to deal with International
652 Standard Serial Numbers.")
653 (license (package-license perl))))
654
655 (define-public perl-business-ismn
656 (package
657 (name "perl-business-ismn")
658 (version "1.131")
659 (source
660 (origin
661 (method url-fetch)
662 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
663 "Business-ISMN-" version ".tar.gz"))
664 (sha256
665 (base32
666 "1xyc7x4c4xl930rz7grs1l52f1vg4rbiv0c6xlxdsim8qsh7k94g"))))
667 (build-system perl-build-system)
668 (native-inputs
669 `(("perl-tie-cycle" ,perl-tie-cycle)))
670 (home-page "http://search.cpan.org/dist/Business-ISMN/")
671 (synopsis "Work with International Standard Music Numbers")
672 (description "This modules provides tools to deal with International
673 Standard Music Numbers.")
674 (license (package-license perl))))
675
676 (define-public perl-cache-cache
677 (package
678 (name "perl-cache-cache")
679 (version "1.08")
680 (source (origin
681 (method url-fetch)
682 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
683 "Cache-Cache-" version ".tar.gz"))
684 (sha256
685 (base32
686 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
687 (build-system perl-build-system)
688 (propagated-inputs
689 `(("perl-digest-sha1" ,perl-digest-sha1)
690 ("perl-error" ,perl-error)
691 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
692 (home-page "http://search.cpan.org/dist/Cache-Cache/")
693 (synopsis "Cache interface for Perl")
694 (description "The Cache modules are designed to assist a developer in
695 persisting data for a specified period of time. Often these modules are used
696 in web applications to store data locally to save repeated and redundant
697 expensive calls to remote machines or databases. People have also been known
698 to use Cache::Cache for its straightforward interface in sharing data between
699 runs of an application or invocations of a CGI-style script or simply as an
700 easy to use abstraction of the file system or shared memory.")
701 (license (package-license perl))))
702
703 (define-public perl-cache-fastmmap
704 (package
705 (name "perl-cache-fastmmap")
706 (version "1.40")
707 (source
708 (origin
709 (method url-fetch)
710 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
711 "Cache-FastMmap-" version ".tar.gz"))
712 (sha256
713 (base32
714 "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
715 (build-system perl-build-system)
716 (home-page "http://search.cpan.org/dist/Cache-FastMmap/")
717 (synopsis "Shared memory interprocess cache via mmap")
718 (description "A shared memory cache through an mmap'ed file. It's core is
719 written in C for performance. It uses fcntl locking to ensure multiple
720 processes can safely access the cache at the same time. It uses a basic LRU
721 algorithm to keep the most used entries in the cache.")
722 (license (package-license perl))))
723
724 (define-public perl-capture-tiny
725 (package
726 (name "perl-capture-tiny")
727 (version "0.48")
728 (source
729 (origin
730 (method url-fetch)
731 (uri (string-append
732 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
733 version ".tar.gz"))
734 (sha256
735 (base32
736 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
737 (build-system perl-build-system)
738 (home-page "http://search.cpan.org/dist/Capture-Tiny/")
739 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
740 (description
741 "Capture::Tiny provides a simple, portable way to capture almost anything
742 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
743 code or from an external program. Optionally, output can be teed so that it
744 is captured while being passed through to the original file handles.")
745 (license asl2.0)))
746
747 (define-public perl-canary-stability
748 (package
749 (name "perl-canary-stability")
750 (version "2012")
751 (source (origin
752 (method url-fetch)
753 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
754 "Canary-Stability-" version ".tar.gz"))
755 (sha256
756 (base32
757 "01vih43hvpqy67m6a6fwmlswli91mqpv8n8ccglvlkc33l8hn97x"))))
758 (build-system perl-build-system)
759 (home-page "http://search.cpan.org/dist/Canary-Stability/")
760 (synopsis "Check compatibility with the installed perl version")
761 (description
762 "This module is used by Schmorp's modules during configuration stage
763 to test the installed perl for compatibility with his modules.")
764 (license (package-license perl))))
765
766 (define-public perl-carp
767 (package
768 (name "perl-carp")
769 (version "1.38")
770 (source (origin
771 (method url-fetch)
772 (uri (string-append
773 "mirror://cpan/authors/id/R/RJ/RJBS/Carp-"
774 version ".tar.gz"))
775 (sha256
776 (base32
777 "00bijwwc0ix27h2ma3lvsf3b56biar96bl9dikxgx7cmpcycxad5"))))
778 (build-system perl-build-system)
779 (home-page "http://search.cpan.org/dist/Carp/")
780 (synopsis "Alternative warn and die for modules")
781 (description "The @code{Carp} routines are useful in your own modules
782 because they act like @code{die()} or @code{warn()}, but with a message
783 which is more likely to be useful to a user of your module. In the case
784 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
785 summary of every call in the call-stack. For a shorter message you can use
786 @code{carp} or @code{croak} which report the error as being from where your
787 module was called. There is no guarantee that that is where the error was,
788 but it is a good educated guess.")
789 (license (package-license perl))))
790
791 (define-public perl-carp-always
792 (package
793 (name "perl-carp-always")
794 (version "0.13")
795 (source
796 (origin
797 (method url-fetch)
798 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
799 version ".tar.gz"))
800 (sha256
801 (base32
802 "0i2rifkr7ybfcdsqana52487z7vxp2l5qdra0f6ik0ddhn6rzii1"))))
803 (build-system perl-build-system)
804 (native-inputs
805 `(("perl-test-base" ,perl-test-base)))
806 (home-page "http://search.cpan.org/dist/Carp-Always")
807 (synopsis "Warns and dies noisily with stack backtraces/")
808 (description "This module is meant as a debugging aid. It can be used to
809 make a script complain loudly with stack backtraces when @code{warn()}-ing or
810 @code{die()}ing.")
811 (license (package-license perl))))
812
813 (define-public perl-carp-assert
814 (package
815 (name "perl-carp-assert")
816 (version "0.21")
817 (source
818 (origin
819 (method url-fetch)
820 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
821 "Carp-Assert-" version ".tar.gz"))
822 (sha256
823 (base32
824 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
825 (build-system perl-build-system)
826 (home-page "http://search.cpan.org/dist/Carp-Assert/")
827 (synopsis "Executable comments for Perl")
828 (description "Carp::Assert is intended for a purpose like the ANSI C
829 library assert.h.")
830 (license (package-license perl))))
831
832 (define-public perl-carp-assert-more
833 (package
834 (name "perl-carp-assert-more")
835 (version "1.14")
836 (source
837 (origin
838 (method url-fetch)
839 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
840 "Carp-Assert-More-" version ".tar.gz"))
841 (sha256
842 (base32
843 "0cq7qk4qbhqppm4raby5k24b5mx5qjgy1884nrddhxillnzlq01z"))))
844 (build-system perl-build-system)
845 (native-inputs
846 `(("perl-test-exception" ,perl-test-exception)))
847 (propagated-inputs
848 `(("perl-carp-assert" ,perl-carp-assert)))
849 (home-page "http://search.cpan.org/dist/Carp-Assert-More/")
850 (synopsis "Convenience wrappers around Carp::Assert")
851 (description "Carp::Assert::More is a set of handy assertion functions for
852 Perl.")
853 (license artistic2.0)))
854
855 (define-public perl-carp-clan
856 (package
857 (name "perl-carp-clan")
858 (version "6.06")
859 (source
860 (origin
861 (method url-fetch)
862 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
863 "Carp-Clan-" version ".tar.gz"))
864 (sha256
865 (base32
866 "1m6902n6s627nsvyn2vyrk29q7lh6808hsdk7ka5cirm27vchjpa"))))
867 (build-system perl-build-system)
868 (native-inputs
869 `(("perl-test-exception" ,perl-test-exception)))
870 (home-page "http://search.cpan.org/dist/Carp-Clan/")
871 (synopsis "Report errors from a \"clan\" of modules")
872 (description "This module allows errors from a clan (or family) of modules
873 to appear to originate from the caller of the clan. This is necessary in
874 cases where the clan modules are not classes derived from each other, and thus
875 the Carp.pm module doesn't help.")
876 (license (package-license perl))))
877
878 (define-public perl-cddb-get
879 (package
880 (name "perl-cddb-get")
881 (version "2.28")
882 (source (origin
883 (method url-fetch)
884 (uri (string-append
885 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
886 version ".tar.gz"))
887 (sha256
888 (base32
889 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
890 (build-system perl-build-system)
891 (home-page "http://search.cpan.org/dist/CDDB_get/")
892 (synopsis "Read the CDDB entry for an audio CD in your drive")
893 (description "This module can retrieve information from the CDDB.")
894 ;; Either GPLv2 or the "Artistic" license.
895 (license (list gpl2 artistic2.0))))
896
897 (define-public perl-class-accessor
898 (package
899 (name "perl-class-accessor")
900 (version "0.51")
901 (source
902 (origin
903 (method url-fetch)
904 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
905 "Class-Accessor-" version ".tar.gz"))
906 (sha256
907 (base32
908 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
909 (build-system perl-build-system)
910 (native-inputs
911 `(("perl-sub-name" ,perl-sub-name)))
912 (propagated-inputs
913 `(("perl-base" ,perl-base)))
914 (home-page "http://search.cpan.org/dist/Class-Accessor/")
915 (synopsis "Automated accessor generation")
916 (description "This module automagically generates accessors/mutators for
917 your class.")
918 (license (package-license perl))))
919
920 (define-public perl-class-accessor-chained
921 (package
922 (name "perl-class-accessor-chained")
923 (version "0.01")
924 (source
925 (origin
926 (method url-fetch)
927 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
928 "Class-Accessor-Chained-" version ".tar.gz"))
929 (sha256
930 (base32
931 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
932 (build-system perl-build-system)
933 (native-inputs
934 `(("perl-module-build" ,perl-module-build)))
935 (propagated-inputs
936 `(("perl-class-accessor" ,perl-class-accessor)))
937 (home-page "http://search.cpan.org/dist/Class-Accessor-Chained/")
938 (synopsis "Faster, but less expandable, chained accessors")
939 (description "A chained accessor is one that always returns the object
940 when called with parameters (to set), and the value of the field when called
941 with no arguments. This module subclasses Class::Accessor in order to provide
942 the same mk_accessors interface.")
943 (license (package-license perl))))
944
945 (define-public perl-class-accessor-grouped
946 (package
947 (name "perl-class-accessor-grouped")
948 (version "0.10012")
949 (source
950 (origin
951 (method url-fetch)
952 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
953 "Class-Accessor-Grouped-" version ".tar.gz"))
954 (sha256
955 (base32
956 "1zp74yv023q3macrf4rv3i82z8pkffqyhh7xk9xg8fbr63ikwqf4"))))
957 (build-system perl-build-system)
958 (native-inputs
959 `(("perl-module-install" ,perl-module-install)
960 ("perl-test-exception" ,perl-test-exception)))
961 (propagated-inputs
962 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
963 ("perl-module-runtime" ,perl-module-runtime)
964 ("perl-sub-name" ,perl-sub-name)))
965 (home-page "http://search.cpan.org/dist/Class-Accessor-Grouped/")
966 (synopsis "Build groups of accessors")
967 (description "This class lets you build groups of accessors that will call
968 different getters and setters.")
969 (license (package-license perl))))
970
971 (define-public perl-class-c3
972 (package
973 (name "perl-class-c3")
974 (version "0.27")
975 (source
976 (origin
977 (method url-fetch)
978 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
979 "Class-C3-" version ".tar.gz"))
980 (sha256
981 (base32
982 "185jdpr4applrkvh71ks9ildx5kdymhqr4hilsqxwqny1wr56qss"))))
983 (build-system perl-build-system)
984 (propagated-inputs
985 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
986 (home-page "http://search.cpan.org/dist/Class-C3/")
987 (synopsis "Pragma to use the C3 method resolution order algorithm")
988 (description "This is pragma to change Perl 5's standard method resolution
989 order from depth-first left-to-right (a.k.a - pre-order) to the more
990 sophisticated C3 method resolution order.")
991 (license (package-license perl))))
992
993 (define-public perl-class-c3-adopt-next
994 (package
995 (name "perl-class-c3-adopt-next")
996 (version "0.13")
997 (source
998 (origin
999 (method url-fetch)
1000 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
1001 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
1002 (sha256
1003 (base32
1004 "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
1005 (build-system perl-build-system)
1006 (native-inputs
1007 `(("perl-test-exception" ,perl-test-exception)))
1008 (propagated-inputs
1009 `(("perl-list-moreutils" ,perl-list-moreutils)
1010 ("perl-mro-compat" ,perl-mro-compat)))
1011 (home-page "http://search.cpan.org/dist/Class-C3-Adopt-NEXT/")
1012 (synopsis "Drop-in replacement for NEXT")
1013 (description "This module is intended as a drop-in replacement for NEXT,
1014 supporting the same interface, but using Class::C3 to do the hard work.")
1015 (license (package-license perl))))
1016
1017 (define-public perl-class-c3-componentised
1018 (package
1019 (name "perl-class-c3-componentised")
1020 (version "1.001000")
1021 (source
1022 (origin
1023 (method url-fetch)
1024 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
1025 "Class-C3-Componentised-" version ".tar.gz"))
1026 (sha256
1027 (base32
1028 "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
1029 (build-system perl-build-system)
1030 (native-inputs
1031 `(("perl-module-install" ,perl-module-install)
1032 ("perl-test-exception" ,perl-test-exception)))
1033 (propagated-inputs
1034 `(("perl-class-c3" ,perl-class-c3)
1035 ("perl-class-inspector" ,perl-class-inspector)
1036 ("perl-mro-compat" ,perl-mro-compat)))
1037 (home-page "http://search.cpan.org/dist/Class-C3-Componentised/")
1038 (synopsis "Load mix-ins or components to your C3-based class")
1039 (description "This module will inject base classes to your module using
1040 the Class::C3 method resolution order.")
1041 (license (package-license perl))))
1042
1043 (define-public perl-class-data-inheritable
1044 (package
1045 (name "perl-class-data-inheritable")
1046 (version "0.08")
1047 (source
1048 (origin
1049 (method url-fetch)
1050 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1051 "Class-Data-Inheritable-" version ".tar.gz"))
1052 (sha256
1053 (base32
1054 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1055 (build-system perl-build-system)
1056 (home-page "http://search.cpan.org/dist/Class-Data-Inheritable/")
1057 (synopsis "Inheritable, overridable class data")
1058 (description "Class::Data::Inheritable is for creating accessor/mutators
1059 to class data. That is, if you want to store something about your class as a
1060 whole (instead of about a single object). This data is then inherited by your
1061 subclasses and can be overridden.")
1062 (license (package-license perl))))
1063
1064 (define-public perl-class-date
1065 (package
1066 (name "perl-class-date")
1067 (version "1.1.15")
1068 (source
1069 (origin
1070 (method url-fetch)
1071 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
1072 "Class-Date-" version ".tar.gz"))
1073 (sha256
1074 (base32
1075 "0dd707sq8ix2dqbnp7ga77ba69r3vsn0cd6scnkn13s0gm2g4b00"))))
1076 (build-system perl-build-system)
1077 (arguments `(#:tests? #f)) ;timezone tests in chroot
1078 (home-page "http://search.cpan.org/dist/Class-Date/")
1079 (synopsis "Class for easy date and time manipulation")
1080 (description "This module provides a general-purpose date and datetime
1081 type for perl.")
1082 (license (package-license perl))))
1083
1084 (define-public perl-class-errorhandler
1085 (package
1086 (name "perl-class-errorhandler")
1087 (version "0.04")
1088 (source (origin
1089 (method url-fetch)
1090 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1091 "Class-ErrorHandler-" version ".tar.gz"))
1092 (sha256
1093 (base32
1094 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1095 (build-system perl-build-system)
1096 (home-page "http://search.cpan.org/dist/Class-ErrorHandler/")
1097 (synopsis "Base class for error handling")
1098 (description
1099 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1100 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1101 its two error-handling methods, error and errstr, to communicate error messages back
1102 to the calling program.")
1103 (license (package-license perl))))
1104
1105 (define-public perl-class-factory-util
1106 (package
1107 (name "perl-class-factory-util")
1108 (version "1.7")
1109 (source
1110 (origin
1111 (method url-fetch)
1112 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1113 "Class-Factory-Util-" version ".tar.gz"))
1114 (sha256
1115 (base32
1116 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1117 (build-system perl-build-system)
1118 (native-inputs `(("perl-module-build" ,perl-module-build)))
1119 (home-page "http://search.cpan.org/dist/Class-Factory-Util/")
1120 (synopsis "Utility methods for factory classes")
1121 (description "This module exports methods useful for factory classes.")
1122 (license (package-license perl))))
1123
1124 (define-public perl-class-inspector
1125 (package
1126 (name "perl-class-inspector")
1127 (version "1.32")
1128 (source
1129 (origin
1130 (method url-fetch)
1131 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1132 "Class-Inspector-" version ".tar.gz"))
1133 (sha256
1134 (base32
1135 "0d85rihxahdvhj8cysqrgg0kbmcqghz5hgy41dbkxr1qaf5xrynf"))))
1136 (build-system perl-build-system)
1137 (home-page "http://search.cpan.org/dist/Class-Inspector/")
1138 (synopsis "Get information about a class and its structure")
1139 (description "Class::Inspector allows you to get information about a
1140 loaded class.")
1141 (license (package-license perl))))
1142
1143 (define-public perl-class-load
1144 (package
1145 (name "perl-class-load")
1146 (version "0.24")
1147 (source
1148 (origin
1149 (method url-fetch)
1150 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1151 "Class-Load-" version ".tar.gz"))
1152 (sha256
1153 (base32
1154 "0dnacm959vi5819h6cdl5qpi89fr81p6smbsqx7m6in18vd87f8b"))))
1155 (build-system perl-build-system)
1156 (native-inputs
1157 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1158 ("perl-test-fatal" ,perl-test-fatal)
1159 ("perl-test-needs" ,perl-test-needs)
1160 ("perl-test-without-module" ,perl-test-without-module)))
1161 (propagated-inputs
1162 `(("perl-package-stash" ,perl-package-stash)
1163 ("perl-data-optlist" ,perl-data-optlist)
1164 ("perl-namespace-clean" ,perl-namespace-clean)
1165 ("perl-module-runtime" ,perl-module-runtime)
1166 ("perl-module-implementation" ,perl-module-implementation)))
1167 (home-page "http://search.cpan.org/dist/Class-Load/")
1168 (synopsis "Working (require \"Class::Name\") and more")
1169 (description "\"require EXPR\" only accepts Class/Name.pm style module
1170 names, not Class::Name. For that, this module provides \"load_class
1171 'Class::Name'\".")
1172 (license (package-license perl))))
1173
1174 (define-public perl-class-load-xs
1175 (package
1176 (name "perl-class-load-xs")
1177 (version "0.10")
1178 (source
1179 (origin
1180 (method url-fetch)
1181 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1182 "Class-Load-XS-" version ".tar.gz"))
1183 (sha256
1184 (base32
1185 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1186 (build-system perl-build-system)
1187 (native-inputs
1188 `(("perl-test-fatal" ,perl-test-fatal)
1189 ("perl-test-needs" ,perl-test-needs)
1190 ("perl-test-without-module" ,perl-test-without-module)))
1191 (inputs `(("perl-class-load" ,perl-class-load)))
1192 (home-page "http://search.cpan.org/dist/Class-Load-XS/")
1193 (synopsis "XS implementation of parts of Class::Load")
1194 (description "This module provides an XS implementation for portions of
1195 Class::Load.")
1196 (license artistic2.0)))
1197
1198 (define-public perl-class-methodmaker
1199 (package
1200 (name "perl-class-methodmaker")
1201 (version "2.24")
1202 (source
1203 (origin
1204 (method url-fetch)
1205 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1206 "class-methodmaker/Class-MethodMaker-"
1207 version ".tar.gz"))
1208 (sha256
1209 (base32
1210 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1211 (build-system perl-build-system)
1212 (home-page "http://search.cpan.org/dist/Class-MethodMaker/")
1213 (synopsis "Create generic methods for OO Perl")
1214 (description "This module solves the problem of having to continually
1215 write accessor methods for your objects that perform standard tasks.")
1216 (license (package-license perl))))
1217
1218 (define-public perl-class-method-modifiers
1219 (package
1220 (name "perl-class-method-modifiers")
1221 (version "2.12")
1222 (source
1223 (origin
1224 (method url-fetch)
1225 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1226 "Class-Method-Modifiers-" version ".tar.gz"))
1227 (sha256
1228 (base32
1229 "1j3swa212wh14dq5r6zjarm2lzpx6mrdfplpjy65px8b09ri0k74"))))
1230 (build-system perl-build-system)
1231 (native-inputs
1232 `(("perl-test-fatal" ,perl-test-fatal)
1233 ("perl-test-requires" ,perl-test-requires)))
1234 (home-page "http://search.cpan.org/dist/Class-Method-Modifiers/")
1235 (synopsis "Moose-like method modifiers")
1236 (description "Class::Method::Modifiers provides three modifiers: 'before',
1237 'around', and 'after'. 'before' and 'after' are run just before and after the
1238 method they modify, but can not really affect that original method. 'around'
1239 is run in place of the original method, with a hook to easily call that
1240 original method.")
1241 (license (package-license perl))))
1242
1243 (define-public perl-class-singleton
1244 (package
1245 (name "perl-class-singleton")
1246 (version "1.5")
1247 (source
1248 (origin
1249 (method url-fetch)
1250 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1251 "Class-Singleton-" version ".tar.gz"))
1252 (sha256
1253 (base32
1254 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1255 (build-system perl-build-system)
1256 (home-page "http://search.cpan.org/dist/Class-Singleton/")
1257 (synopsis "Implementation of a singleton class for Perl")
1258 (description "This module implements a Singleton class from which other
1259 classes can be derived. By itself, the Class::Singleton module does very
1260 little other than manage the instantiation of a single object.")
1261 (license (package-license perl))))
1262
1263 (define-public perl-class-tiny
1264 (package
1265 (name "perl-class-tiny")
1266 (version "1.006")
1267 (source
1268 (origin
1269 (method url-fetch)
1270 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1271 "Class-Tiny-" version ".tar.gz"))
1272 (sha256
1273 (base32
1274 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1275 (build-system perl-build-system)
1276 (home-page "http://search.cpan.org/dist/Class-Tiny/")
1277 (synopsis "Minimalist class construction")
1278 (description "This module offers a minimalist class construction kit. It
1279 uses no non-core modules for any recent Perl.")
1280 (license asl2.0)))
1281
1282 (define-public perl-class-unload
1283 (package
1284 (name "perl-class-unload")
1285 (version "0.08")
1286 (source
1287 (origin
1288 (method url-fetch)
1289 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1290 "Class-Unload-" version ".tar.gz"))
1291 (sha256
1292 (base32
1293 "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
1294 (build-system perl-build-system)
1295 (propagated-inputs
1296 `(("perl-class-inspector" ,perl-class-inspector)))
1297 (home-page "http://search.cpan.org/dist/Class-Unload/")
1298 (synopsis "Unload a class")
1299 (description "Class:Unload unloads a given class by clearing out its
1300 symbol table and removing it from %INC.")
1301 (license (package-license perl))))
1302
1303 (define-public perl-class-xsaccessor
1304 (package
1305 (name "perl-class-xsaccessor")
1306 (version "1.19")
1307 (source
1308 (origin
1309 (method url-fetch)
1310 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1311 "Class-XSAccessor-" version ".tar.gz"))
1312 (sha256
1313 (base32
1314 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1315 (build-system perl-build-system)
1316 (home-page "http://search.cpan.org/dist/Class-XSAccessor/")
1317 (synopsis "Generate fast XS accessors without runtime compilation")
1318 (description "Class::XSAccessor implements fast read, write, and
1319 read/write accessors in XS. Additionally, it can provide predicates such as
1320 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1321 object. It only works with objects that are implemented as ordinary hashes.
1322 Class::XSAccessor::Array implements the same interface for objects that use
1323 arrays for their internal representation.")
1324 (license (package-license perl))))
1325
1326 (define-public perl-clone
1327 (package
1328 (name "perl-clone")
1329 (version "0.39")
1330 (source (origin
1331 (method url-fetch)
1332 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
1333 "Clone-" version ".tar.gz"))
1334 (sha256
1335 (base32
1336 "0bgsidb96gxzf3zhy6v1ksj1c200vxbwykk32fqm1mj97rl4dc5c"))))
1337 (build-system perl-build-system)
1338 (synopsis "Recursively copy Perl datatypes")
1339 (description
1340 "This module provides a clone() method which makes recursive copies of
1341 nested hash, array, scalar and reference types, including tied variables and
1342 objects.")
1343 (home-page (string-append "http://search.cpan.org/~garu/"
1344 "Clone-" version "/"))
1345 (license (package-license perl))))
1346
1347 (define-public perl-clone-pp
1348 (package
1349 (name "perl-clone-pp")
1350 (version "1.07")
1351 (source
1352 (origin
1353 (method url-fetch)
1354 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1355 version ".tar.gz"))
1356 (sha256
1357 (base32
1358 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1359 (build-system perl-build-system)
1360 (home-page "http://search.cpan.org/dist/Clone-PP/")
1361 (synopsis "Recursively copy Perl datatypes")
1362 (description "This module provides a general-purpose @code{clone} function
1363 to make deep copies of Perl data structures. It calls itself recursively to
1364 copy nested hash, array, scalar and reference types, including tied variables
1365 and objects.")
1366 (license (package-license perl))))
1367
1368 (define-public perl-common-sense
1369 (package
1370 (name "perl-common-sense")
1371 (version "3.74")
1372 (source
1373 (origin
1374 (method url-fetch)
1375 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1376 "common-sense-" version ".tar.gz"))
1377 (sha256
1378 (base32
1379 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1380 (build-system perl-build-system)
1381 (home-page "http://search.cpan.org/dist/common-sense/")
1382 (synopsis "Sane defaults for Perl programs")
1383 (description "This module implements some sane defaults for Perl programs,
1384 as defined by two typical specimens of Perl coders.")
1385 (license (package-license perl))))
1386
1387 (define-public perl-config-any
1388 (package
1389 (name "perl-config-any")
1390 (version "0.32")
1391 (source
1392 (origin
1393 (method url-fetch)
1394 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1395 "Config-Any-" version ".tar.gz"))
1396 (sha256
1397 (base32
1398 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1399 (build-system perl-build-system)
1400 (propagated-inputs
1401 `(("perl-module-pluggable" ,perl-module-pluggable)))
1402 (home-page "http://search.cpan.org/dist/Config-Any/")
1403 (synopsis "Load configuration from different file formats")
1404 (description "Config::Any provides a facility for Perl applications and
1405 libraries to load configuration data from multiple different file formats. It
1406 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1407 (license (package-license perl))))
1408
1409 (define-public perl-config-autoconf
1410 (package
1411 (name "perl-config-autoconf")
1412 (version "0.315")
1413 (source
1414 (origin
1415 (method url-fetch)
1416 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1417 "Config-AutoConf-" version ".tar.gz"))
1418 (sha256
1419 (base32
1420 "0h39x9rzrhhilpg8yxlzpka269qrzsjg0iy0c1b9xflqlvhx2g2b"))))
1421 (build-system perl-build-system)
1422 (propagated-inputs
1423 `(("perl-capture-tiny" ,perl-capture-tiny)))
1424 (home-page "http://search.cpan.org/dist/Config-AutoConf/")
1425 (synopsis "Module to implement some AutoConf macros in Perl")
1426 (description "Config::AutoConf is intended to provide the same
1427 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1428 (license (package-license perl))))
1429
1430 (define-public perl-config-general
1431 (package
1432 (name "perl-config-general")
1433 (version "2.56")
1434 (source
1435 (origin
1436 (method url-fetch)
1437 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1438 "Config-General-" version ".tar.gz"))
1439 (sha256
1440 (base32
1441 "0szxxaihz71pr0r2jp9wvbrfc3hrsxi9xrd9vnyrxlrax8sci5h9"))))
1442 (build-system perl-build-system)
1443 (home-page "http://search.cpan.org/dist/Config-General/")
1444 (synopsis "Generic Config Module")
1445 (description "This module opens a config file and parses its contents for
1446 you. The format of config files supported by Config::General is inspired by
1447 the well known Apache config format and is 100% compatible with Apache
1448 configs, but you can also just use simple name/value pairs in your config
1449 files. In addition to the capabilities of an Apache config file it supports
1450 some enhancements such as here-documents, C-style comments, and multiline
1451 options.")
1452 (license (package-license perl))))
1453
1454 (define-public perl-config-ini
1455 (package
1456 (name "perl-config-ini")
1457 (version "0.025")
1458 (source (origin
1459 (method url-fetch)
1460 (uri (string-append
1461 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1462 version ".tar.gz"))
1463 (sha256
1464 (base32
1465 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1466 (build-system perl-build-system)
1467 (inputs
1468 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1469 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1470 ("perl-sub-exporter" ,perl-sub-exporter)))
1471 (home-page "http://search.cpan.org/dist/Config-INI/")
1472 (synopsis "Simple .ini-file format reader and writer")
1473 (description "@code{Config::INI} is a module that facilates the reading
1474 and writing of @code{.ini}-style configuration files.")
1475 (license (package-license perl))))
1476
1477 (define-public perl-context-preserve
1478 (package
1479 (name "perl-context-preserve")
1480 (version "0.03")
1481 (source
1482 (origin
1483 (method url-fetch)
1484 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1485 "Context-Preserve-" version ".tar.gz"))
1486 (sha256
1487 (base32
1488 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1489 (build-system perl-build-system)
1490 (native-inputs
1491 `(("perl-test-exception" ,perl-test-exception)
1492 ("perl-test-simple" ,perl-test-simple)))
1493 (home-page "http://search.cpan.org/dist/Context-Preserve/")
1494 (synopsis "Preserve context during subroutine call")
1495 (description "This module runs code after a subroutine call, preserving
1496 the context the subroutine would have seen if it were the last statement in
1497 the caller.")
1498 (license (package-license perl))))
1499
1500 (define-public perl-convert-binhex
1501 (package
1502 (name "perl-convert-binhex")
1503 (version "1.125")
1504 (source
1505 (origin
1506 (method url-fetch)
1507 (uri (string-append
1508 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1509 version
1510 ".tar.gz"))
1511 (sha256
1512 (base32
1513 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1514 (build-system perl-build-system)
1515 (native-inputs
1516 `(("perl-file-slurp" ,perl-file-slurp)
1517 ("perl-test-most" ,perl-test-most)))
1518 (home-page
1519 "http://search.cpan.org/dist/Convert-BinHex/")
1520 (synopsis "Extract data from Macintosh BinHex files")
1521 (description
1522 "BinHex is a format for transporting files safely through electronic
1523 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1524 provides a means of converting those data streams back into into binary
1525 data.")
1526 (license perl-license)))
1527
1528 (define-public perl-cpan-changes
1529 (package
1530 (name "perl-cpan-changes")
1531 (version "0.400002")
1532 (source
1533 (origin
1534 (method url-fetch)
1535 (uri (string-append
1536 "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
1537 version ".tar.gz"))
1538 (sha256
1539 (base32
1540 "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
1541 (build-system perl-build-system)
1542 (home-page "http://search.cpan.org/dist/CPAN-Changes/")
1543 (synopsis "Read and write @file{Changes} files")
1544 (description
1545 "@code{CPAN::Changes} helps users programmatically read and write
1546 @file{Changes} files that conform to a common specification.")
1547 (license perl-license)))
1548
1549 (define-public perl-cpan-meta-check
1550 (package
1551 (name "perl-cpan-meta-check")
1552 (version "0.014")
1553 (source
1554 (origin
1555 (method url-fetch)
1556 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1557 "CPAN-Meta-Check-" version ".tar.gz"))
1558 (sha256
1559 (base32
1560 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1561 (build-system perl-build-system)
1562 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1563 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1564 (home-page "http://search.cpan.org/dist/CPAN-Meta-Check/")
1565 (synopsis "Verify requirements in a CPAN::Meta object")
1566 (description "This module verifies if requirements described in a
1567 CPAN::Meta object are present.")
1568 (license (package-license perl))))
1569
1570 (define-public perl-cpanel-json-xs
1571 (package
1572 (name "perl-cpanel-json-xs")
1573 (version "3.0114")
1574 (source
1575 (origin
1576 (method url-fetch)
1577 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1578 "Cpanel-JSON-XS-" version ".tar.gz"))
1579 (sha256
1580 (base32
1581 "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71"))))
1582 (build-system perl-build-system)
1583 (propagated-inputs
1584 `(("perl-common-sense" ,perl-common-sense)))
1585 (home-page "http://search.cpan.org/dist/Cpanel-JSON-XS/")
1586 (synopsis "JSON::XS for Cpanel")
1587 (description "This module converts Perl data structures to JSON and vice
1588 versa.")
1589 (license (package-license perl))))
1590
1591 (define-public perl-crypt-randpasswd
1592 (package
1593 (name "perl-crypt-randpasswd")
1594 (version "0.06")
1595 (source
1596 (origin
1597 (method url-fetch)
1598 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1599 "Crypt-RandPasswd-" version ".tar.gz"))
1600 (sha256
1601 (base32
1602 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1603 (build-system perl-build-system)
1604 (home-page "http://search.cpan.org/dist/Crypt-RandPasswd/")
1605 (synopsis "Random password generator")
1606 (description "Crypt::RandPasswd provides three functions that can be used
1607 to generate random passwords, constructed from words, letters, or characters.
1608 This code is a Perl implementation of the Automated Password Generator
1609 standard, like the program described in \"A Random Word Generator For
1610 Pronounceable Passwords\". This code is a re-engineering of the program
1611 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1612 Password Generator\".")
1613 (license (package-license perl))))
1614
1615 (define-public perl-crypt-rc4
1616 (package
1617 (name "perl-crypt-rc4")
1618 (version "2.02")
1619 (source
1620 (origin
1621 (method url-fetch)
1622 (uri (string-append
1623 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
1624 version
1625 ".tar.gz"))
1626 (sha256
1627 (base32
1628 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
1629 (build-system perl-build-system)
1630 (home-page "http://search.cpan.org/dist/Crypt-RC4/")
1631 (synopsis "Perl implementation of the RC4 encryption algorithm")
1632 (description "A pure Perl implementation of the RC4 algorithm.")
1633 (license (package-license perl))))
1634
1635 (define-public perl-cwd-guard
1636 (package
1637 (name "perl-cwd-guard")
1638 (version "0.05")
1639 (source (origin
1640 (method url-fetch)
1641 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
1642 "Cwd-Guard-" version ".tar.gz"))
1643 (sha256
1644 (base32
1645 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
1646 (build-system perl-build-system)
1647 (native-inputs
1648 `(("perl-module-build" ,perl-module-build)
1649 ("perl-test-requires" ,perl-test-requires)))
1650 (home-page "http://search.cpan.org/dist/Cwd-Guard/")
1651 (synopsis "Temporarily change working directory")
1652 (description
1653 "@code{Cwd::Guard} changes the current directory using a limited scope.
1654 It returns to the previous working directory when the object is destroyed.")
1655 (license (package-license perl))))
1656
1657 (define-public perl-czplib
1658 (package
1659 (name "perl-czplib")
1660 (version "1.0.5")
1661 (source
1662 (origin
1663 (method url-fetch)
1664 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1665 version ".tgz"))
1666 (sha256
1667 (base32
1668 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1669 (modules '((guix build utils)))
1670 (snippet
1671 '(begin
1672 ;; Remove .git directory
1673 (delete-file-recursively ".git")
1674 #t))))
1675 (build-system perl-build-system)
1676 (arguments
1677 `(#:phases
1678 (modify-phases %standard-phases
1679 (delete 'configure)
1680 (delete 'build)
1681 (replace
1682 'install
1683 (lambda* (#:key outputs #:allow-other-keys)
1684 (copy-recursively "."
1685 (string-append (assoc-ref outputs "out")
1686 "/plib/perl5/site_perl/"
1687 ,(package-version perl)
1688 "/czplib/"))
1689 #t)))))
1690 (home-page "https://sourceforge.net/projects/czplib/")
1691 (synopsis "Library for genomic analysis")
1692 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1693 functions and data structures for processing and analysing genomic and
1694 bioinformatics data.")
1695 (license gpl3+)))
1696
1697 (define-public perl-data
1698 (package
1699 (name "perl-data")
1700 (version "0.002009")
1701 (source
1702 (origin
1703 (method url-fetch)
1704 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
1705 "Data-Perl-" version ".tar.gz"))
1706 (sha256
1707 (base32
1708 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1709 (build-system perl-build-system)
1710 (native-inputs
1711 `(("perl-test-deep" ,perl-test-deep)
1712 ("perl-test-output" ,perl-test-output)
1713 ("perl-test-fatal" ,perl-test-fatal)))
1714 (inputs
1715 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
1716 ("perl-list-moreutils" ,perl-list-moreutils)
1717 ("perl-module-runtime" ,perl-module-runtime)
1718 ("perl-role-tiny" ,perl-role-tiny)
1719 ("perl-strictures" ,perl-strictures)))
1720 (home-page "http://search.cpan.org/dist/Data-Perl/")
1721 (synopsis "Base classes wrapping fundamental Perl data types")
1722 (description "Collection of classes that wrap fundamental data types that
1723 exist in Perl. These classes and methods as they exist today are an attempt
1724 to mirror functionality provided by Moose's Native Traits. One important
1725 thing to note is all classes currently do no validation on constructor
1726 input.")
1727 (license (package-license perl))))
1728
1729 (define-public perl-data-compare
1730 (package
1731 (name "perl-data-compare")
1732 (version "1.25")
1733 (source
1734 (origin
1735 (method url-fetch)
1736 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
1737 "Data-Compare-" version ".tar.gz"))
1738 (sha256
1739 (base32
1740 "0wzasidg9yjcfsi2gdiaw6726ikqda7n24n0v2ngpaazakdkcjqx"))))
1741 (build-system perl-build-system)
1742 (propagated-inputs
1743 `(("perl-file-find-rule" ,perl-file-find-rule)))
1744 (home-page "http://search.cpan.org/dist/Data-Compare/")
1745 (synopsis "Compare Perl data structures")
1746 (description "This module compares arbitrary data structures to see if
1747 they are copies of each other.")
1748 (license (package-license perl))))
1749
1750 (define-public perl-data-uniqid
1751 (package
1752 (name "perl-data-uniqid")
1753 (version "0.12")
1754 (source
1755 (origin
1756 (method url-fetch)
1757 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
1758 version ".tar.gz"))
1759 (sha256
1760 (base32
1761 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
1762 (build-system perl-build-system)
1763 (home-page "http://search.cpan.org/dist/Data-Uniqid/")
1764 (synopsis "Perl extension for generating unique identifiers")
1765 (description "@code{Data::Uniqid} provides three simple routines for
1766 generating unique ids. These ids are coded with a Base62 systen to make them
1767 short and handy (e.g. to use it as part of a URL).")
1768 (license (package-license perl))))
1769
1770 (define-public perl-data-dump
1771 (package
1772 (name "perl-data-dump")
1773 (version "1.23")
1774 (source
1775 (origin
1776 (method url-fetch)
1777 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1778 "Data-Dump-" version ".tar.gz"))
1779 (sha256
1780 (base32
1781 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
1782 (build-system perl-build-system)
1783 (home-page "http://search.cpan.org/dist/Data-Dump/")
1784 (synopsis "Pretty printing of data structures")
1785 (description "This module provide functions that takes a list of values as
1786 their argument and produces a string as its result. The string contains Perl
1787 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1788 (license (package-license perl))))
1789
1790 (define-public perl-data-dumper-concise
1791 (package
1792 (name "perl-data-dumper-concise")
1793 (version "2.023")
1794 (source
1795 (origin
1796 (method url-fetch)
1797 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1798 "Data-Dumper-Concise-" version ".tar.gz"))
1799 (sha256
1800 (base32
1801 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
1802 (build-system perl-build-system)
1803 (home-page "http://search.cpan.org/dist/Data-Dumper-Concise/")
1804 (synopsis "Concise data dumper")
1805 (description "Data::Dumper::Concise provides a dumper with Less
1806 indentation and newlines plus sub deparsing.")
1807 (license (package-license perl))))
1808
1809 (define-public perl-data-optlist
1810 (package
1811 (name "perl-data-optlist")
1812 (version "0.110")
1813 (source
1814 (origin
1815 (method url-fetch)
1816 (uri (string-append
1817 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1818 version ".tar.gz"))
1819 (sha256
1820 (base32
1821 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
1822 (build-system perl-build-system)
1823 (propagated-inputs
1824 `(("perl-sub-install" ,perl-sub-install)
1825 ("perl-params-util" ,perl-params-util)))
1826 (home-page "http://search.cpan.org/dist/Data-OptList/")
1827 (synopsis "Parse and validate simple name/value option pairs")
1828 (description
1829 "Data::OptList provides a simple syntax for name/value option pairs.")
1830 (license (package-license perl))))
1831
1832 (define-public perl-data-page
1833 (package
1834 (name "perl-data-page")
1835 (version "2.02")
1836 (source
1837 (origin
1838 (method url-fetch)
1839 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
1840 "Data-Page-" version ".tar.gz"))
1841 (sha256
1842 (base32
1843 "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1844 (build-system perl-build-system)
1845 (native-inputs
1846 `(("perl-module-build" ,perl-module-build)
1847 ("perl-test-exception" ,perl-test-exception)))
1848 (propagated-inputs
1849 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1850 (home-page "http://search.cpan.org/dist/Data-Page/")
1851 (synopsis "Help when paging through sets of results")
1852 (description "When searching through large amounts of data, it is often
1853 the case that a result set is returned that is larger than we want to display
1854 on one page. This results in wanting to page through various pages of data.
1855 The maths behind this is unfortunately fiddly, hence this module.")
1856 (license (package-license perl))))
1857
1858 (define-public perl-data-perl
1859 (package
1860 (name "perl-data-perl")
1861 (version "0.002009")
1862 (source
1863 (origin
1864 (method url-fetch)
1865 (uri (string-append
1866 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
1867 version
1868 ".tar.gz"))
1869 (sha256
1870 (base32
1871 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1872 (build-system perl-build-system)
1873 (native-inputs
1874 `(("perl-test-deep" ,perl-test-deep)
1875 ("perl-test-fatal" ,perl-test-fatal)
1876 ("perl-test-output" ,perl-test-output)))
1877 (inputs
1878 `(("perl-class-method-modifiers"
1879 ,perl-class-method-modifiers)
1880 ("perl-module-runtime" ,perl-module-runtime)
1881 ("perl-role-tiny" ,perl-role-tiny)
1882 ("perl-strictures" ,perl-strictures)))
1883 (propagated-inputs
1884 `(("perl-list-moreutils" ,perl-list-moreutils)))
1885 (home-page
1886 "http://search.cpan.org/dist/Data-Perl/")
1887 (synopsis "Base classes wrapping fundamental Perl data types")
1888 (description
1889 "@code{Data::Perl} is a container class for the following classes:
1890 @itemize
1891 @item @code{Data::Perl::Collection::Hash}
1892 @item @code{Data::Perl::Collection::Array}
1893 @item @code{Data::Perl::String}
1894 @item @code{Data::Perl::Number}
1895 @item @code{Data::Perl::Counter}
1896 @item @code{Data::Perl::Bool}
1897 @item @code{Data::Perl::Code}
1898 @end itemize")
1899 (license perl-license)))
1900
1901 (define-public perl-data-printer
1902 (package
1903 (name "perl-data-printer")
1904 (version "0.40")
1905 (source
1906 (origin
1907 (method url-fetch)
1908 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
1909 version ".tar.gz"))
1910 (sha256
1911 (base32
1912 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
1913 (build-system perl-build-system)
1914 (propagated-inputs
1915 `(("perl-clone-pp" ,perl-clone-pp)
1916 ("perl-file-homedir" ,perl-file-homedir)
1917 ("perl-package-stash" ,perl-package-stash)
1918 ("perl-sort-naturally" ,perl-sort-naturally)))
1919 (home-page "http://search.cpan.org/dist/Data-Printer/")
1920 (synopsis "Colored pretty-print of Perl data structures and objects")
1921 (description "Display Perl variables and objects on screen, properly
1922 formatted (to be inspected by a human).")
1923 (license (package-license perl))))
1924
1925 (define-public perl-data-record
1926 (package
1927 (name "perl-data-record")
1928 (version "0.02")
1929 (source
1930 (origin
1931 (method url-fetch)
1932 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
1933 "Data-Record-" version ".tar.gz"))
1934 (sha256
1935 (base32
1936 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
1937 (build-system perl-build-system)
1938 (native-inputs
1939 `(("perl-test-exception" ,perl-test-exception)
1940 ("perl-module-build" ,perl-module-build)))
1941 (propagated-inputs
1942 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
1943 (home-page "http://search.cpan.org/dist/Data-Record/")
1944 (synopsis "Conditionally split data into records")
1945 (description "This Perl module allows you to split data into records by
1946 not only specifying what you wish to split the data on, but also by specifying
1947 an \"unless\" regular expression. If the text in question matches the
1948 \"unless\" regex, it will not be split there. This allows us to do things
1949 like split on newlines unless newlines are embedded in quotes.")
1950 (license (package-license perl))))
1951
1952 (define-public perl-data-section
1953 (package
1954 (name "perl-data-section")
1955 (version "0.200007")
1956 (source
1957 (origin
1958 (method url-fetch)
1959 (uri (string-append
1960 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
1961 version
1962 ".tar.gz"))
1963 (sha256
1964 (base32
1965 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
1966 (build-system perl-build-system)
1967 (native-inputs
1968 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
1969 (propagated-inputs
1970 `(("perl-mro-compat" ,perl-mro-compat)
1971 ("perl-sub-exporter" ,perl-sub-exporter)))
1972 (home-page "http://search.cpan.org/dist/Data-Section/")
1973 (synopsis "Read multiple hunks of data out of your DATA section")
1974 (description "This package provides a Perl library to read multiple hunks
1975 of data out of your DATA section.")
1976 (license (package-license perl))))
1977
1978 (define-public perl-data-stag
1979 (package
1980 (name "perl-data-stag")
1981 (version "0.14")
1982 (source
1983 (origin
1984 (method url-fetch)
1985 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
1986 "Data-Stag-" version ".tar.gz"))
1987 (sha256
1988 (base32
1989 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
1990 (build-system perl-build-system)
1991 (propagated-inputs
1992 `(("perl-io-string" ,perl-io-string)))
1993 (home-page "http://search.cpan.org/dist/Data-Stag/")
1994 (synopsis "Structured tags datastructures")
1995 (description
1996 "This module is for manipulating data as hierarchical tag/value
1997 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
1998 be represented as nested arrays, which have the advantage of being native to
1999 Perl.")
2000 (license (package-license perl))))
2001
2002 (define-public perl-data-stream-bulk
2003 (package
2004 (name "perl-data-stream-bulk")
2005 (version "0.11")
2006 (source
2007 (origin
2008 (method url-fetch)
2009 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2010 "Data-Stream-Bulk-" version ".tar.gz"))
2011 (sha256
2012 (base32
2013 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
2014 (build-system perl-build-system)
2015 (native-inputs
2016 `(("perl-test-requires" ,perl-test-requires)))
2017 (propagated-inputs
2018 `(("perl-moose" ,perl-moose)
2019 ("perl-namespace-clean" ,perl-namespace-clean)
2020 ("perl-path-class" ,perl-path-class)
2021 ("perl-sub-exporter" ,perl-sub-exporter)))
2022 (home-page "http://search.cpan.org/dist/Data-Stream-Bulk/")
2023 (synopsis "N at a time iteration API")
2024 (description "This module tries to find middle ground between one at a
2025 time and all at once processing of data sets. The purpose of this module is
2026 to avoid the overhead of implementing an iterative api when this isn't
2027 necessary, without breaking forward compatibility in case that becomes
2028 necessary later on.")
2029 (license (package-license perl))))
2030
2031 (define-public perl-data-tumbler
2032 (package
2033 (name "perl-data-tumbler")
2034 (version "0.008")
2035 (source
2036 (origin
2037 (method url-fetch)
2038 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2039 "Data-Tumbler-" version ".tar.gz"))
2040 (sha256
2041 (base32
2042 "13kww2xj30rkk8w9h50h4blypdb689zgils0zyah587kip0z6509"))))
2043 (build-system perl-build-system)
2044 (native-inputs
2045 `(("perl-test-most" ,perl-test-most)))
2046 (propagated-inputs
2047 `(("perl-file-homedir" ,perl-file-homedir)))
2048 (home-page "http://search.cpan.org/dist/Data-Tumbler/")
2049 (synopsis "Dynamic generation of nested combinations of variants")
2050 (description "Data::Tumbler - Dynamic generation of nested combinations of
2051 variants.")
2052 (license (package-license perl))))
2053
2054 (define-public perl-data-visitor
2055 (package
2056 (name "perl-data-visitor")
2057 (version "0.30")
2058 (source
2059 (origin
2060 (method url-fetch)
2061 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2062 "Data-Visitor-" version ".tar.gz"))
2063 (sha256
2064 (base32
2065 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2066 (build-system perl-build-system)
2067 (native-inputs
2068 `(("perl-test-requires" ,perl-test-requires)))
2069 (propagated-inputs
2070 `(("perl-class-load" ,perl-class-load)
2071 ("perl-moose" ,perl-moose)
2072 ("perl-namespace-clean" ,perl-namespace-clean)
2073 ("perl-task-weaken" ,perl-task-weaken)
2074 ("perl-tie-toobject" ,perl-tie-toobject)))
2075 (home-page "http://search.cpan.org/dist/Data-Visitor/")
2076 (synopsis "Visitor style traversal of Perl data structures")
2077 (description "This module is a simple visitor implementation for Perl
2078 values. It has a main dispatcher method, visit, which takes a single perl
2079 value and then calls the methods appropriate for that value. It can
2080 recursively map (cloning as necessary) or just traverse most structures, with
2081 support for per-object behavior, circular structures, visiting tied
2082 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2083 (license (package-license perl))))
2084
2085 (define-public perl-date-calc
2086 (package
2087 (name "perl-date-calc")
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-" version ".tar.gz"))
2094 (sha256
2095 (base32
2096 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2097 (build-system perl-build-system)
2098 (propagated-inputs
2099 `(("perl-bit-vector" ,perl-bit-vector)
2100 ("perl-carp-clan" ,perl-carp-clan)))
2101 (home-page "http://search.cpan.org/dist/Date-Calc/")
2102 (synopsis "Gregorian calendar date calculations")
2103 (description "This package consists of a Perl module for date calculations
2104 based on the Gregorian calendar, thereby complying with all relevant norms and
2105 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2106 applicable).")
2107 (license (package-license perl))))
2108
2109 (define-public perl-date-calc-xs
2110 (package
2111 (name "perl-date-calc-xs")
2112 (version "6.4")
2113 (source
2114 (origin
2115 (method url-fetch)
2116 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2117 "Date-Calc-XS-" version ".tar.gz"))
2118 (sha256
2119 (base32
2120 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2121 (build-system perl-build-system)
2122 (propagated-inputs
2123 `(("perl-bit-vector" ,perl-bit-vector)
2124 ("perl-carp-clan" ,perl-carp-clan)
2125 ("perl-date-calc" ,perl-date-calc)))
2126 (home-page "http://search.cpan.org/dist/Date-Calc-XS/")
2127 (synopsis "XS wrapper for Date::Calc")
2128 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2129 Date::Calc.")
2130 (license (list (package-license perl) lgpl2.0+))))
2131
2132 (define-public perl-date-manip
2133 (package
2134 (name "perl-date-manip")
2135 (version "6.70")
2136 (source
2137 (origin
2138 (method url-fetch)
2139 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SB/SBECK/"
2140 "Date-Manip-" version ".tar.gz"))
2141 (sha256
2142 (base32
2143 "0r4k4ypb09xwhvq6das0vpx2c0xbhhhx83knq6jfpf8m55h8qi9r"))))
2144 (build-system perl-build-system)
2145 (native-inputs `(("perl-module-build" ,perl-module-build)))
2146 (arguments
2147 ;; Tests would require tzdata for timezone information, but tzdata is in
2148 ;; (gnu packages base) which would create a circular dependency. TODO:
2149 ;; Maybe put this package elsewhere so we can turn on tests.
2150 '(#:tests? #f))
2151 (home-page "http://search.cpan.org/dist/Date-Manip/")
2152 (synopsis "Date manipulation routines")
2153 (description "Date::Manip is a series of modules for common date/time
2154 operations, such as comparing two times, determining a date a given amount of
2155 time from another, or parsing international times.")
2156 (license (package-license perl))))
2157
2158 (define-public perl-date-simple
2159 (package
2160 (name "perl-date-simple")
2161 (version "3.03")
2162 (source
2163 (origin
2164 (method url-fetch)
2165 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2166 "Date-Simple-" version ".tar.gz"))
2167 (sha256
2168 (base32
2169 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2170 (build-system perl-build-system)
2171 (home-page "http://search.cpan.org/dist/Date-Simple/")
2172 (synopsis "Simple date handling")
2173 (description "Dates are complex enough without times and timezones. This
2174 module may be used to create simple date objects. It handles validation,
2175 interval arithmetic, and day-of-week calculation. It does not deal with
2176 hours, minutes, seconds, and time zones.")
2177 ;; Can be used with either license.
2178 (license (list (package-license perl) gpl2+))))
2179
2180 (define-public perl-datetime
2181 (package
2182 (name "perl-datetime")
2183 (version "1.49")
2184 (source
2185 (origin
2186 (method url-fetch)
2187 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2188 "DateTime-" version ".tar.gz"))
2189 (sha256
2190 (base32
2191 "0hbw4zq1562slnz7g7hyhfhyq98dzkk3i5g21x3xra5cvfix93kh"))))
2192 (build-system perl-build-system)
2193 (native-inputs
2194 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2195 ("perl-module-build" ,perl-module-build)
2196 ("perl-test-fatal" ,perl-test-fatal)
2197 ("perl-test-warnings" ,perl-test-warnings)))
2198 (propagated-inputs
2199 `(("perl-datetime-locale" ,perl-datetime-locale)
2200 ("perl-datetime-timezone" ,perl-datetime-timezone)
2201 ("perl-file-sharedir" ,perl-file-sharedir)
2202 ("perl-params-validate" ,perl-params-validate)
2203 ("perl-try-tiny" ,perl-try-tiny)))
2204 (home-page "http://search.cpan.org/dist/DateTime/")
2205 (synopsis "Date and time object for Perl")
2206 (description "DateTime is a class for the representation of date/time
2207 combinations. It represents the Gregorian calendar, extended backwards in
2208 time before its creation (in 1582).")
2209 (license artistic2.0)))
2210
2211 (define-public perl-datetime-calendar-julian
2212 (package
2213 (name "perl-datetime-calendar-julian")
2214 (version "0.04")
2215 (source
2216 (origin
2217 (method url-fetch)
2218 (uri (string-append "mirror://cpan/authors/id/P/PI/PIJLL/"
2219 "DateTime-Calendar-Julian-" version ".tar.gz"))
2220 (sha256
2221 (base32
2222 "03h0llkwsiw2d2ci1ah5x9sp8xrvnbgd471i5hnpgl5w32nnhndv"))))
2223 (build-system perl-build-system)
2224 ;; Only needed for tests
2225 (native-inputs
2226 `(("perl-datetime" ,perl-datetime)))
2227 (home-page "http://search.cpan.org/dist/DateTime-Calendar-Julian/")
2228 (synopsis "Dates in the Julian calendar")
2229 (description "This package is a companion module to @code{DateTime.pm}.
2230 It implements the Julian calendar. It supports everything that
2231 @code{DateTime.pm} supports and more: about one day per century more, to be
2232 precise.")
2233 (license (package-license perl))))
2234
2235 (define-public perl-datetime-set
2236 (package
2237 (name "perl-datetime-set")
2238 (version "0.3900")
2239 (source
2240 (origin
2241 (method url-fetch)
2242 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2243 "DateTime-Set-" version ".tar.gz"))
2244 (sha256
2245 (base32
2246 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2247 (build-system perl-build-system)
2248 (native-inputs
2249 `(("perl-module-build" ,perl-module-build)))
2250 (propagated-inputs
2251 `(("perl-datetime" ,perl-datetime)
2252 ("perl-params-validate" ,perl-params-validate)
2253 ("perl-set-infinite" ,perl-set-infinite)))
2254 (home-page "http://search.cpan.org/dist/DateTime-Set/")
2255 (synopsis "DateTime set objects")
2256 (description "The DateTime::Set module provides a date/time sets
2257 implementation. It allows, for example, the generation of groups of dates,
2258 like \"every wednesday\", and then find all the dates matching that pattern,
2259 within a time range.")
2260 (license (package-license perl))))
2261
2262 (define-public perl-datetime-event-ical
2263 (package
2264 (name "perl-datetime-event-ical")
2265 (version "0.13")
2266 (source
2267 (origin
2268 (method url-fetch)
2269 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2270 "DateTime-Event-ICal-" version ".tar.gz"))
2271 (sha256
2272 (base32
2273 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2274 (build-system perl-build-system)
2275 (propagated-inputs
2276 `(("perl-datetime" ,perl-datetime)
2277 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2278 (home-page "http://search.cpan.org/dist/DateTime-Event-ICal/")
2279 (synopsis "DateTime rfc2445 recurrences")
2280 (description "This module provides convenience methods that let you easily
2281 create DateTime::Set objects for RFC 2445 style recurrences.")
2282 (license (package-license perl))))
2283
2284 (define-public perl-datetime-event-recurrence
2285 (package
2286 (name "perl-datetime-event-recurrence")
2287 (version "0.19")
2288 (source
2289 (origin
2290 (method url-fetch)
2291 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2292 "DateTime-Event-Recurrence-" version ".tar.gz"))
2293 (sha256
2294 (base32
2295 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
2296 (build-system perl-build-system)
2297 (propagated-inputs
2298 `(("perl-datetime" ,perl-datetime)
2299 ("perl-datetime-set" ,perl-datetime-set)))
2300 (home-page "http://search.cpan.org/dist/DateTime-Event-Recurrence/")
2301 (synopsis "DateTime::Set extension for basic recurrences")
2302 (description "This module provides convenience methods that let you easily
2303 create DateTime::Set objects for various recurrences, such as \"once a month\"
2304 or \"every day\". You can also create more complicated recurrences, such as
2305 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
2306 (license (package-license perl))))
2307
2308 (define-public perl-datetime-format-builder
2309 (package
2310 (name "perl-datetime-format-builder")
2311 (version "0.81")
2312 (source
2313 (origin
2314 (method url-fetch)
2315 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2316 "DateTime-Format-Builder-" version ".tar.gz"))
2317 (sha256
2318 (base32
2319 "1vrkzw7kmxnyy403ykxgbg2kvgs99nggi4n9gi09ixivnn68mmbw"))))
2320 (build-system perl-build-system)
2321 (propagated-inputs
2322 `(("perl-class-factory-util" ,perl-class-factory-util)
2323 ("perl-datetime" ,perl-datetime)
2324 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
2325 ("perl-params-validate" ,perl-params-validate)))
2326 (home-page "http://search.cpan.org/dist/DateTime-Format-Builder/")
2327 (synopsis "Create DateTime parser classes and objects")
2328 (description "DateTime::Format::Builder creates DateTime parsers. Many
2329 string formats of dates and times are simple and just require a basic regular
2330 expression to extract the relevant information. Builder provides a simple way
2331 to do this without writing reams of structural code.")
2332 (license artistic2.0)))
2333
2334 (define-public perl-datetime-format-flexible
2335 (package
2336 (name "perl-datetime-format-flexible")
2337 (version "0.28")
2338 (source
2339 (origin
2340 (method url-fetch)
2341 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
2342 "DateTime-Format-Flexible-" version ".tar.gz"))
2343 (sha256
2344 (base32
2345 "1g63zs0q2x40h29r7in50c55g6kxiw3m2faw2p6c4rg74sj2k2b5"))))
2346 (build-system perl-build-system)
2347 (propagated-inputs
2348 `(("perl-datetime" ,perl-datetime)
2349 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
2350 ("perl-datetime-timezone" ,perl-datetime-timezone)
2351 ("perl-list-moreutils" ,perl-list-moreutils)
2352 ("perl-module-pluggable" ,perl-module-pluggable)
2353 ("perl-test-mocktime" ,perl-test-mocktime)))
2354 (home-page "http://search.cpan.org/dist/DateTime-Format-Flexible/")
2355 (synopsis "Parse data/time strings")
2356 (description "DateTime::Format::Flexible attempts to take any string you
2357 give it and parse it into a DateTime object.")
2358 (license (package-license perl))))
2359
2360 (define-public perl-datetime-format-ical
2361 (package
2362 (name "perl-datetime-format-ical")
2363 (version "0.09")
2364 (source
2365 (origin
2366 (method url-fetch)
2367 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2368 "DateTime-Format-ICal-" version ".tar.gz"))
2369 (sha256
2370 (base32
2371 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
2372 (build-system perl-build-system)
2373 (native-inputs
2374 `(("perl-module-build" ,perl-module-build)))
2375 (propagated-inputs
2376 `(("perl-datetime" ,perl-datetime)
2377 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
2378 ("perl-datetime-set" ,perl-datetime-set)
2379 ("perl-datetime-timezone" ,perl-datetime-timezone)
2380 ("perl-params-validate" ,perl-params-validate)))
2381 (home-page "http://search.cpan.org/dist/DateTime-Format-ICal/")
2382 (synopsis "Parse and format iCal datetime and duration strings")
2383 (description "This module understands the ICal date/time and duration
2384 formats, as defined in RFC 2445. It can be used to parse these formats in
2385 order to create the appropriate objects.")
2386 (license (package-license perl))))
2387
2388 (define-public perl-datetime-format-natural
2389 (package
2390 (name "perl-datetime-format-natural")
2391 (version "1.05")
2392 (source
2393 (origin
2394 (method url-fetch)
2395 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
2396 "DateTime-Format-Natural-" version ".tar.gz"))
2397 (sha256
2398 (base32
2399 "10ldrhz5rnpsd8qmqn1a4s0w5hhfbjrr13a93yx7kpp89g85pxqv"))))
2400 (build-system perl-build-system)
2401 (native-inputs
2402 `(("perl-module-build" ,perl-module-build)
2403 ("perl-module-util" ,perl-module-util)
2404 ("perl-test-mocktime" ,perl-test-mocktime)))
2405 (propagated-inputs
2406 `(("perl-boolean" ,perl-boolean)
2407 ("perl-clone" ,perl-clone)
2408 ("perl-date-calc" ,perl-date-calc)
2409 ("perl-date-calc-xs" ,perl-date-calc-xs)
2410 ("perl-datetime" ,perl-datetime)
2411 ("perl-datetime-timezone" ,perl-datetime-timezone)
2412 ("perl-list-moreutils" ,perl-list-moreutils)
2413 ("perl-params-validate" ,perl-params-validate)))
2414 (home-page "http://search.cpan.org/dist/DateTime-Format-Natural/")
2415 (synopsis "Machine-readable date/time with natural parsing")
2416 (description "DateTime::Format::Natural takes a string with a human
2417 readable date/time and creates a machine readable one by applying natural
2418 parsing logic.")
2419 (license (package-license perl))))
2420
2421 (define-public perl-datetime-format-strptime
2422 (package
2423 (name "perl-datetime-format-strptime")
2424 (version "1.75")
2425 (source
2426 (origin
2427 (method url-fetch)
2428 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2429 "DateTime-Format-Strptime-" version ".tar.gz"))
2430 (sha256
2431 (base32
2432 "069wmgbchydgx3nm9klqw0g6ksnja28g61d4allgzmvr9ynb5ksg"))))
2433 (build-system perl-build-system)
2434 (propagated-inputs
2435 `(("perl-datetime" ,perl-datetime)
2436 ("perl-datetime-locale" ,perl-datetime-locale)
2437 ("perl-datetime-timezone" ,perl-datetime-timezone)
2438 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
2439 ("perl-params-validate" ,perl-params-validate)
2440 ("perl-sub-name" ,perl-sub-name)
2441 ("perl-test-warnings" ,perl-test-warnings)))
2442 (home-page "http://search.cpan.org/dist/DateTime-Format-Strptime/")
2443 (synopsis "Parse and format strp and strf time patterns")
2444 (description "This module implements most of `strptime(3)`, the POSIX
2445 function that is the reverse of `strftime(3)`, for `DateTime`. While
2446 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
2447 takes a string and a pattern and returns the `DateTime` object associated.")
2448 (license artistic2.0)))
2449
2450 (define-public perl-datetime-locale
2451 (package
2452 (name "perl-datetime-locale")
2453 (version "1.17")
2454 (source
2455 (origin
2456 (method url-fetch)
2457 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2458 "DateTime-Locale-" version ".tar.gz"))
2459 (sha256
2460 (base32
2461 "1jawnci23kik5x4gln6ixvv9bxznd5f6ira024yjxsc97y5mk9hc"))))
2462 (build-system perl-build-system)
2463 (native-inputs
2464 `(("perl-file-sharedir" ,perl-file-sharedir)
2465 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
2466 ("perl-test-warnings" ,perl-test-warnings)
2467 ("perl-test-requires" ,perl-test-requires)
2468 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2469 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
2470 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
2471 ("perl-module-build" ,perl-module-build)))
2472 (propagated-inputs
2473 `(("perl-list-moreutils" ,perl-list-moreutils)
2474 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
2475 (home-page "http://search.cpan.org/dist/DateTime-Locale/")
2476 (synopsis "Localization support for DateTime.pm")
2477 (description "The DateTime::Locale modules provide localization data for
2478 the DateTime.pm class.")
2479 (license (package-license perl))))
2480
2481 (define-public perl-datetime-timezone
2482 (package
2483 (name "perl-datetime-timezone")
2484 (version "2.19")
2485 (source
2486 (origin
2487 (method url-fetch)
2488 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2489 "DateTime-TimeZone-" version ".tar.gz"))
2490 (sha256
2491 (base32
2492 "1y54bsgq886sg35fgmxgj8wwmgs4l83qhwa0g3zv8w9d43z2w6dr"))))
2493 (build-system perl-build-system)
2494 (native-inputs
2495 `(("perl-test-fatal" ,perl-test-fatal)
2496 ("perl-test-requires" ,perl-test-requires)))
2497 (propagated-inputs
2498 `(("perl-class-singleton" ,perl-class-singleton)
2499 ("perl-list-allutils" ,perl-list-allutils)
2500 ("perl-module-runtime" ,perl-module-runtime)
2501 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2502 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
2503 ("perl-try-tiny" ,perl-try-tiny)))
2504 (home-page "http://search.cpan.org/dist/DateTime-TimeZone/")
2505 (synopsis "Time zone object for Perl")
2506 (description "This class is the base class for all time zone objects. A
2507 time zone is represented internally as a set of observances, each of which
2508 describes the offset from GMT for a given time period. Note that without the
2509 DateTime module, this module does not do much. It's primary interface is
2510 through a DateTime object, and most users will not need to directly use
2511 DateTime::TimeZone methods.")
2512 (license (package-license perl))))
2513
2514 (define-public perl-datetimex-easy
2515 (package
2516 (name "perl-datetimex-easy")
2517 (version "0.089")
2518 (source
2519 (origin
2520 (method url-fetch)
2521 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
2522 "DateTimeX-Easy-" version ".tar.gz"))
2523 (sha256
2524 (base32
2525 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
2526 (build-system perl-build-system)
2527 (native-inputs
2528 `(("perl-test-most" ,perl-test-most)))
2529 (propagated-inputs
2530 `(("perl-datetime" ,perl-datetime)
2531 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
2532 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
2533 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
2534 ("perl-timedate" ,perl-timedate)))
2535 (home-page "http://search.cpan.org/dist/DateTimeX-Easy/")
2536 (synopsis "Parse date/time strings")
2537 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
2538 to create DateTime objects, with some custom tweaks to smooth out the rough
2539 edges (mainly concerning timezone detection and selection).")
2540 (license (package-license perl))))
2541
2542 (define-public perl-datetime-format-mail
2543 (package
2544 (name "perl-datetime-format-mail")
2545 (version "0.403")
2546 (source (origin
2547 (method url-fetch)
2548 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
2549 "DateTime-Format-Mail-" version ".tar.gz"))
2550 (sha256
2551 (base32
2552 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
2553 (build-system perl-build-system)
2554 (inputs
2555 `(("perl-datetime" ,perl-datetime)
2556 ("perl-params-validate" ,perl-params-validate)))
2557 (home-page "http://search.cpan.org/dist/DateTime-Format-Mail/")
2558 (synopsis "Convert between DateTime and RFC2822/822 formats")
2559 (description "RFCs 2822 and 822 specify date formats to be used by email.
2560 This module parses and emits such dates.")
2561 (license (package-license perl))))
2562
2563 (define-public perl-datetime-format-w3cdtf
2564 (package
2565 (name "perl-datetime-format-w3cdtf")
2566 (version "0.07")
2567 (source (origin
2568 (method url-fetch)
2569 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
2570 "DateTime-Format-W3CDTF-" version ".tar.gz"))
2571 (sha256
2572 (base32
2573 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
2574 (build-system perl-build-system)
2575 (inputs
2576 `(("perl-datetime" ,perl-datetime)))
2577 (native-inputs
2578 `(("perl-test-pod" ,perl-test-pod)
2579 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2580 (home-page "http://search.cpan.org/dist/DateTime-Format-W3CDTF/")
2581 (synopsis "Parse and format W3CDTF datetime strings")
2582 (description
2583 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
2584 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
2585 format of RSS 1.0. It can be used to parse these formats in order to create
2586 the appropriate objects.")
2587 (license (package-license perl))))
2588
2589 (define-public perl-devel-caller
2590 (package
2591 (name "perl-devel-caller")
2592 (version "2.06")
2593 (source
2594 (origin
2595 (method url-fetch)
2596 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2597 "Devel-Caller-" version ".tar.gz"))
2598 (sha256
2599 (base32
2600 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
2601 (build-system perl-build-system)
2602 (propagated-inputs
2603 `(("perl-padwalker" ,perl-padwalker)))
2604 (home-page "http://search.cpan.org/dist/Devel-Caller/")
2605 (synopsis "Meatier version of caller")
2606 (description "Devel::Caller provides meatier version of caller.")
2607 (license (package-license perl))))
2608
2609 (define-public perl-devel-checkbin
2610 (package
2611 (name "perl-devel-checkbin")
2612 (version "0.02")
2613 (source
2614 (origin
2615 (method url-fetch)
2616 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
2617 "Devel-CheckBin-" version ".tar.gz"))
2618 (sha256
2619 (base32
2620 "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m"))))
2621 (build-system perl-build-system)
2622 (native-inputs `(("perl-module-build" ,perl-module-build)))
2623 (home-page "http://search.cpan.org/dist/Devel-CheckBin/")
2624 (synopsis "Check that a command is available")
2625 (description "Devel::CheckBin is a perl module that checks whether a
2626 particular command is available.")
2627 (license (package-license perl))))
2628
2629 (define-public perl-devel-checkcompiler
2630 (package
2631 (name "perl-devel-checkcompiler")
2632 (version "0.07")
2633 (source (origin
2634 (method url-fetch)
2635 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
2636 "Devel-CheckCompiler-" version ".tar.gz"))
2637 (sha256
2638 (base32
2639 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
2640 (build-system perl-build-system)
2641 (native-inputs
2642 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
2643 (home-page "http://search.cpan.org/dist/Devel-CheckCompiler/")
2644 (synopsis "Check compiler availability")
2645 (description "@code{Devel::CheckCompiler} is a tiny module to check
2646 whether a compiler is available. It can test for a C99 compiler, or
2647 you can tell it to compile a C source file with optional linker flags.")
2648 (license (package-license perl))))
2649
2650 (define-public perl-devel-cycle
2651 (package
2652 (name "perl-devel-cycle")
2653 (version "1.12")
2654 (source
2655 (origin
2656 (method url-fetch)
2657 (uri (string-append
2658 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
2659 version
2660 ".tar.gz"))
2661 (sha256
2662 (base32
2663 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
2664 (build-system perl-build-system)
2665 (home-page
2666 "http://search.cpan.org/dist/Devel-Cycle/")
2667 (synopsis "Find memory cycles in objects")
2668 (description
2669 "@code{Devel::Cycle} This is a tool for finding circular references in
2670 objects and other types of references. Because of Perl's reference-count
2671 based memory management, circular references will cause memory leaks.")
2672 (license perl-license)))
2673
2674 (define-public perl-devel-globaldestruction
2675 (package
2676 (name "perl-devel-globaldestruction")
2677 (version "0.14")
2678 (source
2679 (origin
2680 (method url-fetch)
2681 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2682 "Devel-GlobalDestruction-" version ".tar.gz"))
2683 (sha256
2684 (base32
2685 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
2686 (build-system perl-build-system)
2687 (propagated-inputs
2688 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
2689 (home-page "http://search.cpan.org/dist/Devel-GlobalDestruction/")
2690 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
2691 (description "Devel::GlobalDestruction provides a function returning the
2692 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
2693 (license (package-license perl))))
2694
2695 (define-public perl-devel-hide
2696 (package
2697 (name "perl-devel-hide")
2698 (version "0.0009")
2699 (source
2700 (origin
2701 (method url-fetch)
2702 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
2703 version ".tar.gz"))
2704 (sha256
2705 (base32
2706 "1phnzbw58v6551nhv6sg86m72nx9w5j4msh1hg4jvkakkq5w9pki"))))
2707 (build-system perl-build-system)
2708 (propagated-inputs
2709 `(("perl-test-pod" ,perl-test-pod)
2710 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2711 (home-page "http://search.cpan.org/dist/Devel-Hide/")
2712 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
2713 (description "Given a list of Perl modules/filenames, this module makes
2714 @code{require} and @code{use} statements fail (no matter whether the specified
2715 files/modules are installed or not).")
2716 (license (package-license perl))))
2717
2718 (define-public perl-devel-lexalias
2719 (package
2720 (name "perl-devel-lexalias")
2721 (version "0.05")
2722 (source
2723 (origin
2724 (method url-fetch)
2725 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2726 "Devel-LexAlias-" version ".tar.gz"))
2727 (sha256
2728 (base32
2729 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
2730 (build-system perl-build-system)
2731 (propagated-inputs
2732 `(("perl-devel-caller" ,perl-devel-caller)))
2733 (home-page "http://search.cpan.org/dist/Devel-LexAlias/")
2734 (synopsis "Alias lexical variables")
2735 (description "Devel::LexAlias provides the ability to alias a lexical
2736 variable in a subroutines scope to one of your choosing.")
2737 (license (package-license perl))))
2738
2739 (define-public perl-devel-overloadinfo
2740 (package
2741 (name "perl-devel-overloadinfo")
2742 (version "0.005")
2743 (source
2744 (origin
2745 (method url-fetch)
2746 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
2747 "Devel-OverloadInfo-" version ".tar.gz"))
2748 (sha256
2749 (base32
2750 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
2751 (build-system perl-build-system)
2752 (native-inputs
2753 `(("perl-test-fatal" ,perl-test-fatal)))
2754 (propagated-inputs
2755 `(("perl-package-stash" ,perl-package-stash)
2756 ("perl-sub-identify" ,perl-sub-identify)
2757 ("perl-mro-compat" ,perl-mro-compat)))
2758 (home-page "http://search.cpan.org/dist/Devel-OverloadInfo/")
2759 (synopsis "Introspect overloaded operators")
2760 (description "Devel::OverloadInfo returns information about overloaded
2761 operators for a given class (or object), including where in the inheritance
2762 hierarchy the overloads are declared and where the code implementing it is.")
2763 (license (package-license perl))))
2764
2765 (define-public perl-devel-partialdump
2766 (package
2767 (name "perl-devel-partialdump")
2768 (version "0.18")
2769 (source
2770 (origin
2771 (method url-fetch)
2772 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2773 "Devel-PartialDump-" version ".tar.gz"))
2774 (sha256
2775 (base32
2776 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
2777 (build-system perl-build-system)
2778 (native-inputs
2779 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2780 ("perl-test-warn" ,perl-test-warn)
2781 ("perl-test-simple" ,perl-test-simple)))
2782 (propagated-inputs
2783 `(("perl-class-tiny" ,perl-class-tiny)
2784 ("perl-sub-exporter" ,perl-sub-exporter)
2785 ("perl-namespace-clean" ,perl-namespace-clean)))
2786 (home-page "http://search.cpan.org/dist/Devel-PartialDump/")
2787 (synopsis "Partial dumping of data structures")
2788 (description "This module is a data dumper optimized for logging of
2789 arbitrary parameters.")
2790 (license (package-license perl))))
2791
2792 (define-public perl-devel-stacktrace
2793 (package
2794 (name "perl-devel-stacktrace")
2795 (version "2.03")
2796 (source
2797 (origin
2798 (method url-fetch)
2799 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2800 "Devel-StackTrace-" version ".tar.gz"))
2801 (sha256
2802 (base32
2803 "0j58kgjr9s3vibsgifmk9k5h7daag0cb9x45f30m9qi4pr7cs63n"))))
2804 (build-system perl-build-system)
2805 (home-page "http://search.cpan.org/dist/Devel-StackTrace/")
2806 (synopsis "Object representing a stack trace")
2807 (description "The Devel::StackTrace module contains two classes,
2808 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
2809 information that can be retrieved via Perl's caller() function, as well as
2810 providing a simple interface to this data.")
2811 (license artistic2.0)))
2812
2813 (define-public perl-devel-stacktrace-ashtml
2814 (package
2815 (name "perl-devel-stacktrace-ashtml")
2816 (version "0.15")
2817 (source
2818 (origin
2819 (method url-fetch)
2820 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2821 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
2822 (sha256
2823 (base32
2824 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
2825 (build-system perl-build-system)
2826 (propagated-inputs
2827 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
2828 (home-page "http://search.cpan.org/dist/Devel-StackTrace-AsHTML/")
2829 (synopsis "Displays stack trace in HTML")
2830 (description "Devel::StackTrace::AsHTML adds as_html method to
2831 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
2832 snippet context and function parameters. If you call it on an instance of
2833 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
2834 each stack frame.")
2835 (license (package-license perl))))
2836
2837 (define-public perl-devel-symdump
2838 (package
2839 (name "perl-devel-symdump")
2840 (version "2.18")
2841 (source
2842 (origin
2843 (method url-fetch)
2844 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
2845 "Devel-Symdump-" version ".tar.gz"))
2846 (sha256
2847 (base32
2848 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
2849 (build-system perl-build-system)
2850 (home-page "http://search.cpan.org/dist/Devel-Symdump/")
2851 (synopsis "Dump symbol names or the symbol table")
2852 (description "Devel::Symdump provides access to the perl symbol table.")
2853 (license (package-license perl))))
2854
2855 (define-public perl-digest-hmac
2856 (package
2857 (name "perl-digest-hmac")
2858 (version "1.03")
2859 (source
2860 (origin
2861 (method url-fetch)
2862 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2863 "Digest-HMAC-" version ".tar.gz"))
2864 (sha256
2865 (base32
2866 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
2867 (build-system perl-build-system)
2868 (home-page "http://search.cpan.org/dist/Digest-HMAC/")
2869 (synopsis "Keyed-Hashing for Message Authentication")
2870 (description "The Digest::HMAC module follows the common Digest::
2871 interface for the RFC 2104 HMAC mechanism.")
2872 (license (package-license perl))))
2873
2874 (define-public perl-digest-md5
2875 (package
2876 (name "perl-digest-md5")
2877 (version "2.55")
2878 (source
2879 (origin
2880 (method url-fetch)
2881 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
2882 version ".tar.gz"))
2883 (sha256
2884 (base32
2885 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
2886 (build-system perl-build-system)
2887 (arguments
2888 `(#:phases
2889 (modify-phases %standard-phases
2890 (add-after 'build 'set-permissions
2891 (lambda _
2892 ;; Make MD5.so read-write so it can be stripped.
2893 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755))))))
2894 (home-page "http://search.cpan.org/dist/Digest-MD5/")
2895 (synopsis "Perl interface to the MD-5 algorithm")
2896 (description
2897 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
2898 algorithm from within Perl programs. The algorithm takes as
2899 input a message of arbitrary length and produces as output a
2900 128-bit \"fingerprint\" or \"message digest\" of the input.")
2901 (license (package-license perl))))
2902
2903 (define-public perl-digest-sha1
2904 (package
2905 (name "perl-digest-sha1")
2906 (version "2.13")
2907 (source (origin
2908 (method url-fetch)
2909 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2910 "Digest-SHA1-" version ".tar.gz"))
2911 (sha256
2912 (base32
2913 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
2914 (build-system perl-build-system)
2915 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
2916 (description
2917 "This package provides 'Digest::SHA1', an implementation of the NIST
2918 SHA-1 message digest algorithm for use by Perl programs.")
2919 (home-page (string-append "http://search.cpan.org/~gaas/Digest-SHA1-"
2920 version "/SHA1.pm"))
2921 (license (package-license perl))))
2922
2923 (define-public perl-dist-checkconflicts
2924 (package
2925 (name "perl-dist-checkconflicts")
2926 (version "0.11")
2927 (source (origin
2928 (method url-fetch)
2929 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2930 "Dist-CheckConflicts-" version ".tar.gz"))
2931 (sha256
2932 (base32
2933 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
2934 (build-system perl-build-system)
2935 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
2936 (propagated-inputs
2937 `(("perl-module-runtime" ,perl-module-runtime)))
2938 (home-page "http://search.cpan.org/dist/Dist-CheckConflicts/")
2939 (synopsis "Declare version conflicts for your dist")
2940 (description "This module allows you to specify conflicting versions of
2941 modules separately and deal with them after the module is done installing.")
2942 (license (package-license perl))))
2943
2944 (define-public perl-encode-detect
2945 (package
2946 (name "perl-encode-detect")
2947 (version "1.01")
2948 (source
2949 (origin
2950 (method url-fetch)
2951 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
2952 "Encode-Detect-" version ".tar.gz"))
2953 (sha256
2954 (base32
2955 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
2956 (build-system perl-build-system)
2957 (native-inputs
2958 `(("perl-module-build" ,perl-module-build)))
2959 (home-page "http://search.cpan.org/dist/Encode-Detect/")
2960 (synopsis "Detect the encoding of data")
2961 (description "This package provides a class @code{Encode::Detect} to detect
2962 the encoding of data.")
2963 (license mpl1.1)))
2964
2965 (define-public perl-encode-eucjpascii
2966 (package
2967 (name "perl-encode-eucjpascii")
2968 (version "0.03")
2969 (source
2970 (origin
2971 (method url-fetch)
2972 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
2973 "Encode-EUCJPASCII-" version ".tar.gz"))
2974 (sha256
2975 (base32
2976 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
2977 (build-system perl-build-system)
2978 (home-page "http://search.cpan.org/dist/Encode-EUCJPASCII/")
2979 (synopsis "ASCII mapping for eucJP encoding")
2980 (description "This package provides an ASCII mapping for the eucJP
2981 encoding.")
2982 (license (package-license perl))))
2983
2984 (define-public perl-encode-jis2k
2985 (package
2986 (name "perl-encode-jis2k")
2987 (version "0.03")
2988 (source
2989 (origin
2990 (method url-fetch)
2991 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
2992 "Encode-JIS2K-" version ".tar.gz"))
2993 (sha256
2994 (base32
2995 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
2996 (build-system perl-build-system)
2997 (home-page "http://search.cpan.org/dist/Encode-JIS2K/")
2998 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
2999 (description "This package provides encodings for JIS X 0212, which is
3000 also known as JIS 2000.")
3001 (license (package-license perl))))
3002
3003 (define-public perl-encode-hanextra
3004 (package
3005 (name "perl-encode-hanextra")
3006 (version "0.23")
3007 (source
3008 (origin
3009 (method url-fetch)
3010 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
3011 "Encode-HanExtra-" version ".tar.gz"))
3012 (sha256
3013 (base32
3014 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
3015 (build-system perl-build-system)
3016 (arguments
3017 '(#:phases
3018 (modify-phases %standard-phases
3019 (add-after 'unpack 'set-env
3020 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1"))))))
3021 (home-page "http://search.cpan.org/dist/Encode-HanExtra/")
3022 (synopsis "Additional Chinese encodings")
3023 (description "This Perl module provides Chinese encodings that are not
3024 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3025 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3026 \"UNISYS\".")
3027 (license expat)))
3028
3029 (define-public perl-env-path
3030 (package
3031 (name "perl-env-path")
3032 (version "0.19")
3033 (source
3034 (origin
3035 (method url-fetch)
3036 (uri (string-append
3037 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3038 version
3039 ".tar.gz"))
3040 (sha256
3041 (base32
3042 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3043 (build-system perl-build-system)
3044 (home-page "http://search.cpan.org/dist/Env-Path/")
3045 (synopsis "Advanced operations on path variables")
3046 (description "@code{Env::Path} presents an object-oriented interface to
3047 path variables, defined as that subclass of environment variables which name
3048 an ordered list of file system elements separated by a platform-standard
3049 separator.")
3050 (license (package-license perl))))
3051
3052 (define-public perl-error
3053 (package
3054 (name "perl-error")
3055 (version "0.17025")
3056 (source (origin
3057 (method url-fetch)
3058 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3059 "Error-" version ".tar.gz"))
3060 (sha256
3061 (base32
3062 "1bzgzmf1v4md02vadm46b4j4ilqxrcrfasvbzymhrznlsd54g7vc"))))
3063 (build-system perl-build-system)
3064 (native-inputs `(("perl-module-build" ,perl-module-build)))
3065 (home-page "http://search.cpan.org/dist/Error/")
3066 (synopsis "OO-ish Error/Exception handling for Perl")
3067 (description "The Error package provides two interfaces. Firstly Error
3068 provides a procedural interface to exception handling. Secondly Error is a
3069 base class for errors/exceptions that can either be thrown, for subsequent
3070 catch, or can simply be recorded.")
3071 (license (package-license perl))))
3072
3073 (define-public perl-eval-closure
3074 (package
3075 (name "perl-eval-closure")
3076 (version "0.14")
3077 (source
3078 (origin
3079 (method url-fetch)
3080 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3081 "Eval-Closure-" version ".tar.gz"))
3082 (sha256
3083 (base32
3084 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3085 (build-system perl-build-system)
3086 (native-inputs
3087 `(("perl-test-fatal" ,perl-test-fatal)
3088 ("perl-test-requires" ,perl-test-requires)))
3089 (propagated-inputs
3090 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3091 (home-page "http://search.cpan.org/dist/Eval-Closure/")
3092 (synopsis "Safely and cleanly create closures via string eval")
3093 (description "String eval is often used for dynamic code generation. For
3094 instance, Moose uses it heavily, to generate inlined versions of accessors and
3095 constructors, which speeds code up at runtime by a significant amount. String
3096 eval is not without its issues however - it's difficult to control the scope
3097 it's used in (which determines which variables are in scope inside the eval),
3098 and it's easy to miss compilation errors, since eval catches them and sticks
3099 them in $@@ instead. This module attempts to solve these problems. It
3100 provides an eval_closure function, which evals a string in a clean
3101 environment, other than a fixed list of specified variables. Compilation
3102 errors are rethrown automatically.")
3103 (license (package-license perl))))
3104
3105 (define-public perl-exception-class
3106 (package
3107 (name "perl-exception-class")
3108 (version "1.44")
3109 (source
3110 (origin
3111 (method url-fetch)
3112 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3113 "Exception-Class-" version ".tar.gz"))
3114 (sha256
3115 (base32
3116 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
3117 (build-system perl-build-system)
3118 (propagated-inputs
3119 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
3120 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
3121 (home-page "http://search.cpan.org/dist/Exception-Class/")
3122 (synopsis "Allows you to declare real exception classes in Perl")
3123 (description "Exception::Class allows you to declare exception hierarchies
3124 in your modules in a \"Java-esque\" manner.")
3125 (license (package-license perl))))
3126
3127 (define-public perl-exporter-lite
3128 (package
3129 (name "perl-exporter-lite")
3130 (version "0.08")
3131 (source (origin
3132 (method url-fetch)
3133 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
3134 "Exporter-Lite-" version ".tar.gz"))
3135 (sha256
3136 (base32
3137 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
3138 (build-system perl-build-system)
3139 (synopsis "Lightweight exporting of functions and variables")
3140 (description
3141 "Exporter::Lite is an alternative to Exporter, intended to provide a
3142 lightweight subset of the most commonly-used functionality. It supports
3143 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
3144 (home-page "http://search.cpan.org/dist/Exporter-Lite/")
3145 (license (package-license perl))))
3146
3147 (define-public perl-exporter-tiny
3148 (package
3149 (name "perl-exporter-tiny")
3150 (version "0.042")
3151 (source
3152 (origin
3153 (method url-fetch)
3154 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
3155 "Exporter-Tiny-" version ".tar.gz"))
3156 (sha256
3157 (base32
3158 "0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
3159 (build-system perl-build-system)
3160 (home-page "http://search.cpan.org/dist/Exporter-Tiny/")
3161 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
3162 (description "Exporter::Tiny supports many of Sub::Exporter's
3163 external-facing features including renaming imported functions with the `-as`,
3164 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
3165 and alternative installers with the `installler` option. But it's written in
3166 only about 40% as many lines of code and with zero non-core dependencies.")
3167 (license (package-license perl))))
3168
3169 (define-public perl-extutils-depends
3170 (package
3171 (name "perl-extutils-depends")
3172 (version "0.405")
3173 (source
3174 (origin
3175 (method url-fetch)
3176 (uri (string-append
3177 "mirror://cpan/authors/id/X/XA/XAOC/ExtUtils-Depends-"
3178 version
3179 ".tar.gz"))
3180 (sha256
3181 (base32
3182 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3183 (build-system perl-build-system)
3184 (native-inputs
3185 `(("perl-test-number-delta"
3186 ,perl-test-number-delta)))
3187 (home-page "http://search.cpan.org/dist/ExtUtils-Depends/")
3188 (synopsis "Easily build XS extensions that depend on XS extensions")
3189 (description "ExtUtils::Depends builds XS extensions that depend on XS
3190 extensions")
3191 (license (package-license perl))))
3192
3193 (define-public perl-extutils-installpaths
3194 (package
3195 (name "perl-extutils-installpaths")
3196 (version "0.011")
3197 (source
3198 (origin
3199 (method url-fetch)
3200 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3201 "ExtUtils-InstallPaths-" version ".tar.gz"))
3202 (sha256
3203 (base32
3204 "0z06y0fhx9hy9x01abb7s2xdbqrh9x4ps7avmlf4bwfwih2gl2bn"))))
3205 (build-system perl-build-system)
3206 (propagated-inputs
3207 `(("perl-extutils-config" ,perl-extutils-config)))
3208 (home-page "http://search.cpan.org/dist/ExtUtils-InstallPaths/")
3209 (synopsis "Build.PL install path logic made easy")
3210 (description "This module tries to make install path resolution as easy as
3211 possible.")
3212 (license (package-license perl))))
3213
3214 (define-public perl-extutils-config
3215 (package
3216 (name "perl-extutils-config")
3217 (version "0.008")
3218 (source
3219 (origin
3220 (method url-fetch)
3221 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3222 "ExtUtils-Config-" version ".tar.gz"))
3223 (sha256
3224 (base32
3225 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
3226 (build-system perl-build-system)
3227 (home-page "http://search.cpan.org/dist/ExtUtils-Config/")
3228 (synopsis "Wrapper for perl's configuration")
3229 (description "ExtUtils::Config is an abstraction around the %Config hash.
3230 By itself it is not a particularly interesting module by any measure, however
3231 it ties together a family of modern toolchain modules.")
3232 (license (package-license perl))))
3233
3234 (define-public perl-extutils-depends
3235 (package
3236 (name "perl-extutils-depends")
3237 (version "0.405")
3238 (source (origin
3239 (method url-fetch)
3240 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3241 "ExtUtils-Depends-" version ".tar.gz"))
3242 (sha256
3243 (base32
3244 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3245 (build-system perl-build-system)
3246 (native-inputs
3247 `(("perl-test-number-delta" ,perl-test-number-delta)))
3248 (home-page "http://search.cpan.org/dist/ExtUtils-Depends/")
3249 (synopsis "Easily build XS extensions that depend on XS extensions")
3250 (description
3251 "This module tries to make it easy to build Perl extensions that use
3252 functions and typemaps provided by other perl extensions. This means that a
3253 perl extension is treated like a shared library that provides also a C and an
3254 XS interface besides the perl one.")
3255 (license (package-license perl))))
3256
3257 (define-public perl-extutils-helpers
3258 (package
3259 (name "perl-extutils-helpers")
3260 (version "0.022")
3261 (source
3262 (origin
3263 (method url-fetch)
3264 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3265 "ExtUtils-Helpers-" version ".tar.gz"))
3266 (sha256
3267 (base32
3268 "15dalfwmpfmifw312i5pwiai8134pxf7b2804shlqhdk1xqczy6k"))))
3269 (build-system perl-build-system)
3270 (home-page "http://search.cpan.org/dist/ExtUtils-Helpers/")
3271 (synopsis "Various portability utilities for module builders")
3272 (description "This module provides various portable helper functions for
3273 module building modules.")
3274 (license (package-license perl))))
3275
3276 (define-public perl-extutils-libbuilder
3277 (package
3278 (name "perl-extutils-libbuilder")
3279 (version "0.08")
3280 (source
3281 (origin
3282 (method url-fetch)
3283 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
3284 "ExtUtils-LibBuilder-" version ".tar.gz"))
3285 (sha256
3286 (base32
3287 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
3288 (build-system perl-build-system)
3289 (native-inputs
3290 `(("perl-module-build" ,perl-module-build)))
3291 (home-page "http://search.cpan.org/dist/ExtUtils-LibBuilder/")
3292 (synopsis "Tool to build C libraries")
3293 (description "Some Perl modules need to ship C libraries together with
3294 their Perl code. Although there are mechanisms to compile and link (or glue)
3295 C code in your Perl programs, there isn't a clear method to compile standard,
3296 self-contained C libraries. This module main goal is to help in that task.")
3297 (license (package-license perl))))
3298
3299 (define-public perl-extutils-pkgconfig
3300 (package
3301 (name "perl-extutils-pkgconfig")
3302 (version "1.16")
3303 (source (origin
3304 (method url-fetch)
3305 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3306 "ExtUtils-PkgConfig-" version ".tar.gz"))
3307 (sha256
3308 (base32
3309 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
3310 (build-system perl-build-system)
3311 (propagated-inputs
3312 `(("pkg-config" ,pkg-config)))
3313 (home-page "http://search.cpan.org/dist/ExtUtils-PkgConfig/")
3314 (synopsis "Simplistic interface to pkg-config")
3315 (description
3316 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
3317 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
3318 of perl extensions which bind libraries that @command{pkg-config} knows.
3319 It is really just boilerplate code that you would have written yourself.")
3320 (license lgpl2.1+)))
3321
3322 (define-public perl-file-changenotify
3323 (package
3324 (name "perl-file-changenotify")
3325 (version "0.24")
3326 (source
3327 (origin
3328 (method url-fetch)
3329 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3330 "File-ChangeNotify-" version ".tar.gz"))
3331 (sha256
3332 (base32
3333 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
3334 (build-system perl-build-system)
3335 (native-inputs
3336 `(("perl-module-build" ,perl-module-build)
3337 ("perl-test-exception" ,perl-test-exception)))
3338 (propagated-inputs
3339 `(("perl-class-load" ,perl-class-load)
3340 ("perl-list-moreutils" ,perl-list-moreutils)
3341 ("perl-module-pluggable" ,perl-module-pluggable)
3342 ("perl-moose" ,perl-moose)
3343 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
3344 ("perl-moosex-semiaffordanceaccessor"
3345 ,perl-moosex-semiaffordanceaccessor)
3346 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3347 (home-page "http://search.cpan.org/dist/File-ChangeNotify/")
3348 (synopsis "Watch for changes to files")
3349 (description "This module provides a class to monitor a directory for
3350 changes made to any file.")
3351 (license artistic2.0)))
3352
3353 (define-public perl-file-configdir
3354 (package
3355 (name "perl-file-configdir")
3356 (version "0.018")
3357 (source
3358 (origin
3359 (method url-fetch)
3360 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3361 "File-ConfigDir-" version ".tar.gz"))
3362 (sha256
3363 (base32
3364 "1xpzrlya0gskk7lm6gppyfwbk0swv0n6ssgp629575dk5l49z2rf"))))
3365 (build-system perl-build-system)
3366 (propagated-inputs
3367 `(("perl-file-homedir" ,perl-file-homedir)
3368 ("perl-list-moreutils" ,perl-list-moreutils)))
3369 (home-page "http://search.cpan.org/dist/File-ConfigDir/")
3370 (synopsis "Get directories of configuration files")
3371 (description "This module is a helper for installing, reading and finding
3372 configuration file locations. @code{File::ConfigDir} is a module to help out
3373 when Perl modules (especially applications) need to read and store
3374 configuration files from more than one location.")
3375 (license (package-license perl))))
3376
3377 (define-public perl-file-copy-recursive
3378 (package
3379 (name "perl-file-copy-recursive")
3380 (version "0.38")
3381 (source
3382 (origin
3383 (method url-fetch)
3384 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
3385 "File-Copy-Recursive-" version ".tar.gz"))
3386 (sha256
3387 (base32
3388 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
3389 (build-system perl-build-system)
3390 (home-page "http://search.cpan.org/dist/File-Copy-Recursive/")
3391 (synopsis "Recursively copy files and directories")
3392 (description "This module has 3 functions: one to copy files only, one to
3393 copy directories only, and one to do either depending on the argument's
3394 type.")
3395 (license (package-license perl))))
3396
3397 (define-public perl-file-find-rule
3398 (package
3399 (name "perl-file-find-rule")
3400 (version "0.34")
3401 (source
3402 (origin
3403 (method url-fetch)
3404 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3405 "File-Find-Rule-" version ".tar.gz"))
3406 (sha256
3407 (base32
3408 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
3409 (build-system perl-build-system)
3410 (propagated-inputs
3411 `(("perl-text-glob" ,perl-text-glob)
3412 ("perl-number-compare" ,perl-number-compare)))
3413 (home-page "http://search.cpan.org/dist/File-Find-Rule/")
3414 (synopsis "Alternative interface to File::Find")
3415 (description "File::Find::Rule is a friendlier interface to File::Find.
3416 It allows you to build rules which specify the desired files and
3417 directories.")
3418 (license (package-license perl))))
3419
3420 (define-public perl-file-find-rule-perl
3421 (package
3422 (name "perl-file-find-rule-perl")
3423 (version "1.15")
3424 (source
3425 (origin
3426 (method url-fetch)
3427 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3428 "File-Find-Rule-Perl-" version ".tar.gz"))
3429 (sha256
3430 (base32
3431 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
3432 (build-system perl-build-system)
3433 (propagated-inputs
3434 `(("perl-file-find-rule" ,perl-file-find-rule)
3435 ("perl-params-util" ,perl-params-util)
3436 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
3437 (home-page "http://search.cpan.org/dist/File-Find-Rule-Perl/")
3438 (synopsis "Common rules for searching for Perl things")
3439 (description "File::Find::Rule::Perl provides methods for finding various
3440 types Perl-related files, or replicating search queries run on a distribution
3441 in various parts of the CPAN ecosystem.")
3442 (license (package-license perl))))
3443
3444 (define-public perl-file-grep
3445 (package
3446 (name "perl-file-grep")
3447 (version "0.02")
3448 (source
3449 (origin
3450 (method url-fetch)
3451 (uri (string-append
3452 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
3453 version
3454 ".tar.gz"))
3455 (sha256
3456 (base32
3457 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
3458 (build-system perl-build-system)
3459 (home-page "http://search.cpan.org/dist/File-Grep/")
3460 (synopsis "Matches patterns in a series of files")
3461 (description "@code{File::Grep} provides similar functionality as perl's
3462 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
3463 over a passed filelist instead of arrays. While trivial, this module can
3464 provide a quick dropin when such functionality is needed.")
3465 (license (package-license perl))))
3466
3467 (define-public perl-file-homedir
3468 (package
3469 (name "perl-file-homedir")
3470 (version "1.002")
3471 (source
3472 (origin
3473 (method url-fetch)
3474 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3475 "File-HomeDir-" version ".tar.gz"))
3476 (sha256
3477 (base32
3478 "0x62hn8rc7ninf9nlp69h61yh21g4cbq2g81sh64cf2ify2hqk7b"))))
3479 (build-system perl-build-system)
3480 (propagated-inputs
3481 `(("perl-file-which" ,perl-file-which)))
3482 (arguments `(#:tests? #f)) ;Not appropriate for chroot
3483 (home-page "http://search.cpan.org/dist/File-HomeDir/")
3484 (synopsis "Find your home and other directories on any platform")
3485 (description "File::HomeDir is a module for locating the directories that
3486 are \"owned\" by a user (typically your user) and to solve the various issues
3487 that arise trying to find them consistently across a wide variety of
3488 platforms.")
3489 (license (package-license perl))))
3490
3491 (define-public perl-file-path
3492 (package
3493 (name "perl-file-path")
3494 (version "2.13")
3495 (source
3496 (origin
3497 (method url-fetch)
3498 (uri (string-append
3499 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
3500 version
3501 ".tar.gz"))
3502 (sha256
3503 (base32
3504 "039gc0i5cbdmidl8j8x195yykwcdmzwawmpapnysvljl8l33jqwj"))))
3505 (build-system perl-build-system)
3506 (home-page "http://search.cpan.org/dist/File-Path/")
3507 (synopsis "Create or remove directory trees")
3508 (description "This module provide a convenient way to create directories
3509 of arbitrary depth and to delete an entire directory subtree from the
3510 file system.")
3511 (license (package-license perl))))
3512
3513 (define-public perl-file-pushd
3514 (package
3515 (name "perl-file-pushd")
3516 (version "1.016")
3517 (source
3518 (origin
3519 (method url-fetch)
3520 (uri (string-append
3521 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
3522 version
3523 ".tar.gz"))
3524 (sha256
3525 (base32
3526 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
3527 (build-system perl-build-system)
3528 (home-page
3529 "http://search.cpan.org/dist/File-pushd/")
3530 (synopsis
3531 "Change directory temporarily for a limited scope")
3532 (description "@code{File::pushd} does a temporary @code{chdir} that is
3533 easily and automatically reverted, similar to @code{pushd} in some Unix
3534 command shells. It works by creating an object that caches the original
3535 working directory. When the object is destroyed, the destructor calls
3536 @code{chdir} to revert to the original working directory. By storing the
3537 object in a lexical variable with a limited scope, this happens automatically
3538 at the end of the scope.")
3539 (license asl2.0)))
3540
3541 (define-public perl-file-list
3542 (package
3543 (name "perl-file-list")
3544 (version "0.3.1")
3545 (source (origin
3546 (method url-fetch)
3547 (uri (string-append
3548 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
3549 version ".tar.gz"))
3550 (sha256
3551 (base32
3552 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
3553 (build-system perl-build-system)
3554 (arguments
3555 `(#:phases
3556 (modify-phases %standard-phases
3557 (add-after 'unpack 'cd
3558 (lambda _ (chdir "List") #t)))))
3559 (license (package-license perl))
3560 (synopsis "Perl extension for crawling directory trees and compiling
3561 lists of files")
3562 (description
3563 "The File::List module crawls the directory tree starting at the
3564 provided base directory and can return files (and/or directories if desired)
3565 matching a regular expression.")
3566 (home-page "http://search.cpan.org/~dopacki/File-List//")))
3567
3568 (define-public perl-file-readbackwards
3569 (package
3570 (name "perl-file-readbackwards")
3571 (version "1.05")
3572 (source
3573 (origin
3574 (method url-fetch)
3575 (uri (string-append
3576 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
3577 version
3578 ".tar.gz"))
3579 (sha256
3580 (base32
3581 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
3582 (build-system perl-build-system)
3583 (home-page "http://search.cpan.org/dist/File-ReadBackwards/")
3584 (synopsis "Read a file backwards by lines")
3585 (description "This module reads a file backwards line by line. It is
3586 simple to use, memory efficient and fast. It supports both an object and a
3587 tied handle interface.
3588
3589 It is intended for processing log and other similar text files which typically
3590 have their newest entries appended to them. By default files are assumed to
3591 be plain text and have a line ending appropriate to the OS. But you can set
3592 the input record separator string on a per file basis.")
3593 (license perl-license)))
3594
3595 (define-public perl-file-remove
3596 (package
3597 (name "perl-file-remove")
3598 (version "1.57")
3599 (source
3600 (origin
3601 (method url-fetch)
3602 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3603 "File-Remove-" version ".tar.gz"))
3604 (sha256
3605 (base32
3606 "1b814lw181kkqh6c1n4p2zlzzsq6ic5pfpr831nphf2w2rhcvgmk"))))
3607 (build-system perl-build-system)
3608 (home-page "http://search.cpan.org/dist/File-Remove/")
3609 (synopsis "Remove files and directories in Perl")
3610 (description "File::Remove::remove removes files and directories. It acts
3611 like /bin/rm, for the most part. Although \"unlink\" can be given a list of
3612 files, it will not remove directories; this module remedies that. It also
3613 accepts wildcards, * and ?, as arguments for file names.")
3614 (license (package-license perl))))
3615
3616 (define-public perl-file-sharedir
3617 (package
3618 (name "perl-file-sharedir")
3619 (version "1.104")
3620 (source
3621 (origin
3622 (method url-fetch)
3623 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3624 "File-ShareDir-" version ".tar.gz"))
3625 (sha256
3626 (base32
3627 "1bqwhk3qfg60bkpi5b83bh93sng8jx20i3ka5sixc0prrppjidh7"))))
3628 (build-system perl-build-system)
3629 (native-inputs
3630 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3631 (propagated-inputs
3632 `(("perl-class-inspector" ,perl-class-inspector)))
3633 (home-page "http://search.cpan.org/dist/File-ShareDir/")
3634 (synopsis "Locate per-dist and per-module shared files")
3635 (description "The intent of File::ShareDir is to provide a companion to
3636 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3637 module to have access to a large amount of read-only data that is stored on
3638 the file-system at run-time. Once the files have been installed to the
3639 correct directory, you can use File::ShareDir to find your files again after
3640 the installation.")
3641 (license (package-license perl))))
3642
3643 (define-public perl-file-sharedir-dist
3644 (package
3645 (name "perl-file-sharedir-dist")
3646 (version "0.05")
3647 (source
3648 (origin
3649 (method url-fetch)
3650 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3651 "File-ShareDir-Dist-" version ".tar.gz"))
3652 (sha256
3653 (base32
3654 "1xkmrckp1qfi9ik098n2vz0r8g7wfwp2y05zjd100w6wcqwfzcpn"))))
3655 (build-system perl-build-system)
3656 (home-page "http://search.cpan.org/dist/File-ShareDir-Dist/")
3657 (synopsis "Locate per-dist shared files")
3658 (description "File::ShareDir::Dist finds share directories for
3659 distributions. It is a companion module to File::ShareDir.")
3660 (license (package-license perl))))
3661
3662 (define-public perl-file-sharedir-install
3663 (package
3664 (name "perl-file-sharedir-install")
3665 (version "0.13")
3666 (source
3667 (origin
3668 (method url-fetch)
3669 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3670 "File-ShareDir-Install-" version ".tar.gz"))
3671 (sha256
3672 (base32
3673 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
3674 (build-system perl-build-system)
3675 (native-inputs
3676 `(("perl-module-build" ,perl-module-build)))
3677 (home-page "http://search.cpan.org/dist/File-ShareDir-Install/")
3678 (synopsis "Install shared files")
3679 (description "File::ShareDir::Install allows you to install read-only data
3680 files from a distribution. It is a companion module to File::ShareDir, which
3681 allows you to locate these files after installation.")
3682 (license (package-license perl))))
3683
3684 (define-public perl-file-slurp
3685 (package
3686 (name "perl-file-slurp")
3687 (version "9999.19")
3688 (source
3689 (origin
3690 (method url-fetch)
3691 (uri (string-append "mirror://cpan/authors/id/U/UR/URI/"
3692 "File-Slurp-" version ".tar.gz"))
3693 (sha256
3694 (base32
3695 "0hrn4nipwx40d6ji8ssgr5nw986z9iqq8cn0kdpbszh9jplynaff"))))
3696 (build-system perl-build-system)
3697 (home-page "http://search.cpan.org/dist/File-Slurp/")
3698 (synopsis "Reading/Writing/Modifying of complete files")
3699 (description "File::Slurp provides subroutines to read or write entire
3700 files with a simple call. It also has a subroutine for reading the list of
3701 file names in a directory.")
3702 (license (package-license perl))))
3703
3704 (define-public perl-file-slurper
3705 (package
3706 (name "perl-file-slurper")
3707 (version "0.008")
3708 (source
3709 (origin
3710 (method url-fetch)
3711 (uri (string-append
3712 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3713 version
3714 ".tar.gz"))
3715 (sha256
3716 (base32
3717 "0cyjspspms6zyjcqz9v18dbs574g085h2jzjh41xvsrc1qa8bxhh"))))
3718 (build-system perl-build-system)
3719 (propagated-inputs
3720 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3721 (home-page "http://search.cpan.org/dist/File-Slurper/")
3722 (synopsis "Simple, sane and efficient module to slurp a file")
3723 (description "This module provides functions for fast and correct file
3724 slurping and spewing. All functions are optionally exported.")
3725 (license (package-license perl))))
3726
3727 (define-public perl-file-slurp-tiny
3728 (package
3729 (name "perl-file-slurp-tiny")
3730 (version "0.004")
3731 (source (origin
3732 (method url-fetch)
3733 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3734 "File-Slurp-Tiny-" version ".tar.gz"))
3735 (sha256
3736 (base32
3737 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3738 (build-system perl-build-system)
3739 (home-page "http://search.cpan.org/dist/File-Slurp-Tiny/")
3740 (synopsis "Simple file reader and writer")
3741 (description
3742 "This module provides functions for fast reading and writing of files.")
3743 (license (package-license perl))))
3744
3745 (define-public perl-file-temp
3746 (package
3747 (name "perl-file-temp")
3748 (version "0.2304")
3749 (source
3750 (origin
3751 (method url-fetch)
3752 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3753 "File-Temp-" version ".tar.gz"))
3754 (sha256
3755 (base32
3756 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
3757 (build-system perl-build-system)
3758 (propagated-inputs
3759 `(("perl-parent" ,perl-parent)))
3760 (home-page "http://search.cpan.org/dist/File-Temp/")
3761 (synopsis "Return name and handle of a temporary file safely")
3762 (description "File::Temp can be used to create and open temporary files in
3763 a safe way.")
3764 (license (package-license perl))))
3765
3766 (define-public perl-file-which
3767 (package
3768 (name "perl-file-which")
3769 (version "1.09")
3770 (source (origin
3771 (method url-fetch)
3772 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3773 "File-Which-" version ".tar.gz"))
3774 (sha256
3775 (base32
3776 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
3777 (build-system perl-build-system)
3778 (native-inputs `(("test-script" ,perl-test-script)))
3779 (synopsis "Portable implementation of the `which' utility")
3780 (description
3781 "File::Which was created to be able to get the paths to executable
3782 programs on systems under which the `which' program wasn't implemented in the
3783 shell.")
3784 (home-page (string-append "http://search.cpan.org/~adamk//"
3785 "File-Which-" version))
3786 (license (package-license perl))))
3787
3788 (define-public perl-file-zglob
3789 (package
3790 (name "perl-file-zglob")
3791 (version "0.11")
3792 (source (origin
3793 (method url-fetch)
3794 (uri (string-append
3795 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
3796 version ".tar.gz"))
3797 (sha256
3798 (base32
3799 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
3800 (build-system perl-build-system)
3801 (native-inputs
3802 `(("perl-module-install" ,perl-module-install)))
3803 (home-page "http://search.cpan.org/dist/File-Zglob/")
3804 (synopsis "Extended Unix style glob functionality")
3805 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
3806 functionality; it returns a list of file names that match the given pattern.
3807 For instance, it supports the @code{**/*.pm} form.")
3808 (license (package-license perl))))
3809
3810 (define-public perl-getopt-long
3811 (package
3812 (name "perl-getopt-long")
3813 (version "v2.49.1")
3814 (source
3815 (origin
3816 (method url-fetch)
3817 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
3818 "Getopt-Long-" (substring version 1) ".tar.gz"))
3819 (sha256
3820 (base32
3821 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
3822 (build-system perl-build-system)
3823 (home-page "http://search.cpan.org/dist/Getopt-Long/")
3824 (synopsis "Module to handle parsing command line options")
3825 (description "The @code{Getopt::Long} module implements an extended getopt
3826 function called @code{GetOptions()}. It parses the command line from
3827 @code{ARGV}, recognizing and removing specified options and their possible
3828 values.
3829
3830 This function adheres to the POSIX syntax for command line options, with GNU
3831 extensions. In general, this means that options have long names instead of
3832 single letters, and are introduced with a double dash \"--\". Support for
3833 bundling of command line options, as was the case with the more traditional
3834 single-letter approach, is provided but not enabled by default.")
3835 ;; Can be used with either license.
3836 (license (list (package-license perl) gpl2+))))
3837
3838 (define-public perl-getopt-long-descriptive
3839 (package
3840 (name "perl-getopt-long-descriptive")
3841 (version "0.102")
3842 (source
3843 (origin
3844 (method url-fetch)
3845 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3846 "Getopt-Long-Descriptive-" version ".tar.gz"))
3847 (sha256
3848 (base32
3849 "0ii8xafvlph5vzcqp3dpc83lg7nkg3l1l2hmqdf5382a567vkm4s"))))
3850 (build-system perl-build-system)
3851 (native-inputs
3852 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
3853 ("perl-test-fatal" ,perl-test-fatal)
3854 ("perl-test-warnings" ,perl-test-warnings)))
3855 (propagated-inputs
3856 `(("perl-params-validate" ,perl-params-validate)
3857 ("perl-sub-exporter" ,perl-sub-exporter)))
3858 (home-page "http://search.cpan.org/dist/Getopt-Long-Descriptive/")
3859 (synopsis "Getopt::Long, but simpler and more powerful")
3860 (description "Getopt::Long::Descriptive is yet another Getopt library.
3861 It's built atop Getopt::Long, and gets a lot of its features, but tries to
3862 avoid making you think about its huge array of options. It also provides
3863 usage (help) messages, data validation, and a few other useful features.")
3864 (license (package-license perl))))
3865
3866 (define-public perl-getopt-tabular
3867 (package
3868 (name "perl-getopt-tabular")
3869 (version "0.3")
3870 (source (origin
3871 (method url-fetch)
3872 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
3873 "Getopt-Tabular-" version ".tar.gz"))
3874 (sha256
3875 (base32
3876 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
3877 (build-system perl-build-system)
3878 (synopsis "Table-driven argument parsing for Perl")
3879 (description
3880 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
3881 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
3882 (home-page (string-append "http://search.cpan.org/~gward//"
3883 "Getopt-Tabular-" version))
3884 (license (package-license perl))))
3885
3886 (define-public perl-graph
3887 (package
3888 (name "perl-graph")
3889 (version "0.9704")
3890 (source
3891 (origin
3892 (method url-fetch)
3893 (uri (string-append
3894 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
3895 version
3896 ".tar.gz"))
3897 (sha256
3898 (base32
3899 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
3900 (build-system perl-build-system)
3901 (home-page "http://search.cpan.org/dist/Graph/")
3902 (synopsis "Graph data structures and algorithms")
3903 (description "This is @code{Graph}, a Perl module for dealing with graphs,
3904 the abstract data structures.")
3905 (license (package-license perl))))
3906
3907 (define-public perl-guard
3908 (package
3909 (name "perl-guard")
3910 (version "1.023")
3911 (source (origin
3912 (method url-fetch)
3913 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
3914 version ".tar.gz"))
3915 (sha256
3916 (base32
3917 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
3918 (build-system perl-build-system)
3919 (home-page "http://search.cpan.org/dist/Guard/")
3920 (synopsis "Safe cleanup blocks implemented as guards")
3921 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
3922 something (usually an object) that \"guards\" a resource, ensuring that it is
3923 cleaned up when expected.
3924
3925 Specifically, this module supports two different types of guards: guard
3926 objects, which execute a given code block when destroyed, and scoped guards,
3927 which are tied to the scope exit.")
3928 (license (package-license perl))))
3929
3930 (define-public perl-hash-fieldhash
3931 (package
3932 (name "perl-hash-fieldhash")
3933 (version "0.15")
3934 (source
3935 (origin
3936 (method url-fetch)
3937 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
3938 "Hash-FieldHash-" version ".tar.gz"))
3939 (sha256
3940 (base32
3941 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
3942 (build-system perl-build-system)
3943 (arguments
3944 `(#:phases
3945 (modify-phases %standard-phases
3946 (add-before 'configure 'set-perl-search-path
3947 (lambda _
3948 ;; Work around "dotless @INC" build failure.
3949 (setenv "PERL5LIB"
3950 (string-append (getcwd) ":"
3951 (getenv "PERL5LIB")))
3952 #t)))))
3953 (native-inputs
3954 `(("perl-module-build" ,perl-module-build)
3955 ("perl-test-leaktrace" ,perl-test-leaktrace)))
3956 (home-page "http://search.cpan.org/dist/Hash-FieldHash/")
3957 (synopsis "Lightweight field hash for inside-out objects")
3958 (description "@code{Hash::FieldHash} provides the field hash mechanism
3959 which supports the inside-out technique. It is an alternative to
3960 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
3961 relic support.")
3962 (license (package-license perl))))
3963
3964 (define-public perl-hash-merge
3965 (package
3966 (name "perl-hash-merge")
3967 (version "0.200")
3968 (source
3969 (origin
3970 (method url-fetch)
3971 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3972 "Hash-Merge-" version ".tar.gz"))
3973 (sha256
3974 (base32
3975 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
3976 (build-system perl-build-system)
3977 (home-page "http://search.cpan.org/dist/Hash-Merge/")
3978 (synopsis "Merge arbitrarily deep hashes into a single hash")
3979 (description "Hash::Merge merges two arbitrarily deep hashes into a single
3980 hash. That is, at any level, it will add non-conflicting key-value pairs from
3981 one hash to the other, and follows a set of specific rules when there are key
3982 value conflicts. The hash is followed recursively, so that deeply nested
3983 hashes that are at the same level will be merged when the parent hashes are
3984 merged.")
3985 (license (package-license perl))))
3986
3987 (define-public perl-hash-multivalue
3988 (package
3989 (name "perl-hash-multivalue")
3990 (version "0.16")
3991 (source
3992 (origin
3993 (method url-fetch)
3994 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
3995 "Hash-MultiValue-" version ".tar.gz"))
3996 (sha256
3997 (base32
3998 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
3999 (build-system perl-build-system)
4000 (home-page "http://search.cpan.org/dist/Hash-MultiValue/")
4001 (synopsis "Store multiple values per key")
4002 (description "Hash::MultiValue is an object (and a plain hash reference)
4003 that may contain multiple values per key, inspired by MultiDict of WebOb.")
4004 (license (package-license perl))))
4005
4006 (define-public perl-importer
4007 (package
4008 (name "perl-importer")
4009 (version "0.025")
4010 (source
4011 (origin
4012 (method url-fetch)
4013 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
4014 version ".tar.gz"))
4015 (sha256
4016 (base32
4017 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
4018 (build-system perl-build-system)
4019 (home-page "http://search.cpan.org/dist/Importer//")
4020 (synopsis "Alternative but compatible interface to modules that export symbols")
4021 (description "This module acts as a layer between Exporter and modules which
4022 consume exports. It is feature-compatible with Exporter, plus some much needed
4023 extras. You can use this to import symbols from any exporter that follows
4024 Exporters specification. The exporter modules themselves do not need to use or
4025 inherit from the Exporter module, they just need to set @@EXPORT and/or other
4026 variables.")
4027 (license (package-license perl))))
4028
4029 (define-public perl-import-into
4030 (package
4031 (name "perl-import-into")
4032 (version "1.002005")
4033 (source
4034 (origin
4035 (method url-fetch)
4036 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4037 "Import-Into-" version ".tar.gz"))
4038 (sha256
4039 (base32
4040 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
4041 (build-system perl-build-system)
4042 (propagated-inputs
4043 `(("perl-module-runtime" ,perl-module-runtime)))
4044 (home-page "http://search.cpan.org/dist/Import-Into/")
4045 (synopsis "Import packages into other packages")
4046 (description "Writing exporters is a pain. Some use Exporter, some use
4047 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
4048 some things are pragmas. Exporting on someone else's behalf is harder. The
4049 exporters don't provide a consistent API for this, and pragmas need to have
4050 their import method called directly, since they effect the current unit of
4051 compilation. Import::Into provides global methods to make this painless.")
4052 (license (package-license perl))))
4053
4054 (define-public perl-inc-latest
4055 (package
4056 (name "perl-inc-latest")
4057 (version "0.500")
4058 (source
4059 (origin
4060 (method url-fetch)
4061 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4062 "inc-latest-" version ".tar.gz"))
4063 (sha256
4064 (base32
4065 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
4066 (build-system perl-build-system)
4067 (home-page "http://search.cpan.org/dist/inc-latest/")
4068 (synopsis "Use modules in inc/ if newer than installed")
4069 (description "The inc::latest module helps bootstrap configure-time
4070 dependencies for CPAN distributions. These dependencies get bundled into the
4071 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
4072 (license asl2.0)))
4073
4074 (define-public perl-indirect
4075 (package
4076 (name "perl-indirect")
4077 (version "0.38")
4078 (source
4079 (origin
4080 (method url-fetch)
4081 (uri (string-append
4082 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
4083 version ".tar.gz"))
4084 (sha256
4085 (base32
4086 "13k5a8p903m8x3pcv9qqkzvnb8gpgq36cr3dvn3lk1ngsi9w5ydy"))))
4087 (build-system perl-build-system)
4088 (home-page "http://search.cpan.org/dist/indirect/")
4089 (synopsis "Lexically warn about using the indirect method call syntax")
4090 (description
4091 "Indirect warns about using the indirect method call syntax.")
4092 (license (package-license perl))))
4093
4094 (define-public perl-inline
4095 (package
4096 (name "perl-inline")
4097 (version "0.80")
4098 (source
4099 (origin
4100 (method url-fetch)
4101 (uri (string-append
4102 "mirror://cpan/authors/id/I/IN/INGY/Inline-"
4103 version ".tar.gz"))
4104 (sha256
4105 (base32
4106 "1xnf5hykcr54271x5jsnr61bcv1c7x39cy4kdcrkxm7bn62djavy"))))
4107 (build-system perl-build-system)
4108 (native-inputs
4109 `(("perl-test-warn" ,perl-test-warn)))
4110 (home-page "http://search.cpan.org/dist/Inline/")
4111 (synopsis "Write Perl subroutines in other programming languages")
4112 (description "The @code{Inline} module allows you to put source code
4113 from other programming languages directly (inline) in a Perl script or
4114 module. The code is automatically compiled as needed, and then loaded
4115 for immediate access from Perl.")
4116 (license (package-license perl))))
4117
4118 (define-public perl-inline-c
4119 (package
4120 (name "perl-inline-c")
4121 (version "0.78")
4122 (source
4123 (origin
4124 (method url-fetch)
4125 (uri (string-append
4126 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
4127 version ".tar.gz"))
4128 (sha256
4129 (base32
4130 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
4131 (build-system perl-build-system)
4132 (native-inputs
4133 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
4134 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
4135 ("perl-test-warn" ,perl-test-warn)
4136 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
4137 (propagated-inputs
4138 `(("perl-inline" ,perl-inline)
4139 ("perl-parse-recdescent" ,perl-parse-recdescent)
4140 ("perl-pegex" ,perl-pegex)))
4141 (home-page "http://search.cpan.org/dist/Inline-C/")
4142 (synopsis "C Language Support for Inline")
4143 (description "The @code{Inline::C} module allows you to write Perl
4144 subroutines in C. Since version 0.30 the @code{Inline} module supports
4145 multiple programming languages and each language has its own support module.
4146 This document describes how to use Inline with the C programming language.
4147 It also goes a bit into Perl C internals.")
4148 (license (package-license perl))))
4149
4150 (define-public perl-io-all
4151 (package
4152 (name "perl-io-all")
4153 (version "0.87")
4154 (source
4155 (origin
4156 (method url-fetch)
4157 (uri (string-append
4158 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
4159 version
4160 ".tar.gz"))
4161 (sha256
4162 (base32
4163 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
4164 (build-system perl-build-system)
4165 (propagated-inputs
4166 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
4167 ("perl-file-readbackwards" ,perl-file-readbackwards)))
4168 (home-page "http://search.cpan.org/dist/IO-All/")
4169 (synopsis "@code{IO::All} to Larry Wall!")
4170 (description "@code{IO::All} combines all of the best Perl IO modules into
4171 a single nifty object oriented interface to greatly simplify your everyday
4172 Perl IO idioms. It exports a single function called io, which returns a new
4173 @code{IO::All} object. And that object can do it all!")
4174 (license perl-license)))
4175
4176 (define-public perl-io-captureoutput
4177 (package
4178 (name "perl-io-captureoutput")
4179 (version "1.1104")
4180 (source
4181 (origin
4182 (method url-fetch)
4183 (uri (string-append
4184 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
4185 version
4186 ".tar.gz"))
4187 (sha256
4188 (base32
4189 "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
4190 (build-system perl-build-system)
4191 (home-page "http://search.cpan.org/dist/IO-CaptureOutput/")
4192 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
4193 (description "@code{IO::CaptureOutput} provides routines for capturing
4194 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
4195 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
4196
4197 This module is no longer recommended by its maintainer. Users are advised to
4198 try @code{Capture::Tiny} instead.")
4199 (license (package-license perl))))
4200
4201 (define-public perl-io-interactive
4202 (package
4203 (name "perl-io-interactive")
4204 (version "0.0.6")
4205 (source
4206 (origin
4207 (method url-fetch)
4208 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
4209 "IO-Interactive-" version ".tar.gz"))
4210 (sha256
4211 (base32
4212 "1303q6rbcf2cag5z08pq3d1y91wls5q51jrpw4kh0l2bv75idh4w"))))
4213 (build-system perl-build-system)
4214 (home-page "http://search.cpan.org/dist/IO-Interactive/")
4215 (synopsis "Utilities for interactive I/O")
4216 (description "This module provides three utility subroutines that make it
4217 easier to develop interactive applications: is_interactive(), interactive(),
4218 and busy().")
4219 (license (package-license perl))))
4220
4221 (define-public perl-io-string
4222 (package
4223 (name "perl-io-string")
4224 (version "1.08")
4225 (source
4226 (origin
4227 (method url-fetch)
4228 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
4229 "IO-String-" version ".tar.gz"))
4230 (sha256
4231 (base32
4232 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
4233 (build-system perl-build-system)
4234 (home-page "http://search.cpan.org/~gaas/IO-String-1.08//")
4235 (synopsis "Emulate file interface for in-core strings")
4236 (description "IO::String is an IO::File (and IO::Handle) compatible class
4237 that reads or writes data from in-core strings.")
4238 (license (package-license perl))))
4239
4240 (define-public perl-io-stringy
4241 (package
4242 (name "perl-io-stringy")
4243 (version "2.111")
4244 (source
4245 (origin
4246 (method url-fetch)
4247 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
4248 "IO-stringy-" version ".tar.gz"))
4249 (sha256
4250 (base32
4251 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
4252 (build-system perl-build-system)
4253 (home-page "http://search.cpan.org/dist/IO-stringy/")
4254 (synopsis "IO:: interface for reading/writing an array of lines")
4255 (description "This toolkit primarily provides modules for performing both
4256 traditional and object-oriented i/o) on things *other* than normal
4257 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
4258 (license (package-license perl))))
4259
4260 (define-public perl-io-tty
4261 (package
4262 (name "perl-io-tty")
4263 (version "1.12")
4264 (source (origin
4265 (method url-fetch)
4266 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
4267 version ".tar.gz"))
4268 (sha256
4269 (base32
4270 "0399anjy3bc0w8xzsc3qx5vcyqryc9gc52lc7wh7i49hsdq8gvx2"))))
4271 (build-system perl-build-system)
4272 (home-page "http://search.cpan.org/~toddr/IO-Tty//")
4273 (synopsis "Perl interface to pseudo ttys")
4274 (description
4275 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
4276 pseudo ttys.")
4277 (license (package-license perl))))
4278
4279 (define-public perl-ipc-cmd
4280 (package
4281 (name "perl-ipc-cmd")
4282 (version "0.96")
4283 (source
4284 (origin
4285 (method url-fetch)
4286 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
4287 version ".tar.gz"))
4288 (sha256
4289 (base32
4290 "0a2v44x70gj9fd5wa8i08f9z6n14qppj1j49m1hc333wh72mzk6i"))))
4291 (build-system perl-build-system)
4292 (home-page "http://search.cpan.org/dist/IPC-Cmd/")
4293 (synopsis "Run interactive command-line programs")
4294 (description "@code{IPC::Cmd} allows for the searching and execution of
4295 any binary on your system. It adheres to verbosity settings and is able to
4296 run interactively. It also has an option to capture output/error buffers.")
4297 (license (package-license perl))))
4298
4299 (define-public perl-ipc-run
4300 (package
4301 (name "perl-ipc-run")
4302 (version "0.94")
4303 (source
4304 (origin
4305 (method url-fetch)
4306 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
4307 "IPC-Run-" version ".tar.gz"))
4308 (sha256
4309 (base32
4310 "0nv0lpw31zaz6vi42q7ihjj3j382j4njicp5k0gsczib3b4kdcrf"))))
4311 (build-system perl-build-system)
4312 (propagated-inputs
4313 `(("perl-io-tty" ,perl-io-tty)))
4314 (arguments
4315 `(#:phases (modify-phases %standard-phases
4316 (add-before
4317 'check 'disable-w32-test
4318 (lambda _
4319 ;; This test fails, and we're not really interested in
4320 ;; it, so disable it.
4321 (delete-file "t/win32_compile.t"))))))
4322 (home-page "http://search.cpan.org/dist/IPC-Run/")
4323 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
4324 (description "IPC::Run allows you run and interact with child processes
4325 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
4326 are supported and may be mixed. Likewise, functional and OO API styles are
4327 both supported and may be mixed.")
4328 (license (package-license perl))))
4329
4330 (define-public perl-ipc-run3
4331 (package
4332 (name "perl-ipc-run3")
4333 (version "0.048")
4334 (source (origin
4335 (method url-fetch)
4336 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4337 "IPC-Run3-" version ".tar.gz"))
4338 (sha256
4339 (base32
4340 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
4341 (build-system perl-build-system)
4342 (synopsis "Run a subprocess with input/output redirection")
4343 (description
4344 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
4345 stdout, and/or stderr to files and perl data structures. It aims to satisfy
4346 99% of the need for using system, qx, and open3 with a simple, extremely
4347 Perlish API and none of the bloat and rarely used features of IPC::Run.")
4348 (home-page (string-append "http://search.cpan.org/~rjbs//"
4349 "IPC-Run3-" version))
4350 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
4351 ;; licenses, any version."
4352 (license (list bsd-3 gpl3+))))
4353
4354 (define-public perl-ipc-sharelite
4355 (package
4356 (name "perl-ipc-sharelite")
4357 (version "0.17")
4358 (source
4359 (origin
4360 (method url-fetch)
4361 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
4362 "IPC-ShareLite-" version ".tar.gz"))
4363 (sha256
4364 (base32
4365 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
4366 (build-system perl-build-system)
4367 (home-page "http://search.cpan.org/dist/IPC-ShareLite/")
4368 (synopsis "Lightweight interface to shared memory")
4369 (description "IPC::ShareLite provides a simple interface to shared memory,
4370 allowing data to be efficiently communicated between processes.")
4371 (license (package-license perl))))
4372
4373 (define-public perl-ipc-system-simple
4374 (package
4375 (name "perl-ipc-system-simple")
4376 (version "1.25")
4377 (source (origin
4378 (method url-fetch)
4379 (uri (string-append
4380 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
4381 version ".tar.gz"))
4382 (sha256
4383 (base32
4384 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
4385 (build-system perl-build-system)
4386 (home-page "http://search.cpan.org/dist/IPC-System-Simple/")
4387 (synopsis "Run commands simply, with detailed diagnostics")
4388 (description "Calling Perl's in-built @code{system} function is easy,
4389 determining if it was successful is hard. Let's face it, @code{$?} isn't the
4390 nicest variable in the world to play with, and even if you do check it,
4391 producing a well-formatted error string takes a lot of work.
4392
4393 @code{IPC::System::Simple} takes the hard work out of calling external
4394 commands.")
4395 (license (package-license perl))))
4396
4397 (define-public perl-json
4398 (package
4399 (name "perl-json")
4400 (version "2.90")
4401 (source
4402 (origin
4403 (method url-fetch)
4404 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
4405 "JSON-" version ".tar.gz"))
4406 (sha256
4407 (base32
4408 "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
4409 (build-system perl-build-system)
4410 (propagated-inputs
4411 `(("perl-json-xs" ,perl-json-xs))) ;recommended
4412 (home-page "http://search.cpan.org/dist/JSON/")
4413 (synopsis "JSON encoder/decoder for Perl")
4414 (description "This module converts Perl data structures to JSON and vice
4415 versa using either JSON::XS or JSON::PP.")
4416 (license (package-license perl))))
4417
4418 (define-public perl-json-any
4419 (package
4420 (name "perl-json-any")
4421 (version "1.39")
4422 (source
4423 (origin
4424 (method url-fetch)
4425 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4426 "JSON-Any-" version ".tar.gz"))
4427 (sha256
4428 (base32
4429 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
4430 (build-system perl-build-system)
4431 (native-inputs
4432 `(("perl-test-fatal" ,perl-test-fatal)
4433 ("perl-test-requires" ,perl-test-requires)
4434 ("perl-test-warnings" ,perl-test-warnings)
4435 ("perl-test-without-module" ,perl-test-without-module)))
4436 (propagated-inputs
4437 `(("perl-namespace-clean" ,perl-namespace-clean)))
4438 (home-page "http://search.cpan.org/dist/JSON-Any/")
4439 (synopsis "Wrapper for Perl JSON classes")
4440 (description
4441 "This module tries to provide a coherent API to bring together the
4442 various JSON modules currently on CPAN. This module will allow you to code to
4443 any JSON API and have it work regardless of which JSON module is actually
4444 installed.")
4445 (license (package-license perl))))
4446
4447 (define-public perl-json-maybexs
4448 (package
4449 (name "perl-json-maybexs")
4450 (version "1.003010")
4451 (source
4452 (origin
4453 (method url-fetch)
4454 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4455 "JSON-MaybeXS-" version ".tar.gz"))
4456 (sha256
4457 (base32
4458 "0hs504x5zsa2vl6r7b3rvbygsak1ly24m1lg636bqp3x7jirmb30"))))
4459 (build-system perl-build-system)
4460 (native-inputs
4461 `(("perl-test-without-module" ,perl-test-without-module)))
4462 (inputs
4463 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
4464 (home-page "http://search.cpan.org/dist/JSON-MaybeXS/")
4465 (synopsis "Cpanel::JSON::XS with fallback")
4466 (description "This module first checks to see if either Cpanel::JSON::XS
4467 or JSON::XS is already loaded, in which case it uses that module. Otherwise
4468 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
4469 either uses the first module it finds or throws an error.")
4470 (license (package-license perl))))
4471
4472 (define-public perl-json-xs
4473 (package
4474 (name "perl-json-xs")
4475 (version "3.01")
4476 (source
4477 (origin
4478 (method url-fetch)
4479 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
4480 "JSON-XS-" version ".tar.gz"))
4481 (sha256
4482 (base32
4483 "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
4484 (build-system perl-build-system)
4485 (propagated-inputs
4486 `(("perl-common-sense" ,perl-common-sense)
4487 ("perl-types-serialiser" ,perl-types-serialiser)))
4488 (home-page "http://search.cpan.org/dist/JSON-XS/")
4489 (synopsis "JSON serialising/deserialising for Perl")
4490 (description "This module converts Perl data structures to JSON and vice
4491 versa.")
4492 (license (package-license perl))))
4493
4494 (define-public perl-lexical-sealrequirehints
4495 (package
4496 (name "perl-lexical-sealrequirehints")
4497 (version "0.011")
4498 (source
4499 (origin
4500 (method url-fetch)
4501 (uri (string-append
4502 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
4503 version
4504 ".tar.gz"))
4505 (sha256
4506 (base32
4507 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
4508 (build-system perl-build-system)
4509 (native-inputs
4510 `(("perl-module-build" ,perl-module-build)))
4511 (home-page "http://search.cpan.org/dist/Lexical-SealRequireHints/")
4512 (synopsis "Prevent leakage of lexical hints")
4513 (description
4514 "Lexical::SealRequireHints prevents leakage of lexical hints")
4515 (license (package-license perl))))
4516
4517 (define-public perl-log-any
4518 (package
4519 (name "perl-log-any")
4520 (version "1.040")
4521 (source
4522 (origin
4523 (method url-fetch)
4524 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
4525 version ".tar.gz"))
4526 (sha256
4527 (base32
4528 "0r1q7cclgwl24gzdnjzvd8y0r7j17dngjk492x35w198zhdj2ncp"))))
4529 (build-system perl-build-system)
4530 (home-page "http://search.cpan.org/dist/Log-Any/")
4531 (synopsis "Bringing loggers and listeners together")
4532 (description "@code{Log::Any} provides a standard log production API for
4533 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
4534 for log consumption, whether screen, file or another logging mechanism like
4535 @code{Log::Dispatch} or @code{Log::Log4perl}.
4536
4537 A CPAN module uses @code{Log::Any} to get a log producer object. An
4538 application, in turn, may choose one or more logging mechanisms via
4539 @code{Log::Any::Adapter}, or none at all.
4540
4541 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
4542 itself, which makes it appropriate for even small CPAN modules to use. It
4543 defaults to 'null' logging activity, so a module can safely log without
4544 worrying about whether the application has chosen (or will ever choose) a
4545 logging mechanism.")
4546 (license (package-license perl))))
4547
4548 (define-public perl-log-any-adapter-log4perl
4549 (package
4550 (name "perl-log-any-adapter-log4perl")
4551 (version "0.09")
4552 (source
4553 (origin
4554 (method url-fetch)
4555 (uri (string-append
4556 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
4557 version
4558 ".tar.gz"))
4559 (sha256
4560 (base32
4561 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
4562 (build-system perl-build-system)
4563 (propagated-inputs
4564 `(("perl-log-any" ,perl-log-any)
4565 ("perl-log-log4perl" ,perl-log-log4perl)))
4566 (home-page
4567 "http://search.cpan.org/dist/Log-Any-Adapter-Log4perl/")
4568 (synopsis "Log::Any adapter for Log::Log4perl")
4569 (description "@code{Log::Any::Adapter::Log4perl} provides a
4570 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
4571 (license (package-license perl))))
4572
4573 (define-public perl-log-log4perl
4574 (package
4575 (name "perl-log-log4perl")
4576 (version "1.49")
4577 (source
4578 (origin
4579 (method url-fetch)
4580 (uri (string-append
4581 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
4582 version
4583 ".tar.gz"))
4584 (sha256
4585 (base32
4586 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
4587 (build-system perl-build-system)
4588 (home-page
4589 "http://search.cpan.org/dist/Log-Log4perl/")
4590 (synopsis "Log4j implementation for Perl")
4591 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
4592 the logging behaviour of your system from the outside. It implements the
4593 widely popular (Java-based) Log4j logging package in pure Perl.")
4594 (license (package-license perl))))
4595
4596 (define-public perl-log-report-optional
4597 (package
4598 (name "perl-log-report-optional")
4599 (version "1.01")
4600 (source (origin
4601 (method url-fetch)
4602 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4603 "Log-Report-Optional-" version ".tar.gz"))
4604 (sha256
4605 (base32
4606 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
4607 (build-system perl-build-system)
4608 (propagated-inputs
4609 `(("perl-string-print" ,perl-string-print)))
4610 (home-page "http://search.cpan.org/dist/Log-Report-Optional/")
4611 (synopsis "Log::Report in the lightest form")
4612 (description
4613 "This module allows libraries to have a dependency to a small module
4614 instead of the full Log-Report distribution. The full power of
4615 @code{Log::Report} is only released when the main program uses that module.
4616 In that case, the module using the 'Optional' will also use the full
4617 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
4618 version.")
4619 (license (package-license perl))))
4620
4621 (define-public perl-log-report
4622 (package
4623 (name "perl-log-report")
4624 (version "1.10")
4625 (source (origin
4626 (method url-fetch)
4627 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4628 "Log-Report-" version ".tar.gz"))
4629 (sha256
4630 (base32
4631 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
4632 (build-system perl-build-system)
4633 (propagated-inputs
4634 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4635 ("perl-log-report-optional" ,perl-log-report-optional)
4636 ("perl-string-print" ,perl-string-print)))
4637 (home-page "http://search.cpan.org/dist/Log-Report/")
4638 (synopsis "Get messages to users and logs")
4639 (description
4640 "@code{Log::Report} combines three tasks which are closely related in
4641 one: logging, exceptions, and translations.")
4642 (license (package-license perl))))
4643
4644 (define-public perl-libintl-perl
4645 (package
4646 (name "perl-libintl-perl")
4647 (version "1.29")
4648 (source
4649 (origin
4650 (method url-fetch)
4651 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
4652 "libintl-perl-" version ".tar.gz"))
4653 (sha256
4654 (base32
4655 "1cgvrgh4axd8jlr6497ndgphgvgnqc1axd306460hskdvc85z4vq"))))
4656 (build-system perl-build-system)
4657 (arguments
4658 `(#:phases
4659 (modify-phases %standard-phases
4660 (add-before 'configure 'set-perl-search-path
4661 (lambda _
4662 ;; Work around "dotless @INC" build failure.
4663 (setenv "PERL5LIB" (string-append (getcwd) ":"
4664 (getenv "PERL5LIB")))
4665 #t)))))
4666 (propagated-inputs
4667 `(("perl-file-sharedir" ,perl-file-sharedir)))
4668 (home-page "http://search.cpan.org/dist/libintl-perl/")
4669 (synopsis "High-level interface to Uniforum message translation")
4670 (description "This package is an internationalization library for Perl
4671 that aims to be compatible with the Uniforum message translations system as
4672 implemented for example in GNU gettext.")
4673 (license gpl3+)))
4674
4675 (define-public perl-lingua-translit
4676 (package
4677 (name "perl-lingua-translit")
4678 (version "0.26")
4679 (source
4680 (origin
4681 (method url-fetch)
4682 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
4683 "Lingua-Translit-" version ".tar.gz"))
4684 (sha256
4685 (base32
4686 "161589h08kzliga17i2g0hb0yn4cjmb8rdiyadq5bw97974bac14"))))
4687 (build-system perl-build-system)
4688 (home-page "http://search.cpan.org/dist/Lingua-Translit/")
4689 (synopsis "Transliterate text between writing systems")
4690 (description "@code{Lingua::Translit} can be used to convert text from one
4691 writing system to another, based on national or international transliteration
4692 tables. Where possible a reverse transliteration is supported.")
4693 (license (package-license perl))))
4694
4695 (define-public perl-list-allutils
4696 (package
4697 (name "perl-list-allutils")
4698 (version "0.09")
4699 (source
4700 (origin
4701 (method url-fetch)
4702 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4703 "List-AllUtils-" version ".tar.gz"))
4704 (sha256
4705 (base32
4706 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
4707 (build-system perl-build-system)
4708 (native-inputs
4709 `(("perl-test-warnings" ,perl-test-warnings)))
4710 (propagated-inputs
4711 `(("perl-list-moreutils" ,perl-list-moreutils)
4712 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
4713 (home-page "http://search.cpan.org/dist/List-AllUtils/")
4714 (synopsis "Combination of List::Util and List::MoreUtils")
4715 (description "This module exports all of the functions that either
4716 List::Util or List::MoreUtils defines, with preference to List::Util.")
4717 (license (package-license perl))))
4718
4719 (define-public perl-list-compare
4720 (package
4721 (name "perl-list-compare")
4722 (version "0.53")
4723 (source
4724 (origin
4725 (method url-fetch)
4726 (uri (string-append
4727 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
4728 version
4729 ".tar.gz"))
4730 (sha256
4731 (base32
4732 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
4733 (build-system perl-build-system)
4734 (native-inputs
4735 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
4736 (home-page "http://search.cpan.org/dist/List-Compare/")
4737 (synopsis "Compare elements of two or more lists")
4738 (description "@code{List::Compare} provides a module to perform
4739 comparative operations on two or more lists. Provided operations include
4740 intersections, unions, unique elements, complements and many more.")
4741 (license (package-license perl))))
4742
4743 (define-public perl-list-moreutils
4744 (package
4745 (name "perl-list-moreutils")
4746 (version "0.428")
4747 (source
4748 (origin
4749 (method url-fetch)
4750 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4751 "List-MoreUtils-" version ".tar.gz"))
4752 (sha256
4753 (base32
4754 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
4755 (build-system perl-build-system)
4756 (arguments
4757 `(#:phases
4758 (modify-phases %standard-phases
4759 (add-before 'configure 'set-perl-search-path
4760 (lambda _
4761 ;; Work around "dotless @INC" build failure.
4762 (setenv "PERL5LIB"
4763 (string-append (getcwd) ":"
4764 (getenv "PERL5LIB")))
4765 #t)))))
4766 (native-inputs
4767 `(("perl-config-autoconf" ,perl-config-autoconf)
4768 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4769 (propagated-inputs
4770 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4771 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
4772 (home-page "http://search.cpan.org/dist/List-MoreUtils/")
4773 (synopsis "Provide the stuff missing in List::Util")
4774 (description "List::MoreUtils provides some trivial but commonly needed
4775 functionality on lists which is not going to go into List::Util.")
4776 (license (package-license perl))))
4777
4778 (define-public perl-list-moreutils-xs
4779 (package
4780 (name "perl-list-moreutils-xs")
4781 (version "0.428")
4782 (source
4783 (origin
4784 (method url-fetch)
4785 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
4786 version ".tar.gz"))
4787 (sha256
4788 (base32
4789 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
4790 (build-system perl-build-system)
4791 (native-inputs
4792 `(("perl-config-autoconf" ,perl-config-autoconf)
4793 ("perl-inc-latest" ,perl-inc-latest)
4794 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4795 (home-page "http://search.cpan.org/dist/List-MoreUtils-XS")
4796 (synopsis "Provide the stuff missing in List::Util in XS")
4797 (description "@code{List::MoreUtils::XS} provides some trivial but
4798 commonly needed functionality on lists which is not going to go into
4799 @code{List::Util}.")
4800 (license asl2.0)))
4801
4802 (define-public perl-list-someutils
4803 (package
4804 (name "perl-list-someutils")
4805 (version "0.52")
4806 (source
4807 (origin
4808 (method url-fetch)
4809 (uri (string-append
4810 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
4811 version
4812 ".tar.gz"))
4813 (sha256
4814 (base32
4815 "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
4816 (build-system perl-build-system)
4817 (native-inputs
4818 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
4819 (inputs
4820 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4821 ("perl-module-implementation"
4822 ,perl-module-implementation)))
4823 (home-page "http://search.cpan.org/dist/List-SomeUtils/")
4824 (synopsis "Provide the stuff missing in List::Util")
4825 (description "@code{List::SomeUtils} provides some trivial but commonly
4826 needed functionality on lists which is not going to go into @code{List::Util}.
4827
4828 All of the below functions are implementable in only a couple of lines of Perl
4829 code. Using the functions from this module however should give slightly
4830 better performance as everything is implemented in C. The pure-Perl
4831 implementation of these functions only serves as a fallback in case the C
4832 portions of this module couldn't be compiled on this machine.")
4833 (license (package-license perl))))
4834
4835 (define-public perl-mailtools
4836 (package
4837 (name "perl-mailtools")
4838 (version "2.20")
4839 (source
4840 (origin
4841 (method url-fetch)
4842 (uri (string-append
4843 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
4844 version
4845 ".tar.gz"))
4846 (sha256
4847 (base32
4848 "15iizg2x1w7ca0r8rn3wwhp7w160ljvf55prspljwd6cm7vhcmpm"))))
4849 (build-system perl-build-system)
4850 (propagated-inputs
4851 `(("perl-timedate" ,perl-timedate)))
4852 (home-page
4853 "http://search.cpan.org/dist/MailTools/")
4854 (synopsis "Bundle of ancient email modules")
4855 (description "MailTools contains the following modules:
4856 @table @asis
4857 @item Mail::Address
4858 Parse email address from a header line.
4859 @item Mail::Cap
4860 Interpret mailcap files: mappings of file-types to applications as used by
4861 many command-line email programs.
4862 @item Mail::Field
4863 Simplifies access to (some) email header fields. Used by Mail::Header.
4864 @item Mail::Filter
4865 Process Mail::Internet messages.
4866 @item Mail::Header
4867 Collection of Mail::Field objects, representing the header of a Mail::Internet
4868 object.
4869 @item Mail::Internet
4870 Represents a single email message, with header and body.
4871 @item Mail::Mailer
4872 Send Mail::Internet emails via direct smtp or local MTA's.
4873 @item Mail::Send
4874 Build a Mail::Internet object, and then send it out using Mail::Mailer.
4875 @item Mail::Util
4876 \"Smart functions\" you should not depend on.
4877 @end table")
4878 (license perl-license)))
4879
4880 (define-public perl-math-bezier
4881 (package
4882 (name "perl-math-bezier")
4883 (version "0.01")
4884 (source (origin
4885 (method url-fetch)
4886 (uri (string-append
4887 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
4888 version ".tar.gz"))
4889 (sha256
4890 (base32
4891 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
4892 (build-system perl-build-system)
4893 (home-page "http://search.cpan.org/dist/Math-Bezier/")
4894 (synopsis "Solution of bezier curves")
4895 (description "This module implements the algorithm for the solution of Bezier
4896 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
4897 Bezier Curve Drawing\".")
4898 (license perl-license)))
4899
4900 (define-public perl-math-round
4901 (package
4902 (name "perl-math-round")
4903 (version "0.07")
4904 (source (origin
4905 (method url-fetch)
4906 (uri (string-append
4907 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
4908 version ".tar.gz"))
4909 (sha256
4910 (base32
4911 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
4912 (build-system perl-build-system)
4913 (home-page "http://search.cpan.org/dist/Math-Round/")
4914 (synopsis "Perl extension for rounding numbers")
4915 (description "@code{Math::Round} provides functions to round numbers,
4916 both positive and negative, in various ways.")
4917 (license perl-license)))
4918
4919 (define-public perl-memoize
4920 (package
4921 (name "perl-memoize")
4922 (version "1.03")
4923 (source (origin
4924 (method url-fetch)
4925 (uri (string-append
4926 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
4927 version".tgz"))
4928 (sha256
4929 (base32
4930 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
4931 (build-system perl-build-system)
4932 (home-page "http://search.cpan.org/dist/Memoize/")
4933 (synopsis "Make functions faster by trading space for time")
4934 (description "This package transparently speeds up functions by caching
4935 return values, trading space for time.")
4936 (license perl-license)))
4937
4938 (define-public perl-memoize-expirelru
4939 (package
4940 (name "perl-memoize-expirelru")
4941 (version "0.56")
4942 (source
4943 (origin
4944 (method url-fetch)
4945 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
4946 "Memoize-ExpireLRU-" version ".tar.gz"))
4947 (sha256
4948 (base32
4949 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
4950 (build-system perl-build-system)
4951 (home-page "http://search.cpan.org/dist/Memoize-ExpireLRU/")
4952 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
4953 (description "This module implements an expiry policy for Memoize that
4954 follows LRU semantics, that is, the last n results, where n is specified as
4955 the argument to the CACHESIZE parameter, will be cached.")
4956 (license (package-license perl))))
4957
4958 (define-public perl-mime-charset
4959 (package
4960 (name "perl-mime-charset")
4961 (version "1.012.2")
4962 (source (origin
4963 (method url-fetch)
4964 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
4965 "MIME-Charset-" version ".tar.gz"))
4966 (sha256
4967 (base32
4968 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
4969 (build-system perl-build-system)
4970 (home-page "http://search.cpan.org/dist/MIME-Charset/")
4971 (synopsis "Charset information for MIME messages")
4972 (description
4973 "@code{MIME::Charset} provides information about character sets used for
4974 MIME messages on Internet.")
4975 (license (package-license perl))))
4976
4977 (define-public perl-mime-tools
4978 (package
4979 (name "perl-mime-tools")
4980 (version "5.509")
4981 (source
4982 (origin
4983 (method url-fetch)
4984 (uri (string-append
4985 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
4986 version
4987 ".tar.gz"))
4988 (sha256
4989 (base32
4990 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
4991 (build-system perl-build-system)
4992 (native-inputs
4993 `(("perl-test-deep" ,perl-test-deep)))
4994 (inputs
4995 `(("perl-convert-binhex" ,perl-convert-binhex)))
4996 (propagated-inputs
4997 `(("perl-mailtools" ,perl-mailtools)))
4998 (home-page
4999 "http://search.cpan.org/dist/MIME-tools/")
5000 (synopsis "Tools to manipulate MIME messages")
5001 (description
5002 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
5003 decoding, and generating single- or multipart (even nested multipart) MIME
5004 messages.")
5005 (license perl-license)))
5006
5007 (define-public perl-mime-types
5008 (package
5009 (name "perl-mime-types")
5010 (version "2.17")
5011 (source
5012 (origin
5013 (method url-fetch)
5014 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5015 "MIME-Types-" version ".tar.gz"))
5016 (sha256
5017 (base32
5018 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
5019 (build-system perl-build-system)
5020 (home-page "http://search.cpan.org/dist/MIME-Types/")
5021 (synopsis "Definition of MIME types")
5022 (description "This module provides a list of known mime-types, combined
5023 from various sources. For instance, it contains all IANA types and the
5024 knowledge of Apache.")
5025 (license (package-license perl))))
5026
5027 (define-public perl-mixin-linewise
5028 (package
5029 (name "perl-mixin-linewise")
5030 (version "0.108")
5031 (source (origin
5032 (method url-fetch)
5033 (uri (string-append
5034 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
5035 version ".tar.gz"))
5036 (sha256
5037 (base32
5038 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
5039 (build-system perl-build-system)
5040 (inputs
5041 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
5042 ("perl-sub-exporter" ,perl-sub-exporter)))
5043 (home-page "http://search.cpan.org/dist/Mixin-Linewise/")
5044 (synopsis "Write your linewise code for handles; this does the rest")
5045 (description "It's boring to deal with opening files for IO, converting
5046 strings to handle-like objects, and all that. With
5047 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
5048 just write a method to handle handles, and methods for handling strings and
5049 file names are added for you.")
5050 (license (package-license perl))))
5051
5052 (define-public perl-modern-perl
5053 (package
5054 (name "perl-modern-perl")
5055 (version "1.20170117")
5056 (source
5057 (origin
5058 (method url-fetch)
5059 (uri (string-append
5060 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
5061 version ".tar.gz"))
5062 (sha256
5063 (base32
5064 "0a1n9c04zhs1a1km1zi0d1hj78d10qv3bhxr4bdi4chnc4saiwjx"))))
5065 (build-system perl-build-system)
5066 (native-inputs
5067 `(("perl-module-build" ,perl-module-build)))
5068 (home-page
5069 "http://search.cpan.org/dist/Modern-Perl/")
5070 (synopsis
5071 "Enable all of the features of Modern Perl with one import")
5072 (description "@code{Modern::Perl} provides a simple way to enable
5073 multiple, by now, standard libraries in a Perl program.")
5074 (license (package-license perl))))
5075
5076 (define-public perl-module-build-tiny
5077 (package
5078 (name "perl-module-build-tiny")
5079 (version "0.039")
5080 (source
5081 (origin
5082 (method url-fetch)
5083 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
5084 "Module-Build-Tiny-" version ".tar.gz"))
5085 (sha256
5086 (base32
5087 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
5088 (build-system perl-build-system)
5089 (native-inputs
5090 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5091 ("perl-extutils-config" ,perl-extutils-config)
5092 ("perl-extutils-helpers" ,perl-extutils-helpers)
5093 ("perl-test-harness" ,perl-test-harness)))
5094 (propagated-inputs
5095 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5096 ("perl-extutils-config" ,perl-extutils-config)
5097 ("perl-extutils-helpers" ,perl-extutils-helpers)
5098 ("perl-test-harness" ,perl-test-harness)))
5099 (home-page "http://search.cpan.org/dist/Module-Build-Tiny/")
5100 (synopsis "Tiny replacement for Module::Build")
5101 (description "Many Perl distributions use a Build.PL file instead of a
5102 Makefile.PL file to drive distribution configuration, build, test and
5103 installation. Traditionally, Build.PL uses Module::Build as the underlying
5104 build system. This module provides a simple, lightweight, drop-in
5105 replacement. Whereas Module::Build has over 6,700 lines of code; this module
5106 has less than 120, yet supports the features needed by most distributions.")
5107 (license (package-license perl))))
5108
5109 (define-public perl-module-build-xsutil
5110 (package
5111 (name "perl-module-build-xsutil")
5112 (version "0.16")
5113 (source (origin
5114 (method url-fetch)
5115 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
5116 "Module-Build-XSUtil-" version ".tar.gz"))
5117 (sha256
5118 (base32
5119 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
5120 (build-system perl-build-system)
5121 (native-inputs
5122 `(("perl-capture-tiny" ,perl-capture-tiny)
5123 ("perl-cwd-guard" ,perl-cwd-guard)
5124 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
5125 ("perl-module-build" ,perl-module-build)))
5126 (propagated-inputs
5127 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
5128 (home-page "http://search.cpan.org/dist/Module-Build-XSUtil/")
5129 (synopsis "Module::Build class for building XS modules")
5130 (description
5131 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
5132 for support building XS modules.
5133
5134 This is a list of a new parameters in the @code{Module::Build::new} method:
5135
5136 @enumerate
5137 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
5138 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
5139 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
5140 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
5141 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
5142 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
5143 @file{ppport.h}, and defines some portability stuff which are not supported by
5144 @file{ppport.h}.
5145
5146 It is ported from @code{Module::Install::XSUtil}.
5147 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
5148 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
5149 debug options.
5150 @end enumerate")
5151 (license (package-license perl))))
5152
5153 (define-public perl-module-find
5154 (package
5155 (name "perl-module-find")
5156 (version "0.13")
5157 (source
5158 (origin
5159 (method url-fetch)
5160 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
5161 "Module-Find-" version ".tar.gz"))
5162 (sha256
5163 (base32
5164 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
5165 (build-system perl-build-system)
5166 (home-page "http://search.cpan.org/dist/Module-Find/")
5167 (synopsis "Find and use installed modules in a (sub)category")
5168 (description "Module::Find lets you find and use modules in categories.
5169 This can be useful for auto-detecting driver or plugin modules. You can
5170 differentiate between looking in the category itself or in all
5171 subcategories.")
5172 (license (package-license perl))))
5173
5174 (define-public perl-module-implementation
5175 (package
5176 (name "perl-module-implementation")
5177 (version "0.09")
5178 (source
5179 (origin
5180 (method url-fetch)
5181 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5182 "Module-Implementation-" version ".tar.gz"))
5183 (sha256
5184 (base32
5185 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
5186 (build-system perl-build-system)
5187 (native-inputs
5188 `(("perl-test-fatal" ,perl-test-fatal)
5189 ("perl-test-requires" ,perl-test-requires)))
5190 (propagated-inputs
5191 `(("perl-module-runtime" ,perl-module-runtime)
5192 ("perl-try-tiny" ,perl-try-tiny)))
5193 (home-page "http://search.cpan.org/dist/Module-Implementation/")
5194 (synopsis "Loads alternate underlying implementations for a module")
5195 (description "This module abstracts out the process of choosing one of
5196 several underlying implementations for a module. This can be used to provide
5197 XS and pure Perl implementations of a module, or it could be used to load an
5198 implementation for a given OS or any other case of needing to provide multiple
5199 implementations.")
5200 (license artistic2.0)))
5201
5202 (define-public perl-module-install
5203 (package
5204 (name "perl-module-install")
5205 (version "1.19")
5206 (source
5207 (origin
5208 (method url-fetch)
5209 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5210 "Module-Install-" version ".tar.gz"))
5211 (sha256
5212 (base32
5213 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
5214 (build-system perl-build-system)
5215 (native-inputs
5216 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
5217 (propagated-inputs
5218 `(("perl-archive-zip" ,perl-archive-zip)
5219 ("perl-file-homedir" ,perl-file-homedir)
5220 ("perl-file-remove" ,perl-file-remove)
5221 ("perl-json" ,perl-json)
5222 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
5223 ;; would cause a circular dependency with (gnu packages web), so we
5224 ;; leave it out. It may be resolved at runtime, however.
5225 ;("perl-libwww-perl" ,perl-libwww-perl)
5226 ("perl-module-scandeps" ,perl-module-scandeps)
5227 ("perl-par-dist" ,perl-par-dist)
5228 ("perl-yaml-tiny" ,perl-yaml-tiny)))
5229 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
5230 ;; character handling.
5231 (arguments `(#:tests? #f))
5232 (home-page "http://search.cpan.org/dist/Module-Install/")
5233 (synopsis "Standalone, extensible Perl module installer")
5234 (description "Module::Install is a package for writing installers for
5235 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
5236 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
5237 installation version 5.005 or newer.")
5238 (license (package-license perl))))
5239
5240 (define-public perl-module-manifest
5241 (package
5242 (name "perl-module-manifest")
5243 (version "1.09")
5244 (source
5245 (origin
5246 (method url-fetch)
5247 (uri (string-append
5248 "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
5249 version ".tar.gz"))
5250 (sha256
5251 (base32
5252 "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
5253 (build-system perl-build-system)
5254 (native-inputs
5255 `(("perl-test-exception" ,perl-test-exception)
5256 ("perl-test-warn" ,perl-test-warn)))
5257 (propagated-inputs
5258 `(("perl-params-util" ,perl-params-util)))
5259 (home-page "http://search.cpan.org/dist/Module-Manifest/")
5260 (synopsis "Parse and examine a Perl distribution @file{MANIFEST} file")
5261 (description
5262 "@code{Module::Manifest} is a simple utility module created originally for
5263 use in @code{Module::Inspector}.
5264
5265 It can load a @file{MANIFEST} file that comes in a Perl distribution tarball,
5266 examine the contents, and perform some simple tasks. It can also load the
5267 @file{MANIFEST.SKIP} file and check that.")
5268 (license perl-license)))
5269
5270 (define-public perl-module-pluggable
5271 (package
5272 (name "perl-module-pluggable")
5273 (version "5.2")
5274 (source
5275 (origin
5276 (method url-fetch)
5277 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
5278 "Module-Pluggable-" version ".tar.gz"))
5279 (sha256
5280 (base32
5281 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
5282 (patches (search-patches "perl-module-pluggable-search.patch"))))
5283 (build-system perl-build-system)
5284 (home-page "http://search.cpan.org/dist/Module-Pluggable/")
5285 (synopsis "Give your Perl module the ability to have plugins")
5286 (description "This module provides a simple but extensible way of having
5287 'plugins' for your Perl module.")
5288 (license (package-license perl))))
5289
5290 (define-public perl-module-runtime
5291 (package
5292 (name "perl-module-runtime")
5293 (version "0.014")
5294 (source
5295 (origin
5296 (method url-fetch)
5297 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
5298 "Module-Runtime-" version ".tar.gz"))
5299 (sha256
5300 (base32
5301 "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
5302 (build-system perl-build-system)
5303 (native-inputs `(("perl-module-build" ,perl-module-build)))
5304 (home-page "http://search.cpan.org/dist/Module-Runtime/")
5305 (synopsis "Perl runtime module handling")
5306 (description "The functions exported by this module deal with runtime
5307 handling of Perl modules, which are normally handled at compile time.")
5308 (license (package-license perl))))
5309
5310 (define-public perl-module-runtime-conflicts
5311 (package
5312 (name "perl-module-runtime-conflicts")
5313 (version "0.003")
5314 (source
5315 (origin
5316 (method url-fetch)
5317 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5318 "Module-Runtime-Conflicts-" version ".tar.gz"))
5319 (sha256
5320 (base32
5321 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
5322 (build-system perl-build-system)
5323 (native-inputs
5324 `(("perl-module-build" ,perl-module-build)))
5325 (propagated-inputs
5326 `(("perl-module-runtime" ,perl-module-runtime)
5327 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
5328 (home-page "http://search.cpan.org/dist/Module-Runtime-Conflicts/")
5329 (synopsis "Provide information on conflicts for Module::Runtime")
5330 (description "This module provides conflicts checking for Module::Runtime,
5331 which had a recent release that broke some versions of Moose. It is called
5332 from Moose::Conflicts and moose-outdated.")
5333 (license (package-license perl))))
5334
5335 (define-public perl-module-scandeps
5336 (package
5337 (name "perl-module-scandeps")
5338 (version "1.24")
5339 (source
5340 (origin
5341 (method url-fetch)
5342 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5343 "Module-ScanDeps-" version ".tar.gz"))
5344 (sha256
5345 (base32
5346 "0s6cj90ckhy351gql52ksh4ms1x8piv26iadl09fcpzkx7j0srw9"))))
5347 (build-system perl-build-system)
5348 (native-inputs
5349 `(("perl-test-requires" ,perl-test-requires)))
5350 (home-page "http://search.cpan.org/dist/Module-ScanDeps/")
5351 (synopsis "Recursively scan Perl code for dependencies")
5352 (description "Module::ScanDeps is a module to recursively scan Perl
5353 programs for dependencies.")
5354 (license (package-license perl))))
5355
5356 (define-public perl-module-util
5357 (package
5358 (name "perl-module-util")
5359 (version "1.09")
5360 (source
5361 (origin
5362 (method url-fetch)
5363 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
5364 "Module-Util-" version ".tar.gz"))
5365 (sha256
5366 (base32
5367 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
5368 (build-system perl-build-system)
5369 (native-inputs
5370 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
5371 (home-page "http://search.cpan.org/dist/Module-Util/")
5372 (synopsis "Module name tools and transformations")
5373 (description "This module provides a few useful functions for manipulating
5374 module names. Its main aim is to centralise some of the functions commonly
5375 used by modules that manipulate other modules in some way, like converting
5376 module names to relative paths.")
5377 (license (package-license perl))))
5378
5379 (define-public perl-moo
5380 (package
5381 (name "perl-moo")
5382 (version "1.007000")
5383 (source
5384 (origin
5385 (method url-fetch)
5386 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5387 "Moo-" version ".tar.gz"))
5388 (sha256
5389 (base32
5390 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
5391 (build-system perl-build-system)
5392 (native-inputs
5393 `(("perl-test-fatal" ,perl-test-fatal)))
5394 (propagated-inputs
5395 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
5396 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
5397 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5398 ("perl-import-into" ,perl-import-into)
5399 ("perl-module-runtime" ,perl-module-runtime)
5400 ("perl-role-tiny" ,perl-role-tiny)
5401 ("perl-strictures" ,perl-strictures)))
5402 (home-page "http://search.cpan.org/dist/Moo/")
5403 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
5404 (description "Moo is an extremely light-weight Object Orientation system.
5405 It allows one to concisely define objects and roles with a convenient syntax
5406 that avoids the details of Perl's object system. Moo contains a subset of
5407 Moose and is optimised for rapid startup.")
5408 (license (package-license perl))))
5409
5410 ;; Some packages don't yet work with this newer version of ‘Moo’.
5411 (define-public perl-moo-2
5412 (package
5413 (inherit perl-moo)
5414 (name "perl-moo-2")
5415 (version "2.003004")
5416 (source
5417 (origin
5418 (method url-fetch)
5419 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5420 "Moo-" version ".tar.gz"))
5421 (sha256
5422 (base32
5423 "1qciprcgb4661g2g4ks0fxkx5gbjvn7h9yfg0nzflqz9z0jvdfzq"))))
5424 (propagated-inputs
5425 `(("perl-role-tiny" ,perl-role-tiny-2)
5426 ("perl-sub-name" ,perl-sub-name)
5427 ("perl-sub-quote" ,perl-sub-quote)
5428 ("perl-strictures" ,perl-strictures-2)
5429 ,@(alist-delete "perl-strictures"
5430 (alist-delete "perl-role-tiny"
5431 (package-propagated-inputs perl-moo)))))
5432 (arguments
5433 `(#:phases
5434 (modify-phases %standard-phases
5435 (add-before 'configure 'set-perl-search-path
5436 (lambda _
5437 ;; Use perl-strictures for testing.
5438 (setenv "MOO_FATAL_WARNINGS" "=1")
5439 #t)))))))
5440
5441 (define-public perl-moose
5442 (package
5443 (name "perl-moose")
5444 (version "2.2004")
5445 (source (origin
5446 (method url-fetch)
5447 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5448 "Moose-" version ".tar.gz"))
5449 (sha256
5450 (base32
5451 "1c6jx2lnrh2mi9wlj2c0sirj6345xmbpr34ax8d85mcginzq3j74"))))
5452 (build-system perl-build-system)
5453 (native-inputs
5454 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5455 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5456 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
5457 ("perl-test-fatal" ,perl-test-fatal)
5458 ("perl-test-requires" ,perl-test-requires)
5459 ("perl-test-warnings" ,perl-test-warnings)))
5460 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
5461 ;; # === Other Modules ===
5462 ;; #
5463 ;; # Module Want Have
5464 ;; # ---------------------------- ---- -------
5465 ;; # Algorithm::C3 any missing
5466 ;; # DBM::Deep any missing
5467 ;; # DateTime any missing
5468 ;; # DateTime::Calendar::Mayan any missing
5469 ;; # DateTime::Format::MySQL any missing
5470 ;; # Declare::Constraints::Simple any missing
5471 ;; # Dist::CheckConflicts any 0.11
5472 ;; # HTTP::Headers any missing
5473 ;; # IO::File any 1.16
5474 ;; # IO::String any missing
5475 ;; # Locale::US any missing
5476 ;; # Module::Refresh any missing
5477 ;; # MooseX::NonMoose any missing
5478 ;; # Params::Coerce any missing
5479 ;; # Regexp::Common any missing
5480 ;; # SUPER any missing
5481 ;; # Test::Deep any missing
5482 ;; # Test::DependentModules any missing
5483 ;; # Test::LeakTrace any missing
5484 ;; # Test::Output any missing
5485 ;; # URI any missing
5486 (propagated-inputs
5487 `(("perl-class-load" ,perl-class-load)
5488 ("perl-class-load-xs" ,perl-class-load-xs)
5489 ("perl-data-optlist" ,perl-data-optlist)
5490 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5491 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
5492 ("perl-devel-partialdump" ,perl-devel-partialdump)
5493 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
5494 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5495 ("perl-eval-closure" ,perl-eval-closure)
5496 ("perl-list-moreutils" ,perl-list-moreutils)
5497 ("perl-module-runtime" ,perl-module-runtime)
5498 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
5499 ("perl-mro-compat" ,perl-mro-compat)
5500 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
5501 ("perl-package-stash" ,perl-package-stash)
5502 ("perl-package-stash-xs" ,perl-package-stash-xs)
5503 ("perl-params-util" ,perl-params-util)
5504 ("perl-parent" ,perl-parent)
5505 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
5506 ("perl-sub-exporter" ,perl-sub-exporter)
5507 ("perl-sub-name" ,perl-sub-name)
5508 ("perl-task-weaken" ,perl-task-weaken)
5509 ("perl-try-tiny" ,perl-try-tiny)))
5510 (home-page "http://search.cpan.org/dist/Moose/")
5511 (synopsis "Postmodern object system for Perl 5")
5512 (description
5513 "Moose is a complete object system for Perl 5. It provides keywords for
5514 attribute declaration, object construction, inheritance, and maybe more. With
5515 Moose, you define your class declaratively, without needing to know about
5516 blessed hashrefs, accessor methods, and so on. You can concentrate on the
5517 logical structure of your classes, focusing on \"what\" rather than \"how\".
5518 A class definition with Moose reads like a list of very concise English
5519 sentences.")
5520 (license (package-license perl))))
5521
5522 (define-public perl-moosex-emulate-class-accessor-fast
5523 (package
5524 (name "perl-moosex-emulate-class-accessor-fast")
5525 (version "0.00903")
5526 (source
5527 (origin
5528 (method url-fetch)
5529 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
5530 "MooseX-Emulate-Class-Accessor-Fast-"
5531 version ".tar.gz"))
5532 (sha256
5533 (base32
5534 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
5535 (build-system perl-build-system)
5536 (native-inputs
5537 `(("perl-module-install" ,perl-module-install)
5538 ("perl-test-exception" ,perl-test-exception)))
5539 (propagated-inputs
5540 `(("perl-moose" ,perl-moose)))
5541 (home-page "http://search.cpan.org/dist/MooseX-Emulate-Class-Accessor-Fast/")
5542 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
5543 (description "This module attempts to emulate the behavior of
5544 Class::Accessor::Fast as accurately as possible using the Moose attribute
5545 system. The public API of Class::Accessor::Fast is wholly supported, but the
5546 private methods are not.")
5547 (license (package-license perl))))
5548
5549 (define-public perl-moosex-getopt
5550 (package
5551 (name "perl-moosex-getopt")
5552 (version "0.71")
5553 (source
5554 (origin
5555 (method url-fetch)
5556 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5557 "MooseX-Getopt-" version ".tar.gz"))
5558 (sha256
5559 (base32
5560 "0nf2094qgir0irxjycwqavy53ygm530g9f7cxfywnl2n1bmgh66y"))))
5561 (build-system perl-build-system)
5562 (native-inputs
5563 `(("perl-module-build" ,perl-module-build)
5564 ("perl-test-deep" ,perl-test-deep)
5565 ("perl-test-fatal" ,perl-test-fatal)
5566 ("perl-test-requires" ,perl-test-requires)
5567 ("perl-test-trap" ,perl-test-trap)
5568 ("perl-test-warnings" ,perl-test-warnings)))
5569 (propagated-inputs
5570 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
5571 ("perl-moose" ,perl-moose)
5572 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
5573 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5574 (home-page "http://search.cpan.org/dist/MooseX-Getopt/")
5575 (synopsis "Moose role for processing command line options")
5576 (description "This is a Moose role which provides an alternate constructor
5577 for creating objects using parameters passed in from the command line.")
5578 (license (package-license perl))))
5579
5580 (define-public perl-moosex-markasmethods
5581 (package
5582 (name "perl-moosex-markasmethods")
5583 (version "0.15")
5584 (source
5585 (origin
5586 (method url-fetch)
5587 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
5588 "MooseX-MarkAsMethods-" version ".tar.gz"))
5589 (sha256
5590 (base32
5591 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
5592 (build-system perl-build-system)
5593 (inputs
5594 `(("perl-moose" ,perl-moose)
5595 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5596 (home-page "http://search.cpan.org/dist/MooseX-MarkAsMethods/")
5597 (synopsis "Mark overload code symbols as methods")
5598 (description "MooseX::MarkAsMethods allows one to easily mark certain
5599 functions as Moose methods. This will allow other packages such as
5600 namespace::autoclean to operate without blowing away your overloads. After
5601 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
5602 being methods, and class extension as well as composition from roles with
5603 overloads will \"just work\".")
5604 (license lgpl2.1)))
5605
5606 (define-public perl-moosex-methodattributes
5607 (package
5608 (name "perl-moosex-methodattributes")
5609 (version "0.31")
5610 (source
5611 (origin
5612 (method url-fetch)
5613 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5614 "MooseX-MethodAttributes-" version ".tar.gz"))
5615 (sha256
5616 (base32
5617 "1whd10w7bm3dwaj7gpgw40bci9vvb2zmxs4349ifji91hvinwqck"))))
5618 (build-system perl-build-system)
5619 (native-inputs
5620 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5621 ("perl-test-fatal" ,perl-test-fatal)
5622 ("perl-test-requires" ,perl-test-requires)))
5623 (propagated-inputs
5624 `(("perl-moose" ,perl-moose)
5625 ("perl-moosex-types" ,perl-moosex-types)
5626 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5627 (home-page "http://search.cpan.org/dist/MooseX-MethodAttributes/")
5628 (synopsis "Code attribute introspection")
5629 (description "This module allows code attributes of methods to be
5630 introspected using Moose meta method objects.")
5631 (license (package-license perl))))
5632
5633 (define-public perl-moosex-nonmoose
5634 (package
5635 (name "perl-moosex-nonmoose")
5636 (version "0.26")
5637 (source
5638 (origin
5639 (method url-fetch)
5640 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5641 "MooseX-NonMoose-" version ".tar.gz"))
5642 (sha256
5643 (base32
5644 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
5645 (build-system perl-build-system)
5646 (native-inputs
5647 `(("perl-moose" ,perl-moose)
5648 ("perl-test-fatal" ,perl-test-fatal)))
5649 (propagated-inputs
5650 `(("perl-list-moreutils" ,perl-list-moreutils)
5651 ("perl-module-runtime" ,perl-module-runtime)
5652 ("perl-moose" ,perl-moose)
5653 ("perl-try-tiny" ,perl-try-tiny)))
5654 (home-page "http://search.cpan.org/dist/MooseX-NonMoose/")
5655 (synopsis "Subclassing of non-Moose classes")
5656 (description "MooseX::NonMoose allows for easily subclassing non-Moose
5657 classes with Moose, taking care of the details connected with doing this, such
5658 as setting up proper inheritance from Moose::Object and installing (and
5659 inlining, at make_immutable time) a constructor that makes sure things like
5660 BUILD methods are called. It tries to be as non-intrusive as possible.")
5661 (license (package-license perl))))
5662
5663 (define-public perl-moosex-params-validate
5664 (package
5665 (name "perl-moosex-params-validate")
5666 (version "0.19")
5667 (source
5668 (origin
5669 (method url-fetch)
5670 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5671 "MooseX-Params-Validate-" version ".tar.gz"))
5672 (sha256
5673 (base32
5674 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
5675 (build-system perl-build-system)
5676 (native-inputs
5677 `(("perl-moose" ,perl-moose)
5678 ("perl-test-fatal" ,perl-test-fatal)))
5679 (propagated-inputs
5680 `(("perl-devel-caller" ,perl-devel-caller)
5681 ("perl-moose" ,perl-moose)
5682 ("perl-params-validate" ,perl-params-validate)
5683 ("perl-sub-exporter" ,perl-sub-exporter)))
5684 (home-page "http://search.cpan.org/dist/MooseX-Params-Validate/")
5685 (synopsis "Extension of Params::Validate using Moose's types")
5686 (description "This module fills a gap in Moose by adding method parameter
5687 validation to Moose.")
5688 (license (package-license perl))))
5689
5690 (define-public perl-moosex-relatedclassroles
5691 (package
5692 (name "perl-moosex-relatedclassroles")
5693 (version "0.004")
5694 (source
5695 (origin
5696 (method url-fetch)
5697 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
5698 "MooseX-RelatedClassRoles-" version ".tar.gz"))
5699 (sha256
5700 (base32
5701 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
5702 (build-system perl-build-system)
5703 (propagated-inputs
5704 `(("perl-moose" ,perl-moose)
5705 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
5706 (home-page "http://search.cpan.org/dist/MooseX-RelatedClassRoles/")
5707 (synopsis "Apply roles to a related Perl class")
5708 (description "This module applies roles to make a subclass instead of
5709 manually setting up a subclass.")
5710 (license (package-license perl))))
5711
5712 (define-public perl-moosex-role-parameterized
5713 (package
5714 (name "perl-moosex-role-parameterized")
5715 (version "1.08")
5716 (source
5717 (origin
5718 (method url-fetch)
5719 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5720 "MooseX-Role-Parameterized-" version ".tar.gz"))
5721 (sha256
5722 (base32
5723 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
5724 (build-system perl-build-system)
5725 (native-inputs
5726 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5727 ("perl-module-build" ,perl-module-build)
5728 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
5729 ("perl-test-fatal" ,perl-test-fatal)
5730 ("perl-test-requires" ,perl-test-requires)))
5731 (propagated-inputs
5732 `(("perl-moose" ,perl-moose)
5733 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5734 (home-page "http://search.cpan.org/dist/MooseX-Role-Parameterized/")
5735 (synopsis "Moose roles with composition parameters")
5736 (description "Because Moose roles serve many different masters, they
5737 usually provide only the least common denominator of functionality. To
5738 empower roles further, more configurability than -alias and -excludes is
5739 required. Perhaps your role needs to know which method to call when it is
5740 done processing, or what default value to use for its url attribute.
5741 Parameterized roles offer a solution to these (and other) kinds of problems.")
5742 (license (package-license perl))))
5743
5744 (define-public perl-moosex-role-withoverloading
5745 (package
5746 (name "perl-moosex-role-withoverloading")
5747 (version "0.16")
5748 (source
5749 (origin
5750 (method url-fetch)
5751 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5752 "MooseX-Role-WithOverloading-" version ".tar.gz"))
5753 (sha256
5754 (base32
5755 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
5756 (build-system perl-build-system)
5757 (propagated-inputs
5758 `(("perl-aliased" ,perl-aliased)
5759 ("perl-moose" ,perl-moose)
5760 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5761 (home-page "http://search.cpan.org/dist/MooseX-Role-WithOverloading/")
5762 (synopsis "Roles which support overloading")
5763 (description "MooseX::Role::WithOverloading allows you to write a
5764 Moose::Role which defines overloaded operators and allows those overload
5765 methods to be composed into the classes/roles/instances it's compiled to,
5766 where plain Moose::Roles would lose the overloading.")
5767 (license (package-license perl))))
5768
5769 (define-public perl-moosex-semiaffordanceaccessor
5770 (package
5771 (name "perl-moosex-semiaffordanceaccessor")
5772 (version "0.10")
5773 (source
5774 (origin
5775 (method url-fetch)
5776 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5777 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
5778 (sha256
5779 (base32
5780 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
5781 (build-system perl-build-system)
5782 (propagated-inputs
5783 `(("perl-moose" ,perl-moose)))
5784 (home-page "http://search.cpan.org/dist/MooseX-SemiAffordanceAccessor/")
5785 (synopsis "Name your accessors foo() and set_foo()")
5786 (description "This module does not provide any methods. Simply loading it
5787 changes the default naming policy for the loading class so that accessors are
5788 separated into get and set methods. The get methods have the same name as the
5789 accessor, while set methods are prefixed with \"_set_\".")
5790 (license artistic2.0)))
5791
5792 (define-public perl-moosex-strictconstructor
5793 (package
5794 (name "perl-moosex-strictconstructor")
5795 (version "0.19")
5796 (source
5797 (origin
5798 (method url-fetch)
5799 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5800 "MooseX-StrictConstructor-" version ".tar.gz"))
5801 (sha256
5802 (base32
5803 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
5804 (build-system perl-build-system)
5805 (native-inputs
5806 `(("perl-moose" ,perl-moose)
5807 ("perl-test-fatal" ,perl-test-fatal)))
5808 (propagated-inputs
5809 `(("perl-moose" ,perl-moose)
5810 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5811 (home-page "http://search.cpan.org/dist/MooseX-StrictConstructor/")
5812 (synopsis "Strict object constructors for Moose")
5813 (description "Simply loading this module makes your constructors
5814 \"strict\". If your constructor is called with an attribute init argument
5815 that your class does not declare, then it calls Moose->throw_error().")
5816 (license artistic2.0)))
5817
5818 (define-public perl-moosex-traits-pluggable
5819 (package
5820 (name "perl-moosex-traits-pluggable")
5821 (version "0.12")
5822 (source
5823 (origin
5824 (method url-fetch)
5825 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
5826 "MooseX-Traits-Pluggable-" version ".tar.gz"))
5827 (sha256
5828 (base32
5829 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
5830 (build-system perl-build-system)
5831 (native-inputs
5832 `(("perl-moose" ,perl-moose)
5833 ("perl-test-exception" ,perl-test-exception)))
5834 (propagated-inputs
5835 `(("perl-class-load" ,perl-class-load)
5836 ("perl-list-moreutils" ,perl-list-moreutils)
5837 ("perl-moose" ,perl-moose)
5838 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5839 (home-page
5840 "http://search.cpan.org/dist/MooseX-Traits-Pluggable/")
5841 (synopsis "Trait loading and resolution for Moose")
5842 (description "Adds support on top of MooseX::Traits for class precedence
5843 search for traits and some extra attributes.")
5844 (license (package-license perl))))
5845
5846 (define-public perl-moosex-types
5847 (package
5848 (name "perl-moosex-types")
5849 (version "0.45")
5850 (source
5851 (origin
5852 (method url-fetch)
5853 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5854 "MooseX-Types-" version ".tar.gz"))
5855 (sha256
5856 (base32
5857 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
5858 (build-system perl-build-system)
5859 (native-inputs
5860 `(("perl-module-build" ,perl-module-build)
5861 ("perl-test-fatal" ,perl-test-fatal)
5862 ("perl-test-requires" ,perl-test-requires)))
5863 (propagated-inputs
5864 `(("perl-carp-clan" ,perl-carp-clan)
5865 ("perl-moose" ,perl-moose)
5866 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5867 (home-page "http://search.cpan.org/dist/MooseX-Types/")
5868 (synopsis "Organise your Moose types in libraries")
5869 (description "This package lets you declare types using short names, but
5870 behind the scenes it namespaces all your type declarations, effectively
5871 prevent name clashes between packages.")
5872 (license (package-license perl))))
5873
5874 (define-public perl-moosex-types-datetime
5875 (package
5876 (name "perl-moosex-types-datetime")
5877 (version "0.13")
5878 (source
5879 (origin
5880 (method url-fetch)
5881 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5882 "MooseX-Types-DateTime-" version ".tar.gz"))
5883 (sha256
5884 (base32
5885 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
5886 (build-system perl-build-system)
5887 (native-inputs
5888 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5889 ("perl-moose" ,perl-moose)
5890 ("perl-test-fatal" ,perl-test-fatal)
5891 ("perl-test-simple" ,perl-test-simple)))
5892 (propagated-inputs
5893 `(("perl-datetime" ,perl-datetime)
5894 ("perl-datetime-locale" ,perl-datetime-locale)
5895 ("perl-datetime-timezone" ,perl-datetime-timezone)
5896 ("perl-moose" ,perl-moose)
5897 ("perl-moosex-types" ,perl-moosex-types)
5898 ("perl-namespace-clean" ,perl-namespace-clean)))
5899 (home-page "http://search.cpan.org/dist/MooseX-Types-DateTime/")
5900 (synopsis "DateTime related constraints and coercions for Moose")
5901 (description "This module packages several Moose::Util::TypeConstraints
5902 with coercions, designed to work with the DateTime suite of objects.")
5903 (license (package-license perl))))
5904
5905 (define-public perl-moosex-types-datetime-morecoercions
5906 (package
5907 (name "perl-moosex-types-datetime-morecoercions")
5908 (version "0.14")
5909 (source
5910 (origin
5911 (method url-fetch)
5912 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5913 "MooseX-Types-DateTime-MoreCoercions-"
5914 version ".tar.gz"))
5915 (sha256
5916 (base32
5917 "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
5918 (build-system perl-build-system)
5919 (native-inputs
5920 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5921 ("perl-test-fatal" ,perl-test-fatal)
5922 ("perl-test-simple" ,perl-test-simple)))
5923 (propagated-inputs
5924 `(("perl-datetime" ,perl-datetime)
5925 ("perl-datetimex-easy" ,perl-datetimex-easy)
5926 ("perl-moose" ,perl-moose)
5927 ("perl-moosex-types" ,perl-moosex-types)
5928 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
5929 ("perl-namespace-clean" ,perl-namespace-clean)
5930 ("perl-time-duration-parse" ,perl-time-duration-parse)))
5931 (home-page
5932 "http://search.cpan.org/dist/MooseX-Types-DateTime-MoreCoercions/")
5933 (synopsis "Extensions to MooseX::Types::DateTime")
5934 (description "This module builds on MooseX::Types::DateTime to add
5935 additional custom types and coercions. Since it builds on an existing type,
5936 all coercions and constraints are inherited.")
5937 (license (package-license perl))))
5938
5939 (define-public perl-moosex-types-loadableclass
5940 (package
5941 (name "perl-moosex-types-loadableclass")
5942 (version "0.013")
5943 (source
5944 (origin
5945 (method url-fetch)
5946 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5947 "MooseX-Types-LoadableClass-" version ".tar.gz"))
5948 (sha256
5949 (base32
5950 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
5951 (build-system perl-build-system)
5952 (native-inputs
5953 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5954 ("perl-namespace-clean" ,perl-namespace-clean)
5955 ("perl-moose" ,perl-moose)
5956 ("perl-test-fatal" ,perl-test-fatal)
5957 ("perl-class-load" ,perl-class-load)))
5958 (propagated-inputs
5959 `(("perl-module-runtime" ,perl-module-runtime)
5960 ("perl-moosex-types" ,perl-moosex-types)
5961 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5962 (home-page "http://search.cpan.org/dist/MooseX-Types-LoadableClass/")
5963 (synopsis "ClassName type constraints for Moose")
5964 (description "MooseX::Types::LoadableClass provides a ClassName type
5965 constraint with coercion to load the class.")
5966 (license (package-license perl))))
5967
5968 (define-public perl-moox
5969 (package
5970 (name "perl-moox")
5971 (version "0.101")
5972 (source
5973 (origin
5974 (method url-fetch)
5975 (uri (string-append
5976 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
5977 version
5978 ".tar.gz"))
5979 (sha256
5980 (base32
5981 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
5982 (build-system perl-build-system)
5983 (inputs
5984 `(("perl-data-optlist" ,perl-data-optlist)
5985 ("perl-import-into" ,perl-import-into)
5986 ("perl-module-runtime" ,perl-module-runtime)
5987 ("perl-moo" ,perl-moo)))
5988 (home-page "http://search.cpan.org/dist/MooX/")
5989 (synopsis
5990 "Using Moo and MooX:: packages the most lazy way")
5991 (description "Contains the MooX and MooX::Role packages.")
5992 (license perl-license)))
5993
5994 (define-public perl-moox-cmd
5995 (package
5996 (name "perl-moox-cmd")
5997 (version "0.015")
5998 (source
5999 (origin
6000 (method url-fetch)
6001 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
6002 version ".tar.gz"))
6003 (sha256
6004 (base32
6005 "0145ha8vnc6sbg82ps96wj716bznq2qamm657bia9ji2yxhbnsam"))))
6006 (build-system perl-build-system)
6007 (native-inputs
6008 `(("perl-capture-tiny" ,perl-capture-tiny)
6009 ("perl-list-moreutils" ,perl-list-moreutils)))
6010 (propagated-inputs
6011 `(("perl-module-pluggable" ,perl-module-pluggable)
6012 ("perl-module-runtime" ,perl-module-runtime)
6013 ("perl-moo" ,perl-moo)
6014 ("perl-package-stash" ,perl-package-stash)
6015 ("perl-params-util" ,perl-params-util)
6016 ("perl-regexp-common" ,perl-regexp-common)))
6017 (home-page "http://search.cpan.org/dist/MooX-Cmd")
6018 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
6019 (description "This package eases the writing of command line utilities,
6020 accepting commands and subcommands and so on. These commands can form a tree,
6021 which is mirrored in the package structure. On invocation, each command along
6022 the path through the tree (starting from the top-level command through to the
6023 most specific one) is instantiated.")
6024 (license (package-license perl))))
6025
6026 (define-public perl-moox-configfromfile
6027 (package
6028 (name "perl-moox-configfromfile")
6029 (version "0.008")
6030 (source
6031 (origin
6032 (method url-fetch)
6033 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6034 "MooX-ConfigFromFile-" version ".tar.gz"))
6035 (sha256
6036 (base32
6037 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
6038 (build-system perl-build-system)
6039 (native-inputs
6040 `(("perl-hash-merge" ,perl-hash-merge)
6041 ("perl-json" ,perl-json)
6042 ("perl-moox-cmd" ,perl-moox-cmd)))
6043 (propagated-inputs
6044 `(("perl-config-any" ,perl-config-any)
6045 ("perl-file-configdir" ,perl-file-configdir)
6046 ("perl-file-find-rule" ,perl-file-find-rule)
6047 ("perl-hash-merge" ,perl-hash-merge)
6048 ("perl-moo" ,perl-moo)
6049 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6050 ("perl-namespace-clean" ,perl-namespace-clean)))
6051 (home-page "http://search.cpan.org/dist/MooX-ConfigFromFile/")
6052 (synopsis "Moo eXtension for initializing objects from config file")
6053 (description "This module is intended to easily load initialization values
6054 for attributes on object construction from an appropriate config file. The
6055 building is done in @code{MooX::ConfigFromFile::Role}---using
6056 @code{MooX::ConfigFromFile} ensures that the role is applied.")
6057 (license (package-license perl))))
6058
6059 (define-public perl-moox-file-configdir
6060 (package
6061 (name "perl-moox-file-configdir")
6062 (version "0.007")
6063 (source
6064 (origin
6065 (method url-fetch)
6066 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6067 "MooX-File-ConfigDir-" version ".tar.gz"))
6068 (sha256
6069 (base32
6070 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
6071 (build-system perl-build-system)
6072 (propagated-inputs
6073 `(("perl-file-configdir" ,perl-file-configdir)
6074 ("perl-moo" ,perl-moo)
6075 ("perl-namespace-clean" ,perl-namespace-clean)))
6076 (home-page "http://search.cpan.org/dist/MooX-File-ConfigDir/")
6077 (synopsis "Moo eXtension for @code{File::ConfigDir}")
6078 (description "This module is a helper for easily finding configuration
6079 file locations. This information can be used to find a suitable place for
6080 installing configuration files or for finding any piece of settings.")
6081 (license (package-license perl))))
6082
6083 (define-public perl-moox-handlesvia
6084 (package
6085 (name "perl-moox-handlesvia")
6086 (version "0.001008")
6087 (source
6088 (origin
6089 (method url-fetch)
6090 (uri (string-append
6091 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
6092 version
6093 ".tar.gz"))
6094 (sha256
6095 (base32
6096 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
6097 (build-system perl-build-system)
6098 (native-inputs
6099 `(("perl-moox-types-mooselike"
6100 ,perl-moox-types-mooselike)
6101 ("perl-test-exception" ,perl-test-exception)
6102 ("perl-test-fatal" ,perl-test-fatal)))
6103 (inputs
6104 `(("perl-class-method-modifiers"
6105 ,perl-class-method-modifiers)
6106 ("perl-module-runtime" ,perl-module-runtime)
6107 ("perl-moo" ,perl-moo)
6108 ("perl-role-tiny" ,perl-role-tiny)))
6109 (propagated-inputs
6110 `(("perl-data-perl" ,perl-data-perl)))
6111 (home-page
6112 "http://search.cpan.org/dist/MooX-HandlesVia/")
6113 (synopsis "NativeTrait-like behavior for Moo")
6114 (description
6115 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
6116 attribute functionality. It provides a means of proxying functionality from
6117 an external class to the given atttribute.")
6118 (license perl-license)))
6119
6120 (define-public perl-moox-late
6121 (package
6122 (name "perl-moox-late")
6123 (version "0.015")
6124 (source
6125 (origin
6126 (method url-fetch)
6127 (uri (string-append
6128 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
6129 version
6130 ".tar.gz"))
6131 (sha256
6132 (base32
6133 "1gzvd9zws3v09sh0xx6srmw4jwi22fnrya4zcsc8dykn62pjclqp"))))
6134 (build-system perl-build-system)
6135 (native-inputs
6136 `(("perl-test-fatal" ,perl-test-fatal)
6137 ("perl-test-requires" ,perl-test-requires)))
6138 (inputs
6139 `(("perl-moo" ,perl-moo)
6140 ("perl-moox" ,perl-moox)
6141 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
6142 (propagated-inputs
6143 `(("perl-type-tiny" ,perl-type-tiny)))
6144 (home-page
6145 "http://search.cpan.org/dist/MooX-late/")
6146 (synopsis "Easily translate Moose code to Moo")
6147 (description
6148 "MooX::late does the following:
6149 @enumerate
6150 @item Supports isa => $stringytype
6151 @item Supports does => $rolename
6152 @item Supports lazy_build => 1
6153 @item Exports blessed and confess functions to your namespace.
6154 @item Handles certain attribute traits
6155 Currently Hash, Array and Code are supported. This feature requires
6156 MooX::HandlesVia.
6157 @end enumerate")
6158 (license perl-license)))
6159
6160 (define-public perl-moox-options
6161 (package
6162 (name "perl-moox-options")
6163 (version "4.023")
6164 (source
6165 (origin
6166 (method url-fetch)
6167 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
6168 "MooX-Options-" version ".tar.gz"))
6169 (sha256
6170 (base32
6171 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
6172 (build-system perl-build-system)
6173 (native-inputs
6174 `(("perl-capture-tiny" ,perl-capture-tiny)
6175 ("perl-import-into" ,perl-import-into)
6176 ("perl-module-build" ,perl-module-build)
6177 ("perl-moo" ,perl-moo)
6178 ("perl-moose" ,perl-moose)
6179 ("perl-moox-cmd" ,perl-moox-cmd)
6180 ("perl-namespace-clean" ,perl-namespace-clean)
6181 ("perl-role-tiny" ,perl-role-tiny)
6182 ("perl-test-requires" ,perl-test-requires)
6183 ("perl-test-trap" ,perl-test-trap)
6184 ("perl-test-pod" ,perl-test-pod)
6185 ("perl-try-tiny" ,perl-try-tiny)))
6186 (propagated-inputs
6187 `(("perl-config-any" ,perl-config-any)
6188 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6189 ("perl-data-record" ,perl-data-record)
6190 ("perl-file-configdir" ,perl-file-configdir)
6191 ("perl-file-find-rule" ,perl-file-find-rule)
6192 ("perl-file-sharedir" ,perl-file-sharedir)
6193 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6194 ("perl-json-maybexs" ,perl-json-maybexs)
6195 ("perl-libintl-perl" ,perl-libintl-perl)
6196 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6197 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6198 ("perl-path-class" ,perl-path-class)
6199 ("perl-regexp-common" ,perl-regexp-common)
6200 ("perl-term-size-any" ,perl-term-size-any)
6201 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
6202 (home-page "http://search.cpan.org/dist/MooX-Options/")
6203 (synopsis "Explicit Options eXtension for Object Class")
6204 (description "Create a command line tool with your Mo, Moo, Moose objects.
6205 You have an @code{option} keyword to replace the usual @code{has} to
6206 explicitly use your attribute on the command line. The @code{option} keyword
6207 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
6208 generate a command line tool.")
6209 (license (package-license perl))))
6210
6211 (define-public perl-moox-types-mooselike
6212 (package
6213 (name "perl-moox-types-mooselike")
6214 (version "0.28")
6215 (source
6216 (origin
6217 (method url-fetch)
6218 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
6219 "MooX-Types-MooseLike-" version ".tar.gz"))
6220 (sha256
6221 (base32
6222 "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
6223 (build-system perl-build-system)
6224 (native-inputs
6225 `(("perl-moo" ,perl-moo)
6226 ("perl-test-fatal" ,perl-test-fatal)))
6227 (propagated-inputs
6228 `(("perl-module-runtime" ,perl-module-runtime)
6229 ("perl-strictures" ,perl-strictures)))
6230 (home-page "http://search.cpan.org/dist/MooX-Types-MooseLike/")
6231 (synopsis "Moosish types and type builder")
6232 (description "MooX::Types::MooseLike provides a possibility to build your
6233 own set of Moose-like types. These custom types can then be used to describe
6234 fields in Moo-based classes.")
6235 (license (package-license perl))))
6236
6237 (define-public perl-mouse
6238 (package
6239 (name "perl-mouse")
6240 (version "2.4.9")
6241 (source (origin
6242 (method url-fetch)
6243 (uri (string-append
6244 "mirror://cpan/authors/id/S/SY/SYOHEX/Mouse-v"
6245 version
6246 ".tar.gz"))
6247 (sha256
6248 (base32
6249 "1y20sl97x1h4y1iid47hj0w1hb2887dchh4nfffgmqpyggkslh4n"))))
6250 (build-system perl-build-system)
6251 (native-inputs
6252 `(("perl-module-build" ,perl-module-build)
6253 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
6254 ("perl-test-exception" ,perl-test-exception)
6255 ("perl-test-fatal" ,perl-test-fatal)
6256 ("perl-test-leaktrace" ,perl-test-leaktrace)
6257 ("perl-test-output" ,perl-test-output)
6258 ("perl-test-requires" ,perl-test-requires)
6259 ("perl-try-tiny" ,perl-try-tiny)))
6260 (home-page "https://github.com/gfx/p5-Mouse")
6261 (synopsis "Fast Moose-compatible object system for perl5")
6262 (description
6263 "Mouse is a @code{Moose} compatible object system that implements a
6264 subset of the functionality for reduced startup time.")
6265 (license (package-license perl))))
6266
6267 (define-public perl-mousex-nativetraits
6268 (package
6269 (name "perl-mousex-nativetraits")
6270 (version "1.09")
6271 (source (origin
6272 (method url-fetch)
6273 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
6274 "MouseX-NativeTraits-" version ".tar.gz"))
6275 (sha256
6276 (base32
6277 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
6278 (build-system perl-build-system)
6279 (native-inputs
6280 `(("perl-any-moose" ,perl-any-moose)
6281 ("perl-module-install" ,perl-module-install)
6282 ("perl-test-fatal" ,perl-test-fatal)))
6283 (propagated-inputs
6284 `(("perl-mouse" ,perl-mouse)))
6285 (home-page "http://search.cpan.org/dist/MouseX-NativeTraits/")
6286 (synopsis "Extend attribute interfaces for Mouse")
6287 (description
6288 "While @code{Mouse} attributes provide a way to name your accessors,
6289 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
6290 provides commonly used attribute helper methods for more specific types
6291 of data.")
6292 (license (package-license perl))))
6293
6294 (define-public perl-mozilla-ca
6295 (package
6296 (name "perl-mozilla-ca")
6297 (version "20180117")
6298 (source
6299 (origin
6300 (method url-fetch)
6301 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
6302 version ".tar.gz"))
6303 (sha256
6304 (base32
6305 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
6306 (build-system perl-build-system)
6307 (home-page "http://search.cpan.org/dist/Mozilla-CA/")
6308 (synopsis "Mozilla's CA cert bundle in PEM format")
6309 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
6310 Certificate Authority certificates in a form that can be consumed by modules
6311 and libraries based on OpenSSL.")
6312 (license mpl2.0)))
6313
6314 (define-public perl-multidimensional
6315 (package
6316 (name "perl-multidimensional")
6317 (version "0.014")
6318 (source
6319 (origin
6320 (method url-fetch)
6321 (uri (string-append
6322 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
6323 version ".tar.gz"))
6324 (sha256
6325 (base32
6326 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
6327 (build-system perl-build-system)
6328 (native-inputs
6329 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6330 ("perl-extutils-depends" ,perl-extutils-depends)))
6331 (propagated-inputs
6332 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6333 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
6334 (home-page "http://search.cpan.org/dist/multidimensional/")
6335 (synopsis "Disable multidimensional array emulation")
6336 (description
6337 "Multidimensional disables multidimensional array emulation.")
6338 (license (package-license perl))))
6339
6340 (define-public perl-mro-compat
6341 (package
6342 (name "perl-mro-compat")
6343 (version "0.13")
6344 (source
6345 (origin
6346 (method url-fetch)
6347 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6348 "MRO-Compat-" version ".tar.gz"))
6349 (sha256
6350 (base32
6351 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
6352 (build-system perl-build-system)
6353 (home-page "http://search.cpan.org/dist/MRO-Compat/")
6354 (synopsis "MRO interface compatibility for Perls < 5.9.5")
6355 (description "The \"mro\" namespace provides several utilities for dealing
6356 with method resolution order and method caching in general in Perl 5.9.5 and
6357 higher. This module provides those interfaces for earlier versions of
6358 Perl (back to 5.6.0).")
6359 (license (package-license perl))))
6360
6361 (define-public perl-namespace-autoclean
6362 (package
6363 (name "perl-namespace-autoclean")
6364 (version "0.28")
6365 (source
6366 (origin
6367 (method url-fetch)
6368 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6369 "namespace-autoclean-" version ".tar.gz"))
6370 (sha256
6371 (base32
6372 "0fbcq99yaix1aa99jl3v811dbw24il9jxnh5i2i23mddh4b0lhfd"))))
6373 (build-system perl-build-system)
6374 (native-inputs
6375 `(("perl-module-build" ,perl-module-build)
6376 ("perl-test-requires" ,perl-test-requires)))
6377 (propagated-inputs
6378 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
6379 ("perl-namespace-clean" ,perl-namespace-clean)
6380 ("perl-sub-identify" ,perl-sub-identify)))
6381 (home-page "http://search.cpan.org/dist/namespace-autoclean/")
6382 (synopsis "Keep imports out of your namespace")
6383 (description "The namespace::autoclean pragma will remove all imported
6384 symbols at the end of the current package's compile cycle. Functions called
6385 in the package itself will still be bound by their name, but they won't show
6386 up as methods on your class or instances. It is very similar to
6387 namespace::clean, except it will clean all imported functions, no matter if
6388 you imported them before or after you used the pragma. It will also not touch
6389 anything that looks like a method.")
6390 (license (package-license perl))))
6391
6392 (define-public perl-namespace-clean
6393 (package
6394 (name "perl-namespace-clean")
6395 (version "0.25")
6396 (source
6397 (origin
6398 (method url-fetch)
6399 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
6400 "namespace-clean-" version ".tar.gz"))
6401 (sha256
6402 (base32
6403 "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
6404 (build-system perl-build-system)
6405 (propagated-inputs
6406 `(("perl-package-stash" ,perl-package-stash)
6407 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
6408 (home-page "http://search.cpan.org/dist/namespace-clean/")
6409 (synopsis "Keep imports and functions out of your namespace")
6410 (description "The namespace::clean pragma will remove all previously
6411 declared or imported symbols at the end of the current package's compile
6412 cycle. Functions called in the package itself will still be bound by their
6413 name, but they won't show up as methods on your class or instances.")
6414 (license (package-license perl))))
6415
6416 (define-public perl-net-dns-native
6417 (package
6418 (name "perl-net-dns-native")
6419 (version "0.15")
6420 (source
6421 (origin
6422 (method url-fetch)
6423 (uri (string-append
6424 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
6425 version ".tar.gz"))
6426 (sha256
6427 (base32 "12bsv5jkic3q4arpzk6dda35didkn445v658j87rmi540dpnac85"))))
6428 (build-system perl-build-system)
6429 (home-page "http://search.cpan.org/dist/Net-DNS-Native/")
6430 (synopsis "Non-blocking system DNS resolver")
6431 (description
6432 "This class provides several methods for host name resolution. It is
6433 designed to be used with event loops. Names are resolved by your system's
6434 native @code{getaddrinfo(3)} implementation, called in a separate thread to
6435 avoid blocking the entire application. Threading overhead is limited by using
6436 system threads instead of Perl threads.")
6437 (license perl-license)))
6438
6439 (define-public perl-net-idn-encode
6440 (package
6441 (name "perl-net-idn-encode")
6442 (version "2.400")
6443 (source
6444 (origin
6445 (method url-fetch)
6446 (uri (string-append
6447 "mirror://cpan/authors/id/C/CF/CFAERBER/Net-IDN-Encode-"
6448 version
6449 ".tar.gz"))
6450 (sha256
6451 (base32
6452 "0a9knav5f9kjldrkxx1k47ivd3p23zkmi8aqgyhnxidhgasz1dlq"))))
6453 (build-system perl-build-system)
6454 (native-inputs
6455 `(("perl-module-build" ,perl-module-build)
6456 ("perl-test-nowarnings" ,perl-test-nowarnings)))
6457 (home-page
6458 "http://search.cpan.org/dist/Net-IDN-Encode/")
6459 (synopsis
6460 "Internationalizing Domain Names in Applications (IDNA)")
6461 (description
6462 "Internationalized Domain Names (IDNs) use characters drawn from a large
6463 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
6464 represented using only the ASCII characters already allowed in so-called host
6465 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
6466
6467 Use this module if you just want to convert domain names (or email addresses),
6468 using whatever IDNA standard is the best choice at the moment.")
6469 (license perl-license)))
6470
6471 (define-public perl-net-statsd
6472 (package
6473 (name "perl-net-statsd")
6474 (version "0.12")
6475 (source
6476 (origin
6477 (method url-fetch)
6478 (uri (string-append
6479 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
6480 version
6481 ".tar.gz"))
6482 (sha256
6483 (base32
6484 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
6485 (build-system perl-build-system)
6486 (home-page
6487 "http://search.cpan.org/dist/Net-Statsd/")
6488 (synopsis "Perl client for Etsy's statsd daemon")
6489 (description "This module implement a UDP client for the statsd statistics
6490 collector daemon in use at Etsy.com.")
6491 (license (package-license perl))))
6492
6493 (define-public perl-number-compare
6494 (package
6495 (name "perl-number-compare")
6496 (version "0.03")
6497 (source
6498 (origin
6499 (method url-fetch)
6500 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6501 "Number-Compare-" version ".tar.gz"))
6502 (sha256
6503 (base32
6504 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
6505 (build-system perl-build-system)
6506 (home-page "http://search.cpan.org/dist/Number-Compare/")
6507 (synopsis "Numeric comparisons")
6508 (description "Number::Compare compiles a simple comparison to an anonymous
6509 subroutine, which you can call with a value to be tested against.")
6510 (license (package-license perl))))
6511
6512 (define-public perl-number-format
6513 (package
6514 (name "perl-number-format")
6515 (version "1.75")
6516 (source (origin
6517 (method url-fetch)
6518 (uri (string-append
6519 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
6520 version ".tar.gz"))
6521 (sha256
6522 (base32
6523 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
6524 (build-system perl-build-system)
6525 (home-page "http://search.cpan.org/dist/Number-Format/")
6526 (synopsis "Convert numbers to strings with pretty formatting")
6527 (description "@code{Number::Format} is a library for formatting numbers.
6528 Functions are provided for converting numbers to strings in a variety of ways,
6529 and to convert strings that contain numbers back into numeric form. The
6530 output formats may include thousands separators - characters inserted between
6531 each group of three characters counting right to left from the decimal point.
6532 The characters used for the decimal point and the thousands separator come from
6533 the locale information or can be specified by the user.")
6534 (license perl-license)))
6535
6536 (define-public perl-number-range
6537 (package
6538 (name "perl-number-range")
6539 (version "0.12")
6540 (source
6541 (origin
6542 (method url-fetch)
6543 (uri (string-append
6544 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
6545 version ".tar.gz"))
6546 (sha256
6547 (base32
6548 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
6549 (build-system perl-build-system)
6550 (home-page "http://search.cpan.org/dist/Number-Range/")
6551 (synopsis "Perl extension defining ranges of numbers")
6552 (description "Number::Range is an object-oriented interface to test if a
6553 number exists in a given range, and to be able to manipulate the range.")
6554 (license (package-license perl))))
6555
6556 (define-public perl-object-signature
6557 (package
6558 (name "perl-object-signature")
6559 (version "1.07")
6560 (source
6561 (origin
6562 (method url-fetch)
6563 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6564 "Object-Signature-" version ".tar.gz"))
6565 (sha256
6566 (base32
6567 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
6568 (build-system perl-build-system)
6569 (native-inputs
6570 `(("perl-module-install" ,perl-module-install)))
6571 (home-page "http://search.cpan.org/dist/Object-Signature/")
6572 (synopsis "Generate cryptographic signatures for objects")
6573 (description "Object::Signature is an abstract base class that you can
6574 inherit from in order to allow your objects to generate unique cryptographic
6575 signatures.")
6576 (license (package-license perl))))
6577
6578 (define-public perl-ole-storage-lite
6579 (package
6580 (name "perl-ole-storage-lite")
6581 (version "0.19")
6582 (source
6583 (origin
6584 (method url-fetch)
6585 (uri (string-append
6586 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
6587 version
6588 ".tar.gz"))
6589 (sha256
6590 (base32
6591 "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"))))
6592 (build-system perl-build-system)
6593 (home-page "http://search.cpan.org/dist/OLE-Storage_Lite/")
6594 (synopsis "Read and write OLE storage files")
6595 (description "This module allows you to read and write
6596 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
6597 technology to store hierarchical information such as links to other
6598 documents within a single file.")
6599 (license (package-license perl))))
6600
6601 (define-public perl-package-anon
6602 (package
6603 (name "perl-package-anon")
6604 (version "0.05")
6605 (source
6606 (origin
6607 (method url-fetch)
6608 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
6609 "Package-Anon-" version ".tar.gz"))
6610 (sha256
6611 (base32
6612 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
6613 (build-system perl-build-system)
6614 (propagated-inputs
6615 `(("perl-sub-exporter" ,perl-sub-exporter)
6616 ("perl-params-util" ,perl-params-util)))
6617 (home-page "http://search.cpan.org/dist/Package-Anon/")
6618 (synopsis "Anonymous packages")
6619 (description "This module allows for anonymous packages that are
6620 independent of the main namespace and only available through an object
6621 instance, not by name.")
6622 (license (package-license perl))))
6623
6624 (define-public perl-package-deprecationmanager
6625 (package
6626 (name "perl-package-deprecationmanager")
6627 (version "0.17")
6628 (source
6629 (origin
6630 (method url-fetch)
6631 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6632 "Package-DeprecationManager-" version ".tar.gz"))
6633 (sha256
6634 (base32
6635 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
6636 (build-system perl-build-system)
6637 (native-inputs
6638 `(("perl-test-fatal" ,perl-test-fatal)
6639 ("perl-test-requires" ,perl-test-requires)
6640 ("perl-test-output" ,perl-test-output)))
6641 (propagated-inputs
6642 `(("perl-list-moreutils" ,perl-list-moreutils)
6643 ("perl-params-util" ,perl-params-util)
6644 ("perl-sub-install" ,perl-sub-install)))
6645 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
6646 (home-page "http://search.cpan.org/dist/Package-DeprecationManager/")
6647 (synopsis "Manage deprecation warnings for your distribution")
6648 (description "This module allows you to manage a set of deprecations for
6649 one or more modules.")
6650 (license artistic2.0)))
6651
6652 (define-public perl-package-stash
6653 (package
6654 (name "perl-package-stash")
6655 (version "0.37")
6656 (source
6657 (origin
6658 (method url-fetch)
6659 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6660 "Package-Stash-" version ".tar.gz"))
6661 (sha256
6662 (base32
6663 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
6664 (build-system perl-build-system)
6665 (native-inputs
6666 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6667 ("perl-test-fatal" ,perl-test-fatal)
6668 ("perl-test-requires" ,perl-test-requires)
6669 ("perl-package-anon" ,perl-package-anon)))
6670 (propagated-inputs
6671 `(("perl-module-implementation" ,perl-module-implementation)
6672 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6673 ("perl-package-stash-xs" ,perl-package-stash-xs)))
6674 (home-page "http://search.cpan.org/dist/Package-Stash/")
6675 (synopsis "Routines for manipulating stashes")
6676 (description "Manipulating stashes (Perl's symbol tables) is occasionally
6677 necessary, but incredibly messy, and easy to get wrong. This module hides all
6678 of that behind a simple API.")
6679 (license (package-license perl))))
6680
6681 (define-public perl-package-stash-xs
6682 (package
6683 (name "perl-package-stash-xs")
6684 (version "0.28")
6685 (source
6686 (origin
6687 (method url-fetch)
6688 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6689 "Package-Stash-XS-" version ".tar.gz"))
6690 (sha256
6691 (base32
6692 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
6693 (build-system perl-build-system)
6694 (native-inputs
6695 `(("perl-test-fatal" ,perl-test-fatal)
6696 ("perl-test-requires" ,perl-test-requires)
6697 ("perl-package-anon" ,perl-package-anon)))
6698 (home-page "http://search.cpan.org/dist/Package-Stash-XS/")
6699 (synopsis "Faster implementation of the Package::Stash API")
6700 (description "This is a backend for Package::Stash, which provides the
6701 functionality in a way that's less buggy and much faster. It will be used by
6702 default if it's installed, and should be preferred in all environments with a
6703 compiler.")
6704 (license (package-license perl))))
6705
6706 (define-public perl-padwalker
6707 (package
6708 (name "perl-padwalker")
6709 (version "2.0")
6710 (source
6711 (origin
6712 (method url-fetch)
6713 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
6714 "PadWalker-" version ".tar.gz"))
6715 (sha256
6716 (base32
6717 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
6718 (build-system perl-build-system)
6719 (home-page "http://search.cpan.org/dist/PadWalker/")
6720 (synopsis "Play with other peoples' lexical variables")
6721 (description "PadWalker is a module which allows you to inspect (and even
6722 change) lexical variables in any subroutine which called you. It will only
6723 show those variables which are in scope at the point of the call. PadWalker
6724 is particularly useful for debugging.")
6725 (license (package-license perl))))
6726
6727 (define-public perl-parallel-forkmanager
6728 (package
6729 (name "perl-parallel-forkmanager")
6730 (version "1.19")
6731 (source
6732 (origin
6733 (method url-fetch)
6734 (uri (string-append
6735 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
6736 version
6737 ".tar.gz"))
6738 (sha256
6739 (base32
6740 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
6741 (build-system perl-build-system)
6742 (native-inputs
6743 `(("perl-test-warn" ,perl-test-warn)))
6744 (home-page "http://search.cpan.org/dist/Parallel-ForkManager/")
6745 (synopsis "Simple parallel processing fork manager")
6746 (description "@code{Parallel::ForkManager} is intended for use in
6747 operations that can be done in parallel where the number of
6748 processes to be forked off should be limited.")
6749 (license (package-license perl))))
6750
6751 (define-public perl-params-util
6752 (package
6753 (name "perl-params-util")
6754 (version "1.07")
6755 (source
6756 (origin
6757 (method url-fetch)
6758 (uri (string-append
6759 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
6760 version ".tar.gz"))
6761 (sha256
6762 (base32
6763 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
6764 (build-system perl-build-system)
6765 (home-page "http://search.cpan.org/dist/Params-Util/")
6766 (synopsis "Simple, compact and correct param-checking functions")
6767 (description
6768 "Params::Util provides a basic set of importable functions that makes
6769 checking parameters easier.")
6770 (license (package-license perl))))
6771
6772 (define-public perl-params-validate
6773 (package
6774 (name "perl-params-validate")
6775 (version "1.26")
6776 (source
6777 (origin
6778 (method url-fetch)
6779 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6780 "Params-Validate-" version ".tar.gz"))
6781 (sha256
6782 (base32
6783 "1vbj78qd46ip09i06dsbb62jfwpzp4bg7yi617v98nvim77w66l2"))))
6784 (build-system perl-build-system)
6785 (native-inputs
6786 `(("perl-module-build" ,perl-module-build)
6787 ("perl-test-fatal" ,perl-test-fatal)
6788 ("perl-test-requires" ,perl-test-requires)))
6789 (propagated-inputs
6790 `(("perl-module-implementation" ,perl-module-implementation)))
6791 (home-page "http://search.cpan.org/dist/Params-Validate/")
6792 (synopsis "Validate method/function parameters")
6793 (description "The Params::Validate module allows you to validate method or
6794 function call parameters to an arbitrary level of specificity.")
6795 (license artistic2.0)))
6796
6797 (define-public perl-params-validationcompiler
6798 (package
6799 (name "perl-params-validationcompiler")
6800 (version "0.27")
6801 (source
6802 (origin
6803 (method url-fetch)
6804 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6805 "Params-ValidationCompiler-" version ".tar.gz"))
6806 (sha256
6807 (base32
6808 "1cpr188c2xm0kkmdir6slcsgv7v6ibqff4lax8s0whwx6ml9kaah"))))
6809 (build-system perl-build-system)
6810 (native-inputs
6811 ;; For tests.
6812 `(("perl-test-without-module" ,perl-test-without-module)
6813 ("perl-test2-bundle-extended" ,perl-test2-bundle-extended)
6814 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
6815 ("perl-type-tiny" ,perl-type-tiny)))
6816 (propagated-inputs
6817 `(("perl-eval-closure" ,perl-eval-closure)
6818 ("perl-exception-class" ,perl-exception-class)
6819 ("perl-specio" ,perl-specio)))
6820 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
6821 (synopsis "Build an optimized subroutine parameter validator")
6822 (description "This module creates a customized, highly efficient
6823 parameter checking subroutine. It can handle named or positional
6824 parameters, and can return the parameters as key/value pairs or a list
6825 of values. In addition to type checks, it also supports parameter
6826 defaults, optional parameters, and extra \"slurpy\" parameters.")
6827 (license artistic2.0)))
6828
6829 (define-public perl-par-dist
6830 (package
6831 (name "perl-par-dist")
6832 (version "0.49")
6833 (source
6834 (origin
6835 (method url-fetch)
6836 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6837 "PAR-Dist-" version ".tar.gz"))
6838 (sha256
6839 (base32
6840 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
6841 (build-system perl-build-system)
6842 (home-page "http://search.cpan.org/dist/PAR-Dist/")
6843 (synopsis "Create and manipulate PAR distributions")
6844 (description "PAR::Dist is a toolkit to create and manipulate PAR
6845 distributions.")
6846 (license (package-license perl))))
6847
6848 (define-public perl-parent
6849 (package
6850 (name "perl-parent")
6851 (version "0.228")
6852 (source
6853 (origin
6854 (method url-fetch)
6855 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
6856 "parent-" version ".tar.gz"))
6857 (sha256
6858 (base32
6859 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
6860 (build-system perl-build-system)
6861 (home-page "http://search.cpan.org/dist/parent/")
6862 (synopsis "Establish an ISA relationship with base classes at compile time")
6863 (description "Allows you to both load one or more modules, while setting
6864 up inheritance from those modules at the same time.")
6865 (license (package-license perl))))
6866
6867 (define-public perl-path-class
6868 (package
6869 (name "perl-path-class")
6870 (version "0.37")
6871 (source
6872 (origin
6873 (method url-fetch)
6874 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
6875 "Path-Class-" version ".tar.gz"))
6876 (sha256
6877 (base32
6878 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
6879 (build-system perl-build-system)
6880 (native-inputs `(("perl-module-build" ,perl-module-build)))
6881 (home-page "http://search.cpan.org/dist/Path-Class/")
6882 (synopsis "Path specification manipulation")
6883 (description "Path::Class is a module for manipulation of file and
6884 directory specifications in a cross-platform manner.")
6885 (license (package-license perl))))
6886
6887 (define-public perl-pathtools
6888 (package
6889 (name "perl-pathtools")
6890 (version "3.74")
6891 (source
6892 (origin
6893 (method url-fetch)
6894 (uri (string-append
6895 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
6896 version ".tar.gz"))
6897 (sha256
6898 (base32 "04bfjdvn5p78hirljcinpxv8djcjn8nyg5gcmnmvz8sr9k2lqwi5"))))
6899 (build-system perl-build-system)
6900 (arguments
6901 `(#:phases
6902 (modify-phases %standard-phases
6903 (add-after 'unpack 'patch-pwd-path
6904 (lambda* (#:key inputs #:allow-other-keys)
6905 (substitute* "Cwd.pm"
6906 (("'/bin/pwd'")
6907 (string-append "'" (assoc-ref inputs "coreutils")
6908 "/bin/pwd'"))))))))
6909 (inputs
6910 `(("coreutils" ,coreutils)))
6911 (home-page "http://search.cpan.org/dist/PathTools/")
6912 (synopsis "Tools for working with directory and file names")
6913 (description "This package provides functions to work with directory and
6914 file names.")
6915 (license perl-license)))
6916
6917 (define-public perl-path-tiny
6918 (package
6919 (name "perl-path-tiny")
6920 (version "0.104")
6921 (source (origin
6922 (method url-fetch)
6923 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6924 "Path-Tiny-" version ".tar.gz"))
6925 (sha256
6926 (base32
6927 "1vxaczi44d2acfyyzwa7p6c5gx3rgm6c36zbdl40982axg7iv7y6"))))
6928 (build-system perl-build-system)
6929 (arguments
6930 `(#:tests? #f)) ; Tests require additional test modules to be packaged
6931 ;; (native-inputs
6932 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
6933 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
6934 (inputs
6935 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
6936 (home-page "http://search.cpan.org/dist/Path-Tiny/")
6937 (synopsis "File path utility")
6938 (description "This module provides a small, fast utility for working
6939 with file paths.")
6940 (license asl2.0)))
6941
6942 (define-public perl-perlio-utf8_strict
6943 (package
6944 (name "perl-perlio-utf8-strict")
6945 (version "0.006")
6946 (source (origin
6947 (method url-fetch)
6948 (uri (string-append
6949 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
6950 version ".tar.gz"))
6951 (sha256
6952 (base32
6953 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
6954 (build-system perl-build-system)
6955 (native-inputs
6956 `(("perl-test-exception" ,perl-test-exception)))
6957 (home-page
6958 "http://search.cpan.org/dist/PerlIO-utf8_strict/")
6959 (synopsis "Fast and correct UTF-8 IO")
6960 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
6961 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
6962 for correctness.")
6963 (license (package-license perl))))
6964
6965 (define-public perl-pegex
6966 (package
6967 (name "perl-pegex")
6968 (version "0.64")
6969 (source
6970 (origin
6971 (method url-fetch)
6972 (uri (string-append
6973 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
6974 version ".tar.gz"))
6975 (sha256
6976 (base32
6977 "1kb7y2cc3nibbn8i8y3vrzz1f9h3892nbf8jj88c5fdgpmj05q17"))))
6978 (build-system perl-build-system)
6979 (native-inputs
6980 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
6981 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
6982 (home-page "http://search.cpan.org/dist/Pegex/")
6983 (synopsis "Acmeist PEG Parser Framework")
6984 (description "Pegex is an Acmeist parser framework. It allows you to easily
6985 create parsers that will work equivalently in lots of programming languages.
6986 The inspiration for Pegex comes from the parsing engine upon which the
6987 postmodern programming language Perl 6 is based on. Pegex brings this beauty
6988 to the other justmodern languages that have a normal regular expression engine
6989 available.")
6990 (license (package-license perl))))
6991
6992 (define-public perl-pod-coverage
6993 (package
6994 (name "perl-pod-coverage")
6995 (version "0.23")
6996 (source
6997 (origin
6998 (method url-fetch)
6999 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
7000 "Pod-Coverage-" version ".tar.gz"))
7001 (sha256
7002 (base32
7003 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
7004 (build-system perl-build-system)
7005 (propagated-inputs
7006 `(("perl-devel-symdump" ,perl-devel-symdump)))
7007 (home-page "http://search.cpan.org/dist/Pod-Coverage/")
7008 (synopsis "Check for comprehensive documentation of a module")
7009 (description "This module provides a mechanism for determining if the pod
7010 for a given module is comprehensive.")
7011 (license (package-license perl))))
7012
7013 (define-public perl-pod-simple
7014 (package
7015 (name "perl-pod-simple")
7016 (version "3.35")
7017 (source (origin
7018 (method url-fetch)
7019 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
7020 "Pod-Simple-" version ".tar.gz"))
7021 (sha256
7022 (base32
7023 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
7024 (build-system perl-build-system)
7025 (home-page "http://search.cpan.org/dist/Pod-Simple/")
7026 (synopsis "Parsing library for text in Pod format")
7027 (description "@code{Pod::Simple} is a Perl library for parsing text in
7028 the @dfn{Pod} (plain old documentation) markup language that is typically
7029 used for writing documentation for Perl and for Perl modules.")
7030 (license (package-license perl))))
7031
7032 (define-public perl-posix-strftime-compiler
7033 (package
7034 (name "perl-posix-strftime-compiler")
7035 (version "0.42")
7036 (source
7037 (origin
7038 (method url-fetch)
7039 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
7040 "POSIX-strftime-Compiler-" version ".tar.gz"))
7041 (sha256
7042 (base32
7043 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
7044 (build-system perl-build-system)
7045 (native-inputs `(("perl-module-build" ,perl-module-build)))
7046 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
7047 (home-page "http://search.cpan.org/dist/POSIX-strftime-Compiler/")
7048 (synopsis "GNU C library compatible strftime for loggers and servers")
7049 (description "POSIX::strftime::Compiler provides GNU C library compatible
7050 strftime(3). But this module is not affected by the system locale. This
7051 feature is useful when you want to write loggers, servers, and portable
7052 applications.")
7053 (license (package-license perl))))
7054
7055 (define-public perl-probe-perl
7056 (package
7057 (name "perl-probe-perl")
7058 (version "0.03")
7059 (source (origin
7060 (method url-fetch)
7061 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
7062 "Probe-Perl-" version ".tar.gz"))
7063 (sha256
7064 (base32
7065 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
7066 (build-system perl-build-system)
7067 (synopsis "Information about the currently running perl")
7068 (description
7069 "Probe::Perl provides methods for obtaining information about the
7070 currently running perl interpreter. It originally began life as code in the
7071 Module::Build project, but has been externalized here for general use.")
7072 (home-page (string-append "http://search.cpan.org/~kwilliams//"
7073 "Probe-Perl-" version))
7074 (license (package-license perl))))
7075
7076 (define-public perl-proc-invokeeditor
7077 (package
7078 (name "perl-proc-invokeeditor")
7079 (version "1.13")
7080 (source
7081 (origin
7082 (method url-fetch)
7083 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
7084 version ".tar.gz"))
7085 (sha256
7086 (base32
7087 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
7088 (build-system perl-build-system)
7089 (arguments
7090 `(#:phases
7091 (modify-phases %standard-phases
7092 (add-after 'unpack 'set-EDITOR
7093 (lambda _ (setenv "EDITOR" "echo") #t)))))
7094 (propagated-inputs
7095 `(("perl-carp-assert" ,perl-carp-assert)))
7096 (home-page "http://search.cpan.org/dist/Proc-InvokeEditor/")
7097 (synopsis "Interface to external editor from Perl")
7098 (description "This module provides the ability to supply some text to an
7099 external text editor, have it edited by the user, and retrieve the results.")
7100 (license (package-license perl))))
7101
7102 (define-public perl-readonly
7103 (package
7104 (name "perl-readonly")
7105 (version "2.00")
7106 (source
7107 (origin
7108 (method url-fetch)
7109 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
7110 "Readonly-" version ".tar.gz"))
7111 (sha256
7112 (base32
7113 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
7114 (build-system perl-build-system)
7115 (native-inputs `(("perl-module-build" ,perl-module-build)))
7116 (home-page "http://search.cpan.org/dist/Readonly/")
7117 (synopsis "Create read-only scalars, arrays, hashes")
7118 (description "This module provides a facility for creating non-modifiable
7119 variables in Perl. This is useful for configuration files, headers, etc. It
7120 can also be useful as a development and debugging tool for catching updates to
7121 variables that should not be changed.")
7122 (license (package-license perl))))
7123
7124 (define-public perl-ref-util-xs
7125 (package
7126 (name "perl-ref-util-xs")
7127 (version "0.117")
7128 (source
7129 (origin
7130 (method url-fetch)
7131 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
7132 "Ref-Util-XS-" version ".tar.gz"))
7133 (sha256
7134 (base32
7135 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
7136 (build-system perl-build-system)
7137 (home-page "http://search.cpan.org/dist/Ref-Util-XS/")
7138 (synopsis "XS implementation for Ref::Util")
7139 (description "@code{Ref::Util::XS} is the XS implementation of
7140 @code{Ref::Util}, which provides several functions to help identify references
7141 in a more convenient way than the usual approach of examining the return value
7142 of @code{ref}.")
7143 (license x11)))
7144
7145 (define-public perl-regexp-common
7146 (package
7147 (name "perl-regexp-common")
7148 (version "2017060201")
7149 (source (origin
7150 (method url-fetch)
7151 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
7152 "Regexp-Common-" version ".tar.gz"))
7153 (sha256
7154 (base32
7155 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
7156 (build-system perl-build-system)
7157 (synopsis "Provide commonly requested regular expressions")
7158 (description
7159 "This module exports a single hash (`%RE') that stores or generates
7160 commonly needed regular expressions. Patterns currently provided include:
7161 balanced parentheses and brackets, delimited text (with escapes), integers and
7162 floating-point numbers in any base (up to 36), comments in 44 languages,
7163 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
7164 codes.")
7165 (home-page (string-append "http://search.cpan.org/~abigail//"
7166 "Regexp-Common-" version))
7167 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
7168 (license (list (package-license perl) x11 bsd-3))))
7169
7170 (define-public perl-regexp-util
7171 (package
7172 (name "perl-regexp-util")
7173 (version "0.003")
7174 (source
7175 (origin
7176 (method url-fetch)
7177 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
7178 "Regexp-Util-" version ".tar.gz"))
7179 (sha256
7180 (base32
7181 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
7182 (build-system perl-build-system)
7183 (home-page "http://search.cpan.org/dist/Regexp-Util/")
7184 (synopsis "Selection of general-utility regexp subroutines")
7185 (description "This package provides a selection of regular expression
7186 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
7187 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
7188 and @code{deserialize_regexp}.")
7189 (license (package-license perl))))
7190
7191 (define-public perl-role-tiny
7192 (package
7193 (name "perl-role-tiny")
7194 (version "1.003004")
7195 (source
7196 (origin
7197 (method url-fetch)
7198 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7199 "Role-Tiny-" version ".tar.gz"))
7200 (sha256
7201 (base32
7202 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
7203 (build-system perl-build-system)
7204 (native-inputs
7205 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
7206 ("perl-test-fatal" ,perl-test-fatal)))
7207 (propagated-inputs
7208 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
7209 (home-page "http://search.cpan.org/dist/Role-Tiny/")
7210 (synopsis "Roles, as a slice of Moose")
7211 (description "Role::Tiny is a minimalist role composition tool.")
7212 (license (package-license perl))))
7213
7214 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
7215 (define-public perl-role-tiny-2
7216 (package
7217 (inherit perl-role-tiny)
7218 (version "2.000006")
7219 (source
7220 (origin
7221 (method url-fetch)
7222 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7223 "Role-Tiny-" version ".tar.gz"))
7224 (sha256
7225 (base32
7226 "10p3sc639c0nj56bb77a2wg8samyyl8sqpliv3n8c0jaj2642wyc"))))))
7227
7228 (define-public perl-safe-isa
7229 (package
7230 (name "perl-safe-isa")
7231 (version "1.000010")
7232 (source
7233 (origin
7234 (method url-fetch)
7235 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7236 "Safe-Isa-" version ".tar.gz"))
7237 (sha256
7238 (base32
7239 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
7240 (build-system perl-build-system)
7241 (home-page "http://search.cpan.org/dist/Safe-Isa/")
7242 (synopsis "Call isa, can, does, and DOES safely")
7243 (description "This module allows you to call isa, can, does, and DOES
7244 safely on things that may not be objects.")
7245 (license (package-license perl))))
7246
7247 (define-public perl-scope-guard
7248 (package
7249 (name "perl-scope-guard")
7250 (version "0.21")
7251 (source
7252 (origin
7253 (method url-fetch)
7254 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
7255 "Scope-Guard-" version ".tar.gz"))
7256 (sha256
7257 (base32
7258 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
7259 (build-system perl-build-system)
7260 (home-page "http://search.cpan.org/dist/Scope-Guard/")
7261 (synopsis "Lexically-scoped resource management")
7262 (description "This module provides a convenient way to perform cleanup or
7263 other forms of resource management at the end of a scope. It is particularly
7264 useful when dealing with exceptions: the Scope::Guard constructor takes a
7265 reference to a subroutine that is guaranteed to be called even if the thread
7266 of execution is aborted prematurely. This effectively allows lexically-scoped
7267 \"promises\" to be made that are automatically honoured by perl's garbage
7268 collector.")
7269 (license (package-license perl))))
7270
7271 (define-public perl-set-infinite
7272 (package
7273 (name "perl-set-infinite")
7274 (version "0.65")
7275 (source
7276 (origin
7277 (method url-fetch)
7278 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
7279 "Set-Infinite-" version ".tar.gz"))
7280 (sha256
7281 (base32
7282 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
7283 (build-system perl-build-system)
7284 (home-page "http://search.cpan.org/dist/Set-Infinite/")
7285 (synopsis "Infinite sets")
7286 (description "Set::Infinite is a set theory module for infinite sets.")
7287 (license (package-license perl))))
7288
7289 (define-public perl-set-intspan
7290 (package
7291 (name "perl-set-intspan")
7292 (version "1.19")
7293 (source (origin
7294 (method url-fetch)
7295 (uri (string-append
7296 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
7297 version ".tar.gz"))
7298 (sha256
7299 (base32
7300 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
7301 (build-system perl-build-system)
7302 (home-page "http://search.cpan.org/dist/Set-IntSpan/")
7303 (synopsis "Manage sets of integers")
7304 (description "@code{Set::IntSpan} manages sets of integers. It is
7305 optimized for sets that have long runs of consecutive integers.")
7306 (license perl-license)))
7307
7308 (define-public perl-set-object
7309 (package
7310 (name "perl-set-object")
7311 (version "1.35")
7312 (source
7313 (origin
7314 (method url-fetch)
7315 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
7316 "Set-Object-" version ".tar.gz"))
7317 (sha256
7318 (base32
7319 "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
7320 (build-system perl-build-system)
7321 (propagated-inputs
7322 `(("perl-moose" ,perl-moose)
7323 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7324 (home-page "http://search.cpan.org/dist/Set-Object/")
7325 (synopsis "Unordered collections of Perl Objects")
7326 (description "Set::Object provides efficient sets, unordered collections
7327 of Perl objects without duplicates for scalars and references.")
7328 (license artistic2.0)))
7329
7330 (define-public perl-set-scalar
7331 (package
7332 (name "perl-set-scalar")
7333 (version "1.29")
7334 (source
7335 (origin
7336 (method url-fetch)
7337 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
7338 "Set-Scalar-" version ".tar.gz"))
7339 (sha256
7340 (base32
7341 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
7342 (build-system perl-build-system)
7343 (home-page "http://search.cpan.org/dist/Set-Scalar/")
7344 (synopsis "Set operations for Perl")
7345 (description "The first priority of Set::Scalar is to be a convenient
7346 interface to sets (as in: unordered collections of Perl scalars). While not
7347 designed to be slow or big, neither has it been designed to be fast or
7348 compact.")
7349 (license (package-license perl))))
7350
7351 (define-public perl-sort-key
7352 (package
7353 (name "perl-sort-key")
7354 (version "1.33")
7355 (source
7356 (origin
7357 (method url-fetch)
7358 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
7359 version ".tar.gz"))
7360 (sha256
7361 (base32
7362 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
7363 (build-system perl-build-system)
7364 (home-page "http://search.cpan.org/dist/Sort-Key/")
7365 (synopsis "Sort arrays by one or multiple calculated keys")
7366 (description "This Perl module provides various functions to quickly sort
7367 arrays by one or multiple calculated keys.")
7368 (license (package-license perl))))
7369
7370 (define-public perl-sort-naturally
7371 (package
7372 (name "perl-sort-naturally")
7373 (version "1.03")
7374 (source
7375 (origin
7376 (method url-fetch)
7377 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
7378 version ".tar.gz"))
7379 (sha256
7380 (base32
7381 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
7382 (build-system perl-build-system)
7383 (home-page "http://search.cpan.org/dist/Sort-Naturally/")
7384 (synopsis "Sort lexically, but sort numeral parts numerically")
7385 (description "This module exports two functions, @code{nsort} and
7386 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
7387 Under natural sorting, numeric substrings are compared numerically, and other
7388 word-characters are compared lexically.")
7389 (license (package-license perl))))
7390
7391 (define-public perl-specio
7392 (package
7393 (name "perl-specio")
7394 (version "0.38")
7395 (source
7396 (origin
7397 (method url-fetch)
7398 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7399 "Specio-" version ".tar.gz"))
7400 (sha256
7401 (base32
7402 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
7403 (build-system perl-build-system)
7404 (propagated-inputs
7405 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
7406 ("perl-eval-closure" ,perl-eval-closure)
7407 ("perl-module-runtime" ,perl-module-runtime)
7408 ("perl-mro-compat" ,perl-mro-compat)
7409 ("perl-role-tiny" ,perl-role-tiny)
7410 ("perl-test-fatal" ,perl-test-fatal)
7411 ("perl-test-needs" ,perl-test-needs)))
7412 (home-page "http://search.cpan.org/dist/Specio//")
7413 (synopsis "Classes for representing type constraints and coercion")
7414 (description "The Specio distribution provides classes for representing type
7415 constraints and coercion, along with syntax sugar for declaring them. Note that
7416 this is not a proper type system for Perl. Nothing in this distribution will
7417 magically make the Perl interpreter start checking a value's type on assignment
7418 to a variable. In fact, there's no built-in way to apply a type to a variable at
7419 all. Instead, you can explicitly check a value against a type, and optionally
7420 coerce values to that type.")
7421 (license artistic2.0)))
7422
7423 (define-public perl-spiffy
7424 (package
7425 (name "perl-spiffy")
7426 (version "0.46")
7427 (source
7428 (origin
7429 (method url-fetch)
7430 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7431 "Spiffy-" version ".tar.gz"))
7432 (sha256
7433 (base32
7434 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
7435 (build-system perl-build-system)
7436 (home-page "http://search.cpan.org/dist/Spiffy/")
7437 (synopsis "Spiffy Perl Interface Framework For You")
7438 (description "Spiffy is a framework and methodology for doing object
7439 oriented (OO) programming in Perl. Spiffy combines the best parts of
7440 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
7441 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
7442 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
7443 other OO languages like Python, Ruby, Java and Perl 6.")
7444 (license (package-license perl))))
7445
7446 (define-public perl-statistics-basic
7447 (package
7448 (name "perl-statistics-basic")
7449 (version "1.6611")
7450 (source (origin
7451 (method url-fetch)
7452 (uri (string-append
7453 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
7454 version ".tar.gz"))
7455 (sha256
7456 (base32
7457 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
7458 (build-system perl-build-system)
7459 (inputs
7460 `(("perl-number-format" ,perl-number-format)))
7461 (home-page "http://search.cpan.org/dist/Statistics-Basic/")
7462 (synopsis "Collection of very basic statistics modules")
7463 (description "This package provides basic statistics functions like
7464 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
7465 (license lgpl2.0)))
7466
7467 (define-public perl-stream-buffered
7468 (package
7469 (name "perl-stream-buffered")
7470 (version "0.03")
7471 (source
7472 (origin
7473 (method url-fetch)
7474 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
7475 "Stream-Buffered-" version ".tar.gz"))
7476 (sha256
7477 (base32
7478 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
7479 (build-system perl-build-system)
7480 (home-page "http://search.cpan.org/dist/Stream-Buffered/")
7481 (synopsis "Temporary buffer to save bytes")
7482 (description "Stream::Buffered is a buffer class to store arbitrary length
7483 of byte strings and then get a seekable filehandle once everything is
7484 buffered. It uses PerlIO and/or temporary file to save the buffer depending
7485 on the length of the size.")
7486 (license (package-license perl))))
7487
7488 (define-public perl-strictures
7489 (package
7490 (name "perl-strictures")
7491 (version "1.005005")
7492 (source
7493 (origin
7494 (method url-fetch)
7495 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7496 "strictures-" version ".tar.gz"))
7497 (sha256
7498 (base32
7499 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
7500 (build-system perl-build-system)
7501 (home-page "http://search.cpan.org/dist/strictures/")
7502 (synopsis "Turn on strict and make all warnings fatal")
7503 (description "Strictures turns on strict and make all warnings fatal when
7504 run from within a source-controlled directory.")
7505 (license (package-license perl))))
7506
7507 ;; Some packages don't yet work with this newer version of ‘strictures’.
7508 (define-public perl-strictures-2
7509 (package
7510 (inherit perl-strictures)
7511 (version "2.000004")
7512 (source
7513 (origin
7514 (method url-fetch)
7515 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7516 "strictures-" version ".tar.gz"))
7517 (sha256
7518 (base32
7519 "0lzp0q6kwk6vgf7zdlvy9zz28fj6n1b776irm556c7gylcq29113"))))))
7520
7521 (define-public perl-string-camelcase
7522 (package
7523 (name "perl-string-camelcase")
7524 (version "0.02")
7525 (source
7526 (origin
7527 (method url-fetch)
7528 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
7529 "String-CamelCase-" version ".tar.gz"))
7530 (sha256
7531 (base32
7532 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
7533 (build-system perl-build-system)
7534 (arguments
7535 `(#:phases
7536 (modify-phases %standard-phases
7537 (add-before 'configure 'set-perl-search-path
7538 (lambda _
7539 ;; Work around "dotless @INC" build failure.
7540 (setenv "PERL5LIB"
7541 (string-append (getcwd) ":"
7542 (getenv "PERL5LIB")))
7543 #t)))))
7544 (home-page "http://search.cpan.org/dist/String-CamelCase/")
7545 (synopsis "Camelcase and de-camelcase")
7546 (description "This module may be used to convert from under_score text to
7547 CamelCase and back again.")
7548 (license (package-license perl))))
7549
7550 (define-public perl-string-escape
7551 (package
7552 (name "perl-string-escape")
7553 (version "2010.002")
7554 (source
7555 (origin
7556 (method url-fetch)
7557 (uri (string-append
7558 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
7559 version ".tar.gz"))
7560 (sha256
7561 (base32
7562 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
7563 (build-system perl-build-system)
7564 (home-page "http://search.cpan.org/dist/String-Escape/")
7565 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
7566 (description "This module provides a flexible calling interface to some
7567 frequently-performed string conversion functions, including applying and
7568 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
7569 removing double-quotes, and truncating to fit within a desired length.")
7570 (license (package-license perl))))
7571
7572 (define-public perl-string-rewriteprefix
7573 (package
7574 (name "perl-string-rewriteprefix")
7575 (version "0.007")
7576 (source
7577 (origin
7578 (method url-fetch)
7579 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7580 "String-RewritePrefix-" version ".tar.gz"))
7581 (sha256
7582 (base32
7583 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
7584 (build-system perl-build-system)
7585 (propagated-inputs
7586 `(("perl-sub-exporter" ,perl-sub-exporter)))
7587 (home-page "http://search.cpan.org/dist/String-RewritePrefix/")
7588 (synopsis "Rewrite strings based on a set of known prefixes")
7589 (description "This module allows you to rewrite strings based on a set of
7590 known prefixes.")
7591 (license (package-license perl))))
7592
7593 (define-public perl-string-print
7594 (package
7595 (name "perl-string-print")
7596 (version "0.15")
7597 (source (origin
7598 (method url-fetch)
7599 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
7600 "String-Print-" version ".tar.gz"))
7601 (sha256
7602 (base32
7603 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
7604 (build-system perl-build-system)
7605 (propagated-inputs
7606 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7607 (home-page "http://search.cpan.org/dist/String-Print/")
7608 (synopsis "String printing alternatives to printf")
7609 (description
7610 "This module inserts values into (translated) strings. It provides
7611 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
7612 a functional interface.")
7613 (license (package-license perl))))
7614
7615 (define-public perl-sub-exporter
7616 (package
7617 (name "perl-sub-exporter")
7618 (version "0.987")
7619 (source
7620 (origin
7621 (method url-fetch)
7622 (uri (string-append
7623 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
7624 version ".tar.gz"))
7625 (sha256
7626 (base32
7627 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
7628 (build-system perl-build-system)
7629 (propagated-inputs
7630 `(("perl-data-optlist" ,perl-data-optlist)
7631 ("perl-params-util" ,perl-params-util)))
7632 (home-page "http://search.cpan.org/dist/Sub-Exporter/")
7633 (synopsis "Sophisticated exporter for custom-built routines")
7634 (description
7635 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
7636 custom-built routines.")
7637 (license (package-license perl))))
7638
7639 (define-public perl-sub-exporter-progressive
7640 (package
7641 (name "perl-sub-exporter-progressive")
7642 (version "0.001013")
7643 (source
7644 (origin
7645 (method url-fetch)
7646 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
7647 "Sub-Exporter-Progressive-" version ".tar.gz"))
7648 (sha256
7649 (base32
7650 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
7651 (build-system perl-build-system)
7652 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
7653 (home-page "http://search.cpan.org/dist/Sub-Exporter-Progressive/")
7654 (synopsis "Only use Sub::Exporter if you need it")
7655 (description "Sub::Exporter is an incredibly powerful module, but with
7656 that power comes great responsibility, as well as some runtime penalties.
7657 This module is a \"Sub::Exporter\" wrapper that will let your users just use
7658 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
7659 if your users try to use \"Sub::Exporter\"'s more advanced features, like
7660 renaming exports, if they try to use them.")
7661 (license (package-license perl))))
7662
7663 (define-public perl-sub-identify
7664 (package
7665 (name "perl-sub-identify")
7666 (version "0.10")
7667 (source
7668 (origin
7669 (method url-fetch)
7670 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
7671 "Sub-Identify-" version ".tar.gz"))
7672 (sha256
7673 (base32
7674 "087fjcg6w576w47i1slj6mjfd3gl1b0airgddmn3prn0nff6nn2m"))))
7675 (build-system perl-build-system)
7676 (home-page "http://search.cpan.org/dist/Sub-Identify/")
7677 (synopsis "Retrieve names of code references")
7678 (description "Sub::Identify allows you to retrieve the real name of code
7679 references.")
7680 (license (package-license perl))))
7681
7682 (define-public perl-sub-info
7683 (package
7684 (name "perl-sub-info")
7685 (version "0.002")
7686 (source
7687 (origin
7688 (method url-fetch)
7689 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
7690 version ".tar.gz"))
7691 (sha256
7692 (base32
7693 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
7694 (build-system perl-build-system)
7695 (propagated-inputs
7696 `(("perl-importer" ,perl-importer)))
7697 (home-page "http://search.cpan.org/dist/Sub-Info//")
7698 (synopsis "Tool to inspect subroutines")
7699 (description "This package provides tools for inspecting subroutines
7700 in Perl.")
7701 (license (package-license perl))))
7702
7703 (define-public perl-sub-install
7704 (package
7705 (name "perl-sub-install")
7706 (version "0.928")
7707 (source
7708 (origin
7709 (method url-fetch)
7710 (uri (string-append
7711 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
7712 version ".tar.gz"))
7713 (sha256
7714 (base32
7715 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
7716 (build-system perl-build-system)
7717 (home-page "http://search.cpan.org/dist/Sub-Install/")
7718 (synopsis "Install subroutines into packages easily")
7719 (description
7720 "Sub::Install makes it easy to install subroutines into packages without
7721 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
7722 can see them.")
7723 (license (package-license perl))))
7724
7725 (define-public perl-sub-name
7726 (package
7727 (name "perl-sub-name")
7728 (version "0.21")
7729 (source
7730 (origin
7731 (method url-fetch)
7732 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7733 "Sub-Name-" version ".tar.gz"))
7734 (sha256
7735 (base32
7736 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
7737 (build-system perl-build-system)
7738 (native-inputs
7739 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
7740 (home-page "http://search.cpan.org/dist/Sub-Name/")
7741 (synopsis "(Re)name a sub")
7742 (description "Assigns a new name to referenced sub. If package
7743 specification is omitted in the name, then the current package is used. The
7744 return value is the sub.")
7745 (license (package-license perl))))
7746
7747 (define-public perl-sub-quote
7748 (package
7749 (name "perl-sub-quote")
7750 (version "2.005001")
7751 (source
7752 (origin
7753 (method url-fetch)
7754 (uri (string-append
7755 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
7756 version ".tar.gz"))
7757 (sha256
7758 (base32
7759 "01xsvfdpxzimsbrp9mqipsr93y83nhj21q05g8v1bw6yfl3lzayn"))))
7760 (build-system perl-build-system)
7761 (native-inputs
7762 `(("perl-test-fatal" ,perl-test-fatal)))
7763 (propagated-inputs
7764 `(("perl-sub-name" ,perl-sub-name)))
7765 (home-page "http://search.cpan.org/dist/Sub-Quote/")
7766 (synopsis "Efficient generation of subroutines via string eval")
7767 (description "Sub::Quote provides an efficient generation of subroutines
7768 via string eval.")
7769 (license (package-license perl))))
7770
7771 (define-public perl-sub-uplevel
7772 (package
7773 (name "perl-sub-uplevel")
7774 (version "0.24")
7775 (source
7776 (origin
7777 (method url-fetch)
7778 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7779 "Sub-Uplevel-" version ".tar.gz"))
7780 (sha256
7781 (base32
7782 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
7783 (build-system perl-build-system)
7784 (home-page "http://search.cpan.org/dist/Sub-Uplevel/")
7785 (synopsis "Apparently run a function in a higher stack frame")
7786 (description "Like Tcl's uplevel() function, but not quite so dangerous.
7787 The idea is just to fool caller(). All the really naughty bits of Tcl's
7788 uplevel() are avoided.")
7789 (license (package-license perl))))
7790
7791 (define-public perl-super
7792 (package
7793 (name "perl-super")
7794 (version "1.20141117")
7795 (source
7796 (origin
7797 (method url-fetch)
7798 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
7799 "SUPER-" version ".tar.gz"))
7800 (sha256
7801 (base32 "1cn05kacg0xfbm1zzksm2yx2pnrzqja4d9163cxv3sdfc1yhwqhs"))))
7802 (build-system perl-build-system)
7803 (native-inputs
7804 `(("perl-module-build" ,perl-module-build)))
7805 (propagated-inputs
7806 `(("perl-sub-identify" ,perl-sub-identify)))
7807 (home-page "http://search.cpan.org/dist/SUPER/")
7808 (synopsis "Control superclass method dispatching")
7809 (description
7810 "When subclassing a class, you may occasionally want to dispatch control to
7811 the superclass---at least conditionally and temporarily. This module provides
7812 nicer equivalents to the native Perl syntax for calling superclasses, along with
7813 a universal @code{super} method to determine a class' own superclass, and better
7814 support for run-time mix-ins and roles.")
7815 (license perl-license)))
7816
7817 (define-public perl-svg
7818 (package
7819 (name "perl-svg")
7820 (version "2.63")
7821 (source
7822 (origin
7823 (method url-fetch)
7824 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
7825 version ".tar.gz"))
7826 (sha256
7827 (base32
7828 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
7829 (build-system perl-build-system)
7830 (home-page "http://search.cpan.org/dist/SVG/")
7831 (synopsis "Perl extension for generating SVG documents")
7832 (description "SVG is a Perl module which generates a nested data structure
7833 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
7834 Using SVG, you can generate SVG objects, embed other SVG instances into it,
7835 access the DOM object, create and access Javascript, and generate SMIL
7836 animation content.")
7837 (license (package-license perl))))
7838
7839 (define-public perl-switch
7840 (package
7841 (name "perl-switch")
7842 (version "2.17")
7843 (source
7844 (origin
7845 (method url-fetch)
7846 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
7847 version ".tar.gz"))
7848 (sha256
7849 (base32
7850 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
7851 (build-system perl-build-system)
7852 (home-page "http://search.cpan.org/dist/Switch/")
7853 (synopsis "Switch statement for Perl")
7854 (description "Switch is a Perl module which implements a generalized case
7855 mechanism. The module augments the standard Perl syntax with two new
7856 statements: @code{switch} and @code{case}.")
7857 (license (package-license perl))))
7858
7859 (define-public perl-sys-cpu
7860 (package
7861 (name "perl-sys-cpu")
7862 (version "0.61")
7863 (source (origin
7864 (method url-fetch)
7865 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
7866 "Sys-CPU-" version ".tar.gz"))
7867 (sha256
7868 (base32
7869 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
7870 (modules '((guix build utils)))
7871 (snippet
7872 '(begin
7873 ;; The contents of /proc/cpuinfo can differ and confuse the
7874 ;; cpu_clock and cpu_type methods, so we replace the test
7875 ;; with one that marks cpu_clock and cpu_type as TODO.
7876 ;; Borrowed from Debian.
7877 (call-with-output-file "t/Sys-CPU.t"
7878 (lambda (port)
7879 (format port "#!/usr/bin/perl
7880
7881 use Test::More tests => 4;
7882
7883 BEGIN { use_ok('Sys::CPU'); }
7884
7885 $number = &Sys::CPU::cpu_count();
7886 ok( defined($number), \"CPU Count: $number\" );
7887
7888 TODO: {
7889 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
7890 $speed = &Sys::CPU::cpu_clock();
7891 ok( defined($speed), \"CPU Speed: $speed\" );
7892 }
7893
7894 TODO: {
7895 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
7896 $type = &Sys::CPU::cpu_type();
7897 ok( defined($type), \"CPU Type: $type\" );
7898 }~%")))
7899 #t))))
7900 (build-system perl-build-system)
7901 (synopsis "Perl extension for getting CPU information")
7902 (description
7903 "Sys::CPU is a module for counting the number of CPUs on a system, and
7904 determining their type and clock speed.")
7905 (home-page (string-append "http://search.cpan.org/~mzsanford//"
7906 "Sys-CPU-" version))
7907 (license (package-license perl))))
7908
7909 (define-public perl-sys-hostname-long
7910 (package
7911 (name "perl-sys-hostname-long")
7912 (version "1.5")
7913 (source
7914 (origin
7915 (method url-fetch)
7916 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
7917 "Sys-Hostname-Long-" version ".tar.gz"))
7918 (sha256
7919 (base32
7920 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
7921 (build-system perl-build-system)
7922 (arguments `(#:tests? #f)) ;no `hostname' during build
7923 (home-page "http://search.cpan.org/dist/Sys-Hostname-Long/")
7924 (synopsis "Get full hostname in Perl")
7925 (description "Sys::Hostname::Long tries very hard to get the full hostname
7926 of a system.")
7927 (license (package-license perl))))
7928
7929 (define-public perl-task-weaken
7930 (package
7931 (name "perl-task-weaken")
7932 (version "1.06")
7933 (source
7934 (origin
7935 (method url-fetch)
7936 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7937 "Task-Weaken-" version ".tar.gz"))
7938 (sha256
7939 (base32
7940 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
7941 (build-system perl-build-system)
7942 (arguments
7943 '(#:phases (modify-phases %standard-phases
7944 (add-before 'configure 'set-search-path
7945 (lambda _
7946 ;; Work around "dotless @INC" build failure.
7947 (setenv "PERL5LIB"
7948 (string-append (getcwd) ":"
7949 (getenv "PERL5LIB")))
7950 #t)))))
7951 (home-page "http://search.cpan.org/dist/Task-Weaken/")
7952 (synopsis "Ensure that a platform has weaken support")
7953 (description "One recurring problem in modules that use Scalar::Util's
7954 weaken function is that it is not present in the pure-perl variant. If
7955 Scalar::Util is not available at all, it will issue a normal dependency on the
7956 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
7957 module does not have weaken, the install will bail out altogether with a long
7958 error encouraging the user to seek support.")
7959 (license (package-license perl))))
7960
7961 (define-public perl-template-toolkit
7962 (package
7963 (name "perl-template-toolkit")
7964 (version "2.26")
7965 (source
7966 (origin
7967 (method url-fetch)
7968 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
7969 "Template-Toolkit-" version ".tar.gz"))
7970 (sha256
7971 (base32
7972 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
7973 (build-system perl-build-system)
7974 (propagated-inputs
7975 `(("perl-appconfig" ,perl-appconfig)
7976 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7977 (home-page "http://search.cpan.org/dist/Template-Toolkit/")
7978 (synopsis "Template processing system for Perl")
7979 (description "The Template Toolkit is a collection of modules which
7980 implement an extensible template processing system. It was originally
7981 designed and remains primarily useful for generating dynamic web content, but
7982 it can be used equally well for processing any other kind of text based
7983 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
7984 (license (package-license perl))))
7985
7986 (define-public perl-template-timer
7987 (package
7988 (name "perl-template-timer")
7989 (version "1.00")
7990 (source
7991 (origin
7992 (method url-fetch)
7993 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
7994 "Template-Timer-" version ".tar.gz"))
7995 (sha256
7996 (base32
7997 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
7998 (build-system perl-build-system)
7999 (propagated-inputs
8000 `(("perl-template-toolkit" ,perl-template-toolkit)))
8001 (home-page "http://search.cpan.org/dist/Template-Timer/")
8002 (synopsis "Profiling for Template Toolkit")
8003 (description "Template::Timer provides inline profiling of the template
8004 processing in Perl code.")
8005 (license (list gpl3 artistic2.0))))
8006
8007 (define-public perl-term-encoding
8008 (package
8009 (name "perl-term-encoding")
8010 (version "0.02")
8011 (source
8012 (origin
8013 (method url-fetch)
8014 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
8015 "Term-Encoding-" version ".tar.gz"))
8016 (sha256
8017 (base32
8018 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
8019 (build-system perl-build-system)
8020 (native-inputs
8021 `(("perl-module-install" ,perl-module-install)))
8022 (home-page "http://search.cpan.org/dist/Term-Encoding/")
8023 (synopsis "Detect encoding of the current terminal")
8024 (description "Term::Encoding is a simple module to detect the encoding of
8025 the current terminal expects in various ways.")
8026 (license (package-license perl))))
8027
8028 (define-public perl-term-progressbar
8029 (package
8030 (name "perl-term-progressbar")
8031 (version "2.17")
8032 (source
8033 (origin
8034 (method url-fetch)
8035 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
8036 "Term-ProgressBar-" version ".tar.gz"))
8037 (sha256
8038 (base32
8039 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
8040 (build-system perl-build-system)
8041 (native-inputs
8042 `(("perl-capture-tiny" ,perl-capture-tiny)
8043 ("perl-test-exception" ,perl-test-exception)))
8044 (propagated-inputs
8045 `(("perl-class-methodmaker" ,perl-class-methodmaker)
8046 ("perl-term-readkey" ,perl-term-readkey)))
8047 (home-page "http://search.cpan.org/dist/Term-ProgressBar/")
8048 (synopsis "Progress meter on a standard terminal")
8049 (description "Term::ProgressBar provides a simple progress bar on the
8050 terminal, to let the user know that something is happening, roughly how much
8051 stuff has been done, and maybe an estimate at how long remains.")
8052 (license (package-license perl))))
8053
8054 (define-public perl-term-progressbar-quiet
8055 (package
8056 (name "perl-term-progressbar-quiet")
8057 (version "0.31")
8058 (source
8059 (origin
8060 (method url-fetch)
8061 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
8062 "Term-ProgressBar-Quiet-" version ".tar.gz"))
8063 (sha256
8064 (base32
8065 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
8066 (build-system perl-build-system)
8067 (propagated-inputs
8068 `(("perl-io-interactive" ,perl-io-interactive)
8069 ("perl-term-progressbar" ,perl-term-progressbar)
8070 ("perl-test-mockobject" ,perl-test-mockobject)))
8071 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Quiet/")
8072 (synopsis "Progress meter if run interactively")
8073 (description "Term::ProgressBar is a wonderful module for showing progress
8074 bars on the terminal. This module acts very much like that module when it is
8075 run interactively. However, when it is not run interactively (for example, as
8076 a cron job) then it does not show the progress bar.")
8077 (license (package-license perl))))
8078
8079 (define-public perl-term-progressbar-simple
8080 (package
8081 (name "perl-term-progressbar-simple")
8082 (version "0.03")
8083 (source
8084 (origin
8085 (method url-fetch)
8086 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
8087 "Term-ProgressBar-Simple-" version ".tar.gz"))
8088 (sha256
8089 (base32
8090 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
8091 (build-system perl-build-system)
8092 (propagated-inputs
8093 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
8094 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Simple/")
8095 (synopsis "Simple progress bars")
8096 (description "Term::ProgressBar::Simple tells you how much work has been
8097 done, how much is left to do, and estimate how long it will take.")
8098 (license (package-license perl))))
8099
8100 (define-public perl-term-readkey
8101 (package
8102 (name "perl-term-readkey")
8103 (version "2.37")
8104 (source
8105 (origin
8106 (method url-fetch)
8107 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
8108 "TermReadKey-" version ".tar.gz"))
8109 (sha256
8110 (base32
8111 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
8112 (build-system perl-build-system)
8113 (home-page "http://search.cpan.org/dist/TermReadKey/")
8114 (synopsis "Simple terminal control")
8115 (description "This module, ReadKey, provides ioctl control for terminals
8116 so the input modes can be changed (thus allowing reads of a single character
8117 at a time), and also provides non-blocking reads of stdin, as well as several
8118 other terminal related features, including retrieval/modification of the
8119 screen size, and retrieval/modification of the control characters.")
8120 (license (package-license perl))))
8121
8122 (define-public perl-term-size-any
8123 (package
8124 (name "perl-term-size-any")
8125 (version "0.002")
8126 (source
8127 (origin
8128 (method url-fetch)
8129 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8130 "Term-Size-Any-" version ".tar.gz"))
8131 (sha256
8132 (base32
8133 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
8134 (build-system perl-build-system)
8135 (native-inputs
8136 `(("perl-devel-hide" ,perl-devel-hide)))
8137 (propagated-inputs
8138 `(("perl-term-size-perl" ,perl-term-size-perl)))
8139 (home-page "http://search.cpan.org/dist/Term-Size-Any/")
8140 (synopsis "Retrieve terminal size")
8141 (description "This is a unified interface to retrieve terminal size. It
8142 loads one module of a list of known alternatives, each implementing some way
8143 to get the desired terminal information. This loaded module will actually do
8144 the job on behalf of @code{Term::Size::Any}.")
8145 (license (package-license perl))))
8146
8147 (define-public perl-term-size-perl
8148 (package
8149 (name "perl-term-size-perl")
8150 (version "0.029")
8151 (source
8152 (origin
8153 (method url-fetch)
8154 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8155 "Term-Size-Perl-" version ".tar.gz"))
8156 (sha256
8157 (base32
8158 "1rvm91bhdlxfwx5zka023p7szf2s7gm16wl27qiivvj66svsl6lc"))))
8159 (build-system perl-build-system)
8160 (home-page "http://search.cpan.org/dist/Term-Size-Perl/")
8161 (synopsis "Perl extension for retrieving terminal size (Perl version)")
8162 (description "This is yet another implementation of @code{Term::Size}.
8163 Now in pure Perl, with the exception of a C probe run at build time.")
8164 (license (package-license perl))))
8165
8166 (define-public perl-term-table
8167 (package
8168 (name "perl-term-table")
8169 (version "0.008")
8170 (source
8171 (origin
8172 (method url-fetch)
8173 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
8174 version ".tar.gz"))
8175 (sha256
8176 (base32
8177 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
8178 (build-system perl-build-system)
8179 (propagated-inputs
8180 `(("perl-importer" ,perl-importer)))
8181 (home-page "http://search.cpan.org/dist/Term-Table//")
8182 (synopsis "Format a header and rows into a table")
8183 (description "This module is able to generically format rows of data
8184 into tables.")
8185 (license (package-license perl))))
8186
8187 (define-public perl-text-aligner
8188 (package
8189 (name "perl-text-aligner")
8190 (version "0.12")
8191 (source
8192 (origin
8193 (method url-fetch)
8194 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8195 "Text-Aligner-" version ".tar.gz"))
8196 (sha256
8197 (base32
8198 "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
8199 (build-system perl-build-system)
8200 (native-inputs `(("perl-module-build" ,perl-module-build)))
8201 (home-page "http://search.cpan.org/dist/Text-Aligner/")
8202 (synopsis "Align text")
8203 (description "Text::Aligner exports a single function, align(), which is
8204 used to justify strings to various alignment styles.")
8205 (license x11)))
8206
8207 (define-public perl-text-balanced
8208 (package
8209 (name "perl-text-balanced")
8210 (version "2.03")
8211 (source
8212 (origin
8213 (method url-fetch)
8214 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
8215 "Text-Balanced-" version ".tar.gz"))
8216 (sha256
8217 (base32
8218 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
8219 (build-system perl-build-system)
8220 (home-page "http://search.cpan.org/dist/Text-Balanced/")
8221 (synopsis "Extract delimited text sequences from strings")
8222 (description "The Text::Balanced module can be used to extract delimited
8223 text sequences from strings.")
8224 (license (package-license perl))))
8225
8226 (define-public perl-text-csv
8227 (package
8228 (name "perl-text-csv")
8229 (version "1.33")
8230 (source
8231 (origin
8232 (method url-fetch)
8233 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
8234 "Text-CSV-" version ".tar.gz"))
8235 (sha256
8236 (base32
8237 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
8238 (build-system perl-build-system)
8239 (home-page "http://search.cpan.org/dist/Text-CSV/")
8240 (synopsis "Manipulate comma-separated values")
8241 (description "Text::CSV provides facilities for the composition and
8242 decomposition of comma-separated values. An instance of the Text::CSV class
8243 can combine fields into a CSV string and parse a CSV string into fields.")
8244 (license (package-license perl))))
8245
8246 (define-public perl-text-csv-xs
8247 (package
8248 (name "perl-text-csv-xs")
8249 (version "1.25")
8250 (source
8251 (origin
8252 (method url-fetch)
8253 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
8254 "Text-CSV_XS-" version ".tgz"))
8255 (sha256
8256 (base32
8257 "06zlfbqrwbl0g2g3bhk6046yy5pf2rz80fzcp8aj47rnswz2yx5k"))))
8258 (build-system perl-build-system)
8259 (home-page "http://search.cpan.org/dist/Text-CSV_XS/")
8260 (synopsis "Rountines for manipulating CSV files")
8261 (description "@code{Text::CSV_XS} provides facilities for the composition
8262 and decomposition of comma-separated values. An instance of the
8263 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
8264 CSV string into fields. The module accepts either strings or files as input
8265 and support the use of user-specified characters for delimiters, separators,
8266 and escapes.")
8267 (license (package-license perl))))
8268
8269 (define-public perl-text-diff
8270 (package
8271 (name "perl-text-diff")
8272 (version "1.45")
8273 (source
8274 (origin
8275 (method url-fetch)
8276 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8277 "Text-Diff-" version ".tar.gz"))
8278 (sha256
8279 (base32
8280 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
8281 (build-system perl-build-system)
8282 (propagated-inputs
8283 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
8284 (home-page "http://search.cpan.org/dist/Text-Diff/")
8285 (synopsis "Perform diffs on files and record sets")
8286 (description "Text::Diff provides a basic set of services akin to the GNU
8287 diff utility. It is not anywhere near as feature complete as GNU diff, but it
8288 is better integrated with Perl and available on all platforms. It is often
8289 faster than shelling out to a system's diff executable for small files, and
8290 generally slower on larger files.")
8291 (license (package-license perl))))
8292
8293 (define-public perl-text-format
8294 (package
8295 (name "perl-text-format")
8296 (version "0.61")
8297 (source (origin
8298 (method url-fetch)
8299 (uri (string-append
8300 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
8301 version ".tar.gz"))
8302 (sha256
8303 (base32
8304 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
8305 (build-system perl-build-system)
8306 (native-inputs
8307 `(("perl-module-build" ,perl-module-build)
8308 ("perl-test-pod" ,perl-test-pod)
8309 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8310 (home-page "http://search.cpan.org/dist/Text-Format/")
8311 (synopsis "Various subroutines to format text")
8312 (description "This package provides functions to format text in various
8313 ways like centering, paragraphing, and converting tabs to spaces and spaces
8314 to tabs.")
8315 (license perl-license)))
8316
8317 (define-public perl-text-glob
8318 (package
8319 (name "perl-text-glob")
8320 (version "0.11")
8321 (source
8322 (origin
8323 (method url-fetch)
8324 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8325 "Text-Glob-" version ".tar.gz"))
8326 (sha256
8327 (base32
8328 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
8329 (build-system perl-build-system)
8330 (native-inputs `(("perl-module-build" ,perl-module-build)))
8331 (home-page "http://search.cpan.org/dist/Text-Glob/")
8332 (synopsis "Match globbing patterns against text")
8333 (description "Text::Glob implements glob(3) style matching that can be
8334 used to match against text, rather than fetching names from a file system. If
8335 you want to do full file globbing use the File::Glob module instead.")
8336 (license (package-license perl))))
8337
8338 (define-public perl-text-neattemplate
8339 (package
8340 (name "perl-text-neattemplate")
8341 (version "0.1101")
8342 (source
8343 (origin
8344 (method url-fetch)
8345 (uri (string-append
8346 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
8347 "Text-NeatTemplate-" version ".tar.gz"))
8348 (sha256
8349 (base32
8350 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
8351 (build-system perl-build-system)
8352 (native-inputs
8353 `(("perl-module-build" ,perl-module-build)))
8354 (home-page
8355 "http://search.cpan.org/dist/Text-NeatTemplate/")
8356 (synopsis "Fast, middleweight template engine")
8357 (description
8358 "Text::NeatTemplate provides a simple, middleweight but fast
8359 template engine, for when you need speed rather than complex features,
8360 yet need more features than simple variable substitution.")
8361 (license (package-license perl))))
8362
8363 (define-public perl-text-roman
8364 (package
8365 (name "perl-text-roman")
8366 (version "3.5")
8367 (source
8368 (origin
8369 (method url-fetch)
8370 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
8371 version ".tar.gz"))
8372 (sha256
8373 (base32
8374 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
8375 (build-system perl-build-system)
8376 (home-page "http://search.cpan.org/dist/Text-Roman/")
8377 (synopsis "Convert between Roman and Arabic algorisms")
8378 (description "This package provides functions to convert between Roman and
8379 Arabic algorisms. It supports both conventional Roman algorisms (which range
8380 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
8381 algorism to indicate multiplication by 1000.")
8382 (license (package-license perl))))
8383
8384 (define-public perl-text-simpletable
8385 (package
8386 (name "perl-text-simpletable")
8387 (version "2.04")
8388 (source
8389 (origin
8390 (method url-fetch)
8391 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
8392 "Text-SimpleTable-" version ".tar.gz"))
8393 (sha256
8394 (base32
8395 "14sjmdcy7s73sk740g3ccmzmwhwd52x5ay3bjmibjlql1cag70ld"))))
8396 (build-system perl-build-system)
8397 (home-page "http://search.cpan.org/dist/Text-SimpleTable/")
8398 (synopsis "Simple ASCII tables")
8399 (description "Text::SimpleTable draws simple ASCII tables.")
8400 (license artistic2.0)))
8401
8402 (define-public perl-text-table
8403 (package
8404 (name "perl-text-table")
8405 (version "1.133")
8406 (source
8407 (origin
8408 (method url-fetch)
8409 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8410 "Text-Table-" version ".tar.gz"))
8411 (sha256
8412 (base32
8413 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
8414 (build-system perl-build-system)
8415 (native-inputs
8416 `(("perl-module-build" ,perl-module-build)))
8417 (propagated-inputs
8418 `(("perl-text-aligner" ,perl-text-aligner)))
8419 (home-page "http://search.cpan.org/dist/Text-Table/")
8420 (synopsis "Organize Data in Tables")
8421 (description "Text::Table renders plaintext tables.")
8422 (license x11)))
8423
8424 (define-public perl-text-template
8425 (package
8426 (name "perl-text-template")
8427 (version "1.47")
8428 (source
8429 (origin
8430 (method url-fetch)
8431 (uri (string-append
8432 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
8433 version
8434 ".tar.gz"))
8435 (sha256
8436 (base32
8437 "1z781cgz7wbn80lf3kqr2ad0pg6g1wlnim0822h8liw28k3l5msh"))))
8438 (build-system perl-build-system)
8439 (home-page
8440 "http://search.cpan.org/dist/Text-Template/")
8441 (synopsis
8442 "Expand template text with embedded Perl")
8443 (description
8444 "This is a library for generating letters, building HTML pages, or
8445 filling in templates generally. A template is a piece of text that has little
8446 Perl programs embedded in it here and there. When you fill in a template, you
8447 evaluate the little programs and replace them with their values.")
8448 (license perl-license)))
8449
8450 (define-public perl-text-unidecode
8451 (package
8452 (name "perl-text-unidecode")
8453 (version "1.23")
8454 (source
8455 (origin
8456 (method url-fetch)
8457 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
8458 "Text-Unidecode-" version ".tar.gz"))
8459 (sha256
8460 (base32
8461 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
8462 (build-system perl-build-system)
8463 (home-page "http://search.cpan.org/dist/Text-Unidecode/")
8464 (synopsis "Provide plain ASCII transliterations of Unicode text")
8465 (description "Text::Unidecode provides a function, unidecode(...) that
8466 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
8467 universally displayable characters between 0x00 and 0x7F). The representation
8468 is almost always an attempt at transliteration-- i.e., conveying, in Roman
8469 letters, the pronunciation expressed by the text in some other writing
8470 system.")
8471 (license (package-license perl))))
8472
8473 (define-public perl-threads
8474 (package
8475 (name "perl-threads")
8476 (version "2.21")
8477 (source
8478 (origin
8479 (method url-fetch)
8480 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
8481 version ".tar.gz"))
8482 (sha256
8483 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
8484 (build-system perl-build-system)
8485 (home-page "http://search.cpan.org/dist/threads/")
8486 (synopsis "Perl interpreter-based threads")
8487 (description "This module exposes interpreter threads to the Perl level.")
8488 (license perl-license)))
8489
8490 (define-public perl-throwable
8491 (package
8492 (name "perl-throwable")
8493 (version "0.200013")
8494 (source
8495 (origin
8496 (method url-fetch)
8497 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8498 "Throwable-" version ".tar.gz"))
8499 (sha256
8500 (base32
8501 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
8502 (build-system perl-build-system)
8503 (native-inputs
8504 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
8505 (propagated-inputs
8506 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8507 ("perl-module-runtime" ,perl-module-runtime)
8508 ("perl-moo" ,perl-moo)))
8509 (home-page "http://search.cpan.org/dist/Throwable/")
8510 (synopsis "Role for classes that can be thrown")
8511 (description "Throwable is a role for classes that are meant to be thrown
8512 as exceptions to standard program flow.")
8513 (license (package-license perl))))
8514
8515 (define-public perltidy
8516 (package
8517 (name "perltidy")
8518 (version "20180220")
8519 (source (origin
8520 (method url-fetch)
8521 (uri (string-append "mirror://sourceforge/perltidy/" version
8522 "/Perl-Tidy-" version ".tar.gz"))
8523 (sha256
8524 (base32
8525 "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
8526 (build-system perl-build-system)
8527 (home-page "http://perltidy.sourceforge.net/")
8528 (synopsis "Perl script tidier")
8529 (description "This package contains a Perl script which indents and
8530 reformats Perl scripts to make them easier to read. The formatting can be
8531 controlled with command line parameters. The default parameter settings
8532 approximately follow the suggestions in the Perl Style Guide.")
8533 (license gpl2+)))
8534
8535 (define-public perl-tie-cycle
8536 (package
8537 (name "perl-tie-cycle")
8538 (version "1.225")
8539 (source
8540 (origin
8541 (method url-fetch)
8542 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
8543 version ".tar.gz"))
8544 (sha256
8545 (base32
8546 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
8547 (build-system perl-build-system)
8548 (home-page "http://search.cpan.org/dist/Tie-Cycle/")
8549 (synopsis "Cycle through a list of values")
8550 (description "You use @code{Tie::Cycle} to go through a list over and over
8551 again. Once you get to the end of the list, you go back to the beginning.")
8552 (license (package-license perl))))
8553
8554 (define-public perl-tie-ixhash
8555 (package
8556 (name "perl-tie-ixhash")
8557 (version "1.23")
8558 (source
8559 (origin
8560 (method url-fetch)
8561 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
8562 "Tie-IxHash-" version ".tar.gz"))
8563 (sha256
8564 (base32
8565 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
8566 (build-system perl-build-system)
8567 (native-inputs `(("perl-module-build" ,perl-module-build)))
8568 (home-page "http://search.cpan.org/dist/Tie-IxHash/")
8569 (synopsis "Ordered associative arrays for Perl")
8570 (description "This Perl module implements Perl hashes that preserve the
8571 order in which the hash elements were added. The order is not affected when
8572 values corresponding to existing keys in the IxHash are changed. The elements
8573 can also be set to any arbitrary supplied order. The familiar perl array
8574 operations can also be performed on the IxHash.")
8575 (license (package-license perl))))
8576
8577 (define-public perl-tie-toobject
8578 (package
8579 (name "perl-tie-toobject")
8580 (version "0.03")
8581 (source
8582 (origin
8583 (method url-fetch)
8584 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
8585 "Tie-ToObject-" version ".tar.gz"))
8586 (sha256
8587 (base32
8588 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
8589 (build-system perl-build-system)
8590 (propagated-inputs
8591 `(("perl-test-simple" ,perl-test-simple)))
8592 (home-page "http://search.cpan.org/dist/Tie-ToObject/")
8593 (synopsis "Tie to an existing Perl object")
8594 (description "This class provides a tie constructor that returns the
8595 object it was given as it's first argument. This way side effects of calling
8596 $object->TIEHASH are avoided.")
8597 (license (package-license perl))))
8598
8599 (define-public perl-time-duration
8600 (package
8601 (name "perl-time-duration")
8602 (version "1.1")
8603 (source
8604 (origin
8605 (method url-fetch)
8606 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
8607 "Time-Duration-" version ".tar.gz"))
8608 (sha256
8609 (base32
8610 "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
8611 (build-system perl-build-system)
8612 (native-inputs
8613 `(("perl-module-install" ,perl-module-install)
8614 ("perl-test-pod" ,perl-test-pod)
8615 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8616 (home-page "http://search.cpan.org/dist/Time-Duration/")
8617 (synopsis "English expression of durations")
8618 (description "This module provides functions for expressing durations in
8619 rounded or exact terms.")
8620 (license (package-license perl))))
8621
8622 (define-public perl-time-duration-parse
8623 (package
8624 (name "perl-time-duration-parse")
8625 (version "0.13")
8626 (source
8627 (origin
8628 (method url-fetch)
8629 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8630 "Time-Duration-Parse-" version ".tar.gz"))
8631 (sha256
8632 (base32
8633 "0affdzhsiy7dr6dzj2p6m9lynmjh53k31bprfsfa21pz8551hjj1"))))
8634 (build-system perl-build-system)
8635 (native-inputs
8636 `(("perl-time-duration" ,perl-time-duration)))
8637 (propagated-inputs
8638 `(("perl-exporter-lite" ,perl-exporter-lite)))
8639 (home-page "http://search.cpan.org/dist/Time-Duration-Parse/")
8640 (synopsis "Parse time duration strings")
8641 (description "Time::Duration::Parse is a module to parse human readable
8642 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
8643 (license (package-license perl))))
8644
8645 (define-public perl-time-hires
8646 (package
8647 (name "perl-time-hires")
8648 (version "1.9758")
8649 (source (origin
8650 (method url-fetch)
8651 (uri (string-append
8652 "mirror://cpan/authors/id/J/JH/JHI/Time-HiRes-"
8653 version ".tar.gz"))
8654 (sha256
8655 (base32
8656 "07jbydcdzpjm6i4nidci0rlklx4kla210fsl6zishw0yq5di9yjv"))))
8657 (build-system perl-build-system)
8658 (home-page "http://search.cpan.org/dist/Time-HiRes/")
8659 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
8660 (description "This package implements @code{usleep}, @code{ualarm}, and
8661 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
8662 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
8663 (license perl-license)))
8664
8665 (define-public perl-time-local
8666 (package
8667 (name "perl-time-local")
8668 (version "1.2300")
8669 (source
8670 (origin
8671 (method url-fetch)
8672 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8673 "Time-Local-" version ".tar.gz"))
8674 (sha256
8675 (base32
8676 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
8677 (build-system perl-build-system)
8678 (home-page "http://search.cpan.org/dist/Time-Local/")
8679 (synopsis "Efficiently compute time from local and GMT time")
8680 (description "This module provides functions that are the inverse of
8681 built-in perl functions localtime() and gmtime(). They accept a date as a
8682 six-element array, and return the corresponding time(2) value in seconds since
8683 the system epoch.")
8684 (license (package-license perl))))
8685
8686 (define-public perl-time-piece
8687 (package
8688 (name "perl-time-piece")
8689 (version "1.3203")
8690 (source
8691 (origin
8692 (method url-fetch)
8693 (uri (string-append
8694 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
8695 version ".tar.gz"))
8696 (sha256
8697 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
8698 (build-system perl-build-system)
8699 (home-page "http://search.cpan.org/dist/Time-Piece/")
8700 (synopsis "Object-Oriented time objects")
8701 (description
8702 "This module replaces the standard @code{localtime} and @code{gmtime}
8703 functions with implementations that return objects. It does so in a
8704 backwards-compatible manner, so that using these functions as documented will
8705 still work as expected.")
8706 (license perl-license)))
8707
8708 (define-public perl-timedate
8709 (package
8710 (name "perl-timedate")
8711 (version "2.30")
8712 (source
8713 (origin
8714 (method url-fetch)
8715 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
8716 "TimeDate-" version ".tar.gz"))
8717 (sha256
8718 (base32
8719 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
8720 (build-system perl-build-system)
8721 (home-page "http://search.cpan.org/dist/TimeDate/")
8722 (synopsis "Date parsing/formatting subroutines")
8723 (description "This module provides routines for parsing date string into
8724 time values and formatting dates into ASCII strings.")
8725 (license (package-license perl))))
8726
8727 (define-public perl-time-mock
8728 (package
8729 (name "perl-time-mock")
8730 (version "v0.0.2")
8731 (source
8732 (origin
8733 (method url-fetch)
8734 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
8735 "Time-Mock-" version ".tar.gz"))
8736 (sha256
8737 (base32
8738 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
8739 (build-system perl-build-system)
8740 (native-inputs
8741 `(("perl-module-build" ,perl-module-build)))
8742 (propagated-inputs
8743 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
8744 (home-page "http://search.cpan.org/dist/Time-Mock/")
8745 (synopsis "Shift and scale time")
8746 (description "This module allows you to speed up your sleep(), alarm(),
8747 and time() calls.")
8748 (license (package-license perl))))
8749
8750 (define-public perl-tree-simple
8751 (package
8752 (name "perl-tree-simple")
8753 (version "1.25")
8754 (source
8755 (origin
8756 (method url-fetch)
8757 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8758 "Tree-Simple-" version ".tgz"))
8759 (sha256
8760 (base32
8761 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
8762 (build-system perl-build-system)
8763 (native-inputs
8764 `(("perl-module-build" ,perl-module-build)
8765 ("perl-test-exception" ,perl-test-exception)))
8766 (propagated-inputs
8767 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
8768 (home-page "http://search.cpan.org/dist/Tree-Simple/")
8769 (synopsis "Simple tree object")
8770 (description "This module in a fully object-oriented implementation of a
8771 simple n-ary tree.")
8772 (license (package-license perl))))
8773
8774 (define-public perl-tree-simple-visitorfactory
8775 (package
8776 (name "perl-tree-simple-visitorfactory")
8777 (version "0.12")
8778 (source
8779 (origin
8780 (method url-fetch)
8781 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8782 "Tree-Simple-VisitorFactory-" version ".tgz"))
8783 (sha256
8784 (base32
8785 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
8786 (build-system perl-build-system)
8787 (native-inputs
8788 `(("perl-module-build" ,perl-module-build)
8789 ("perl-test-exception" ,perl-test-exception)))
8790 (propagated-inputs
8791 `(("perl-tree-simple" ,perl-tree-simple)
8792 ("perl-base" ,perl-base)))
8793 (home-page "http://search.cpan.org/dist/Tree-Simple-VisitorFactory/")
8794 (synopsis "Factory object for dispensing Visitor objects")
8795 (description "This module is a factory for dispensing
8796 Tree::Simple::Visitor::* objects.")
8797 (license (package-license perl))))
8798
8799 (define-public perl-try-tiny
8800 (package
8801 (name "perl-try-tiny")
8802 (version "0.22")
8803 (source
8804 (origin
8805 (method url-fetch)
8806 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8807 "Try-Tiny-" version ".tar.gz"))
8808 (sha256
8809 (base32
8810 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
8811 (build-system perl-build-system)
8812 (home-page "http://search.cpan.org/dist/Try-Tiny/")
8813 (synopsis "Minimal try/catch with proper preservation of $@@")
8814 (description "This module provides bare bones try/catch/finally statements
8815 that are designed to minimize common mistakes with eval blocks, and nothing
8816 else.")
8817 (license x11)))
8818
8819 (define-public perl-type-tie
8820 (package
8821 (name "perl-type-tie")
8822 (version "0.009")
8823 (source
8824 (origin
8825 (method url-fetch)
8826 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8827 "Type-Tie-" version ".tar.gz"))
8828 (sha256
8829 (base32
8830 "1wv32kd7gx4kfyvzs13y029f49qbbji991wawvarac7rlz09wpan"))))
8831 (build-system perl-build-system)
8832 (native-inputs
8833 `(("perl-test-fatal" ,perl-test-fatal)
8834 ("perl-test-requires" ,perl-test-requires)))
8835 (propagated-inputs
8836 `(("perl-exporter-tiny" ,perl-exporter-tiny)
8837 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
8838 (home-page "http://search.cpan.org/dist/Type-Tie/")
8839 (synopsis "Tie a variable to a type constraint")
8840 (description "This module exports a single function: @code{ttie}. It ties
8841 a variable to a type constraint, ensuring that whatever values stored in the
8842 variable will conform to the type constraint. If the type constraint has
8843 coercions, these will be used if necessary to ensure values assigned to the
8844 variable conform.")
8845 (license (package-license perl))))
8846
8847 (define-public perl-type-tiny
8848 (package
8849 (name "perl-type-tiny")
8850 (version "1.002002")
8851 (source
8852 (origin
8853 (method url-fetch)
8854 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8855 "Type-Tiny-" version ".tar.gz"))
8856 (sha256
8857 (base32
8858 "0b48v28rvl20969gyr62yg6gr6a2nj9qik0bixavbjdmk67hqnx8"))))
8859 (build-system perl-build-system)
8860 (native-inputs
8861 `(("perl-test-warnings" ,perl-test-warnings)))
8862 (propagated-inputs
8863 `(("perl-devel-lexalias" ,perl-devel-lexalias)
8864 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
8865 ("perl-exporter-tiny" ,perl-exporter-tiny)
8866 ("perl-moo" ,perl-moo)
8867 ("perl-moose" ,perl-moose)
8868 ("perl-mouse" ,perl-mouse)
8869 ("perl-ref-util-xs" ,perl-ref-util-xs)
8870 ("perl-regexp-util" ,perl-regexp-util)
8871 ("perl-type-tie" ,perl-type-tie)))
8872 (home-page "http://search.cpan.org/dist/Type-Tiny/")
8873 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
8874 (description "@code{Type::Tiny} is a small class for writing type
8875 constraints, inspired by Moose's type constraint API. It has only one
8876 non-core dependency (and even that is simply a module that was previously
8877 distributed as part of @code{Type::Tiny} but has since been spun off), and can
8878 be used with Moose, Mouse and Moo (or none of the above).")
8879 (license (package-license perl))))
8880
8881 (define-public perl-type-tiny-xs
8882 (package
8883 (name "perl-type-tiny-xs")
8884 (version "0.012")
8885 (source
8886 (origin
8887 (method url-fetch)
8888 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
8889 version ".tar.gz"))
8890 (sha256
8891 (base32
8892 "05nbr898cvjjh1wsy55l84zasx65gijdxc6dnn558ihns8zx6gm9"))))
8893 (build-system perl-build-system)
8894 (home-page "http://search.cpan.org/dist/Type-Tiny-XS/")
8895 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
8896 (description "This module is optionally used by @code{Type::Tiny} to
8897 provide faster, C-based implementations of some type constraints. This
8898 package has only core dependencies, and does not depend on @code{Type::Tiny},
8899 so other data validation frameworks might also consider using it.")
8900 (license perl-license)))
8901
8902 (define-public perl-types-path-tiny
8903 (package
8904 (name "perl-types-path-tiny")
8905 (version "0.005")
8906 (source
8907 (origin
8908 (method url-fetch)
8909 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8910 "Types-Path-Tiny-" version ".tar.gz"))
8911 (sha256
8912 (base32
8913 "09nf167ssi4rgj8hhzylwp3zdx61njdpyfri43arcmk9aqn7f0pp"))))
8914 (build-system perl-build-system)
8915 (propagated-inputs
8916 `(("perl-file-pushd" ,perl-file-pushd)
8917 ("perl-path-tiny" ,perl-path-tiny)
8918 ("perl-type-tiny" ,perl-type-tiny)
8919 ("perl-exporter-tiny" ,perl-exporter-tiny)))
8920 (home-page "http://search.cpan.org/dist/Types-Path-Tiny/")
8921 (synopsis "Types and coercions for Moose and Moo")
8922 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
8923 etc. It handles two important types of coercion: coercing objects with
8924 overloaded stringification, and coercing to absolute paths. It also can check
8925 to ensure that files or directories exist.")
8926 (license artistic2.0)))
8927
8928 (define-public perl-types-serialiser
8929 (package
8930 (name "perl-types-serialiser")
8931 (version "1.0")
8932 (source
8933 (origin
8934 (method url-fetch)
8935 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
8936 "Types-Serialiser-" version ".tar.gz"))
8937 (sha256
8938 (base32
8939 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
8940 (build-system perl-build-system)
8941 (propagated-inputs
8942 `(("perl-common-sense" ,perl-common-sense)))
8943 (home-page "http://search.cpan.org/dist/Types-Serialiser/")
8944 (synopsis "Data types for common serialisation formats")
8945 (description "This module provides some extra datatypes that are used by
8946 common serialisation formats such as JSON or CBOR.")
8947 (license (package-license perl))))
8948
8949 (define-public perl-unicode-normalize
8950 (package
8951 (name "perl-unicode-normalize")
8952 (version "1.25")
8953 (source
8954 (origin
8955 (method url-fetch)
8956 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8957 "Unicode-Normalize-" version ".tar.gz"))
8958 (sha256
8959 (base32
8960 "0v04bcyjfcfap4kfpc8q3ikq3j7s68nym4ckw3iasmmksdskmcq0"))))
8961 (build-system perl-build-system)
8962 (arguments
8963 '(#:phases (modify-phases %standard-phases
8964 (add-before 'configure 'set-search-path
8965 (lambda _
8966 ;; Work around "dotless @INC" build failure.
8967 (setenv "PERL5LIB"
8968 (string-append (getcwd) ":"
8969 (getenv "PERL5LIB")))
8970 #t)))))
8971 (home-page "http://search.cpan.org/dist/Unicode-Normalize/")
8972 (synopsis "Unicode normalization forms")
8973 (description "This Perl module provides Unicode normalization forms.")
8974 (license (package-license perl))))
8975
8976 (define-public perl-unicode-collate
8977 (package
8978 (name "perl-unicode-collate")
8979 (version "1.18")
8980 (source
8981 (origin
8982 (method url-fetch)
8983 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
8984 "Unicode-Collate-" version ".tar.gz"))
8985 (sha256
8986 (base32
8987 "1lq4p3mqqljhhy8wyiyahris33j4m5qfzpi6iacmcqjzw5g4afbm"))))
8988 (build-system perl-build-system)
8989 (arguments
8990 `(#:phases
8991 (modify-phases %standard-phases
8992 (add-before 'configure 'set-perl-search-path
8993 (lambda _
8994 ;; Work around "dotless @INC" build failure.
8995 (setenv "PERL5LIB"
8996 (string-append (getcwd) ":"
8997 (getenv "PERL5LIB")))
8998 #t)))))
8999 (propagated-inputs
9000 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
9001 (home-page "http://search.cpan.org/dist/Unicode-Collate/")
9002 (synopsis "Unicode collation algorithm")
9003 (description "This package provides tools for sorting and comparing
9004 Unicode data.")
9005 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
9006 ;; license.
9007 (license (list (package-license perl) expat))))
9008
9009 (define-public perl-unicode-linebreak
9010 (package
9011 (name "perl-unicode-linebreak")
9012 (version "2016.003")
9013 (source (origin
9014 (method url-fetch)
9015 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
9016 "Unicode-LineBreak-" version ".tar.gz"))
9017 (sha256
9018 (base32
9019 "096wf5x99swx7l7yd8pm2aw50g596nf50rkq7250zjcc1acjskp6"))))
9020 (build-system perl-build-system)
9021 (propagated-inputs
9022 `(("perl-mime-charset" ,perl-mime-charset)))
9023 (home-page "http://search.cpan.org/dist/Unicode-LineBreak/")
9024 (synopsis "Unicode line breaking algorithm")
9025 (description
9026 "@code{Unicode::LineBreak} implements the line breaking algorithm
9027 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
9028 defined by Annex #11 is used to determine breaking positions.")
9029 (license (package-license perl))))
9030
9031 (define-public perl-unicode-utf8
9032 (package
9033 (name "perl-unicode-utf8")
9034 (version "0.62")
9035 (source (origin
9036 (method url-fetch)
9037 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
9038 "Unicode-UTF8-" version ".tar.gz"))
9039 (sha256
9040 (base32
9041 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
9042 (build-system perl-build-system)
9043 (native-inputs
9044 `(("perl-test-fatal" ,perl-test-fatal)
9045 ("perl-test-leaktrace" ,perl-test-leaktrace)
9046 ("perl-variable-magic" ,perl-variable-magic)
9047 ("perl-test-pod" ,perl-test-pod)))
9048 (home-page "http://search.cpan.org/dist/Unicode-UTF8/")
9049 (synopsis "Encoding and decoding of UTF-8 encoding form")
9050 (description
9051 "This module provides functions to encode and decode UTF-8 encoding form
9052 as specified by Unicode and ISO/IEC 10646:2011.")
9053 (license (package-license perl))))
9054
9055 (define-public perl-universal-can
9056 (package
9057 (name "perl-universal-can")
9058 (version "1.20140328")
9059 (source
9060 (origin
9061 (method url-fetch)
9062 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9063 "UNIVERSAL-can-" version ".tar.gz"))
9064 (sha256
9065 (base32
9066 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
9067 (build-system perl-build-system)
9068 (home-page "http://search.cpan.org/dist/UNIVERSAL-can/")
9069 (synopsis "UNIVERSAL::can() reimplementation")
9070 (description "This module attempts to work around people calling
9071 UNIVERSAL::can() as a function, which it is not.")
9072 (license (package-license perl))))
9073
9074 (define-public perl-universal-isa
9075 (package
9076 (name "perl-universal-isa")
9077 (version "1.20140927")
9078 (source
9079 (origin
9080 (method url-fetch)
9081 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9082 "UNIVERSAL-isa-" version ".tar.gz"))
9083 (sha256
9084 (base32
9085 "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
9086 (build-system perl-build-system)
9087 (native-inputs
9088 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
9089 (home-page "http://search.cpan.org/dist/UNIVERSAL-isa/")
9090 (synopsis "UNIVERSAL::isa() reimplementation")
9091 (description "This module attempts to recover from people calling
9092 UNIVERSAL::isa as a function.")
9093 (license (package-license perl))))
9094
9095 (define-public perl-universal-require
9096 (package
9097 (name "perl-universal-require")
9098 (version "0.18")
9099 (source
9100 (origin
9101 (method url-fetch)
9102 (uri (string-append
9103 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
9104 version ".tar.gz"))
9105 (sha256
9106 (base32
9107 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
9108 (build-system perl-build-system)
9109 (home-page "http://search.cpan.org/dist/UNIVERSAL-require/")
9110 (synopsis "Require modules from a variable")
9111 (description "This module lets you require other modules where the module
9112 name is in a variable, something you can't do with the @code{require}
9113 built-in.")
9114 (license (package-license perl))))
9115
9116 (define-public perl-variable-magic
9117 (package
9118 (name "perl-variable-magic")
9119 (version "0.62")
9120 (source
9121 (origin
9122 (method url-fetch)
9123 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
9124 "Variable-Magic-" version ".tar.gz"))
9125 (sha256
9126 (base32
9127 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
9128 (build-system perl-build-system)
9129 (home-page "http://search.cpan.org/dist/Variable-Magic/")
9130 (synopsis "Associate user-defined magic to variables from Perl")
9131 (description "Magic is Perl's way of enhancing variables. This mechanism
9132 lets the user add extra data to any variable and hook syntactical
9133 operations (such as access, assignment or destruction) that can be applied to
9134 it. With this module, you can add your own magic to any variable without
9135 having to write a single line of XS.")
9136 (license (package-license perl))))
9137
9138 (define-public perl-xml-writer
9139 (package
9140 (name "perl-xml-writer")
9141 (version "0.625")
9142 (source
9143 (origin
9144 (method url-fetch)
9145 (uri (string-append
9146 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
9147 version
9148 ".tar.gz"))
9149 (sha256
9150 (base32
9151 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
9152 (build-system perl-build-system)
9153 (home-page "http://search.cpan.org/dist/XML-Writer/")
9154 (synopsis "Easily generate well-formed, namespace-aware XML")
9155 (description "@code{XML::Writer} is a simple Perl module for writing XML
9156 documents: it takes care of constructing markup and escaping data correctly.
9157 By default, it also performs a significant amount of well-formedness checking
9158 on the output to make certain (for example) that start and end tags match,
9159 that there is exactly one document element, and that there are not duplicate
9160 attribute names.")
9161 ;; Redistribution and use in source and compiled forms, with or without
9162 ;; modification, are permitted under any circumstances. No warranty.
9163 (license public-domain)))
9164
9165 (define-public perl-xs-object-magic
9166 (package
9167 (name "perl-xs-object-magic")
9168 (version "0.04")
9169 (source (origin
9170 (method url-fetch)
9171 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
9172 "XS-Object-Magic-" version ".tar.gz"))
9173 (sha256
9174 (base32
9175 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
9176 (build-system perl-build-system)
9177 (native-inputs
9178 `(("perl-extutils-depends" ,perl-extutils-depends)
9179 ("perl-module-install" ,perl-module-install)
9180 ("perl-test-fatal" ,perl-test-fatal)))
9181 (home-page "http://search.cpan.org/dist/XS-Object-Magic/")
9182 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
9183 (description
9184 "This way of associating structs with Perl space objects is designed to
9185 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
9186 (structs can be associated with any data type) and opaque (the C pointer is
9187 neither visible nor modifiable from Perl space).")
9188 (license (package-license perl))))
9189
9190 (define-public perl-yaml
9191 (package
9192 (name "perl-yaml")
9193 (version "1.24")
9194 (source
9195 (origin
9196 (method url-fetch)
9197 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
9198 "YAML-" version ".tar.gz"))
9199 (sha256
9200 (base32
9201 "1dpzgnjbd8yvf94vf45cmyj5bc6vrm6bchhx9xqwxqd5f9d093dm"))))
9202 (build-system perl-build-system)
9203 (native-inputs
9204 `(("perl-test-yaml" ,perl-test-yaml)))
9205 (home-page "http://search.cpan.org/dist/YAML/")
9206 (synopsis "YAML for Perl")
9207 (description "The YAML.pm module implements a YAML Loader and Dumper based
9208 on the YAML 1.0 specification.")
9209 (license (package-license perl))))
9210
9211 (define-public perl-yaml-libyaml
9212 (package
9213 (name "perl-yaml-libyaml")
9214 (version "0.69")
9215 (source
9216 (origin
9217 (method url-fetch)
9218 (uri (string-append
9219 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
9220 version
9221 ".tar.gz"))
9222 (sha256
9223 (base32
9224 "06msvj3vmjszl5zj1k7g47ll0kkds9gdb5sky0q27lh4zw1vlj33"))))
9225 (build-system perl-build-system)
9226 (home-page
9227 "http://search.cpan.org/dist/YAML-LibYAML/")
9228 (synopsis
9229 "Perl YAML Serialization using XS and libyaml")
9230 (description
9231 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
9232 best YAML support to date.")
9233 (license perl-license)))
9234
9235 (define-public perl-yaml-tiny
9236 (package
9237 (name "perl-yaml-tiny")
9238 (version "1.66")
9239 (source
9240 (origin
9241 (method url-fetch)
9242 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9243 "YAML-Tiny-" version ".tar.gz"))
9244 (sha256
9245 (base32
9246 "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
9247 (build-system perl-build-system)
9248 (native-inputs
9249 `(("perl-json-maybexs" ,perl-json-maybexs)
9250 ("perl-module-build-tiny" ,perl-module-build-tiny)))
9251 (arguments
9252 `(#:tests? #f)) ;requires Test::More >= 0.99
9253 (home-page "http://search.cpan.org/dist/YAML-Tiny/")
9254 (synopsis "Read/Write YAML files")
9255 (description "YAML::Tiny is a perl class for reading and writing
9256 YAML-style files, written with as little code as possible, reducing load time
9257 and memory overhead.")
9258 (license (package-license perl))))
9259
9260 (define-public perl-parse-recdescent
9261 (package
9262 (name "perl-parse-recdescent")
9263 (version "1.967015")
9264 (source
9265 (origin
9266 (method url-fetch)
9267 (uri (string-append
9268 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
9269 version
9270 ".tar.gz"))
9271 (sha256
9272 (base32
9273 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
9274 (build-system perl-build-system)
9275 (native-inputs
9276 `(("perl-module-build" ,perl-module-build)))
9277 (home-page
9278 "http://search.cpan.org/dist/Parse-RecDescent/")
9279 (synopsis "Generate recursive-descent parsers")
9280 (description
9281 "@code{Parse::RecDescent} can incrementally generate top-down
9282 recursive-descent text parsers from simple yacc-like grammar specifications.")
9283 (license perl-license)))
9284
9285 (define-public perl-parse-yapp
9286 (package
9287 (name "perl-parse-yapp")
9288 (version "1.21")
9289 (source
9290 (origin
9291 (method url-fetch)
9292 (uri (string-append
9293 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
9294 version
9295 ".tar.gz"))
9296 (sha256
9297 (base32
9298 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
9299 (build-system perl-build-system)
9300 (home-page "http://search.cpan.org/dist/Parse-Yapp/")
9301 (synopsis "Generate and use LALR parsers")
9302 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
9303 grammars to generate Perl object oriented parser modules.")
9304 (license (package-license perl))))
9305
9306 \f
9307 ;;; Some packaged modules need versions of core modules that are newer than
9308 ;;; those in our perl 5.16.1.
9309
9310 (define-public perl-cpan-meta
9311 (package
9312 (name "perl-cpan-meta")
9313 (version "2.143240")
9314 (source
9315 (origin
9316 (method url-fetch)
9317 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9318 "CPAN-Meta-" version ".tar.gz"))
9319 (sha256
9320 (base32
9321 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
9322 (build-system perl-build-system)
9323 (propagated-inputs
9324 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
9325 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
9326 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
9327 (home-page "http://search.cpan.org/dist/CPAN-Meta/")
9328 (synopsis "Distribution metadata for a CPAN dist")
9329 (description "Software distributions released to the CPAN include a
9330 META.json or, for older distributions, META.yml, which describes the
9331 distribution, its contents, and the requirements for building and installing
9332 the distribution. The data structure stored in the META.json file is
9333 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
9334 represent this distribution metadata (or distmeta), along with some helpful
9335 methods for interrogating that data.")
9336 (license (package-license perl))))
9337
9338 (define-public perl-cpan-meta-requirements
9339 (package
9340 (name "perl-cpan-meta-requirements")
9341 (version "2.140")
9342 (source
9343 (origin
9344 (method url-fetch)
9345 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9346 "CPAN-Meta-Requirements-" version ".tar.gz"))
9347 (sha256
9348 (base32
9349 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
9350 (build-system perl-build-system)
9351 (home-page "http://search.cpan.org/dist/CPAN-Meta-Requirements/")
9352 (synopsis "Set of version requirements for a CPAN dist")
9353 (description "A CPAN::Meta::Requirements object models a set of version
9354 constraints like those specified in the META.yml or META.json files in CPAN
9355 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
9356 adding more and more constraints, and will reduce them to the simplest
9357 representation.")
9358 (license (package-license perl))))
9359
9360 (define-public perl-cpan-meta-yaml
9361 (package
9362 (name "perl-cpan-meta-yaml")
9363 (version "0.018")
9364 (source
9365 (origin
9366 (method url-fetch)
9367 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9368 "CPAN-Meta-YAML-" version ".tar.gz"))
9369 (sha256
9370 (base32
9371 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
9372 (build-system perl-build-system)
9373 (arguments
9374 `(#:tests? #f)) ;Tests require Test::More >= 0.99
9375 (home-page "http://search.cpan.org/dist/CPAN-Meta-YAML/")
9376 (synopsis "Read and write a subset of YAML for CPAN Meta files")
9377 (description "This module implements a subset of the YAML specification
9378 for use in reading and writing CPAN metadata files like META.yml and
9379 MYMETA.yml.")
9380 (license (package-license perl))))
9381
9382 (define-public perl-module-build
9383 (package
9384 (name "perl-module-build")
9385 (version "0.4220")
9386 (source
9387 (origin
9388 (method url-fetch)
9389 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
9390 "Module-Build-" version ".tar.gz"))
9391 (sha256
9392 (base32
9393 "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
9394 (build-system perl-build-system)
9395 (propagated-inputs
9396 `(("perl-cpan-meta" ,perl-cpan-meta)))
9397 (home-page "http://search.cpan.org/dist/Module-Build/")
9398 (synopsis "Build and install Perl modules")
9399 (description "@code{Module::Build} is a system for building, testing, and
9400 installing Perl modules; it used to be part of Perl itself until version 5.22,
9401 which dropped it. It is meant to be an alternative to
9402 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
9403 through subclassing in a much more straightforward way than with
9404 @code{MakeMaker}. It also does not require a @command{make} on your
9405 system---most of the @code{Module::Build} code is pure-Perl.")
9406 (license (package-license perl))))
9407
9408 (define-public perl-parse-cpan-meta
9409 (package
9410 (name "perl-parse-cpan-meta")
9411 (version "2.150010")
9412 (source
9413 (origin
9414 (method url-fetch)
9415 ;; This module is now known as CPAN::Meta on CPAN.
9416 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9417 "CPAN-Meta-" version ".tar.gz"))
9418 (sha256
9419 (base32
9420 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
9421 (build-system perl-build-system)
9422 (propagated-inputs
9423 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
9424 (home-page "http://search.cpan.org/dist/Parse-CPAN-Meta/")
9425 (synopsis "Parse META.yml and META.json CPAN metadata files")
9426 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
9427 files, using JSON::PP and/or CPAN::Meta::YAML.")
9428 (license (package-license perl))))
9429
9430 (define-public perl-scalar-list-utils
9431 (package
9432 (name "perl-scalar-list-utils")
9433 (version "1.50")
9434 (source
9435 (origin
9436 (method url-fetch)
9437 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
9438 "Scalar-List-Utils-" version ".tar.gz"))
9439 (sha256
9440 (base32
9441 "0x9n0617gjjcqa4nk5biiwkxdi90xpdfg6z07gjr009qjg3bkah6"))))
9442 (build-system perl-build-system)
9443 (home-page "http://search.cpan.org/dist/Scalar-List-Utils/")
9444 (synopsis "Common Scalar and List utility subroutines")
9445 (description "This package contains a selection of subroutines that people
9446 have expressed would be nice to have in the perl core, but the usage would not
9447 really be high enough to warrant the use of a keyword, and the size so small
9448 such that being individual extensions would be wasteful.")
9449 (license (package-license perl))))
9450
9451 (define-public perl-shell-command
9452 (package
9453 (name "perl-shell-command")
9454 (version "0.06")
9455 (source
9456 (origin
9457 (method url-fetch)
9458 (uri (string-append
9459 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
9460 version
9461 ".tar.gz"))
9462 (sha256
9463 (base32
9464 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
9465 (build-system perl-build-system)
9466 (home-page
9467 "http://search.cpan.org/dist/Shell-Command/")
9468 (synopsis
9469 "Cross-platform functions emulating common shell commands")
9470 (description
9471 "Shell::Command is a thin wrapper around ExtUtils::Command.")
9472 (license (package-license perl))))
9473
9474 ;;; END: Core module overrides
9475
9476 (define-public perl-file-find-object
9477 (package
9478 (name "perl-file-find-object")
9479 (version "v0.2.13")
9480 (source
9481 (origin
9482 (method url-fetch)
9483 (uri (string-append
9484 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
9485 version
9486 ".tar.gz"))
9487 (sha256
9488 (base32
9489 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
9490 (build-system perl-build-system)
9491 (native-inputs
9492 `(("perl-module-build" ,perl-module-build)))
9493 (inputs
9494 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
9495 (home-page
9496 "http://search.cpan.org/dist/File-Find-Object/")
9497 (synopsis
9498 "Object-oriented File::Find replacement in Perl")
9499 (description "File::Find::Object is an object-oriented
9500 File::Find replacement in Perl.")
9501 (license artistic2.0)))
9502
9503 (define-public perl-file-find-object-rule
9504 (package
9505 (name "perl-file-find-object-rule")
9506 (version "0.0305")
9507 (source
9508 (origin
9509 (method url-fetch)
9510 (uri (string-append
9511 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
9512 version
9513 ".tar.gz"))
9514 (sha256
9515 (base32
9516 "0hs4n3w99q4ylkhg3qhzcwkxqn7zblfj1zjdgl06ca30afkk4cv6"))))
9517 (build-system perl-build-system)
9518 (native-inputs
9519 `(("perl-module-build" ,perl-module-build)))
9520 (inputs
9521 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
9522 ("perl-file-find-object" ,perl-file-find-object)
9523 ("perl-number-compare" ,perl-number-compare)
9524 ("perl-text-glob" ,perl-text-glob)))
9525 (home-page
9526 "http://search.cpan.org/dist/File-Find-Object-Rule/")
9527 (synopsis
9528 "Alternative interface to File::Find::Object")
9529 (description "File::Find::Object::Rule is an alternative Perl
9530 interface to File::Find::Object.")
9531 (license (package-license perl))))
9532
9533 (define-public perl-file-finder
9534 (package
9535 (name "perl-file-finder")
9536 (version "0.53")
9537 (source
9538 (origin
9539 (method url-fetch)
9540 (uri (string-append
9541 "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
9542 version ".tar.gz"))
9543 (sha256
9544 (base32
9545 "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
9546 (build-system perl-build-system)
9547 (propagated-inputs
9548 `(("perl-text-glob" ,perl-text-glob)))
9549 (home-page "http://search.cpan.org/dist/File-Finder/")
9550 (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
9551 (description
9552 "@code{File::Find} is great, but constructing the wanted routine can
9553 sometimes be a pain. @code{File::Finder} provides a wanted-writer, using
9554 syntax that is directly mappable to the @code{find(1)} command's syntax.
9555
9556 A @code{File::Finder} object contains a hash of @code{File::Find} options, and
9557 a series of steps that mimic find's predicates. Initially, a
9558 @code{File::Finder} object has no steps. Each step method clones the previous
9559 object's options and steps, and then adds the new step, returning the new
9560 object. In this manner, an object can be grown, step by step, by chaining
9561 method calls. Furthermore, a partial sequence can be created and held, and
9562 used as the head of many different sequences.")
9563 (license perl-license)))
9564
9565 (define-public perl-font-ttf
9566 (package
9567 (name "perl-font-ttf")
9568 (version "1.06")
9569 (source (origin
9570 (method url-fetch)
9571 (uri (string-append
9572 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
9573 version ".tar.gz"))
9574 (sha256
9575 (base32
9576 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
9577 (build-system perl-build-system)
9578 (propagated-inputs
9579 `(("perl-io-string" ,perl-io-string)))
9580 (home-page "http://search.cpan.org/dist/Font-TTF/")
9581 (synopsis "TTF font support for Perl")
9582 (description "This package provides a Perl module for TrueType/OpenType
9583 font hacking. It supports reading, processing and writing of the following
9584 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
9585 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
9586 prop, vhea, vmtx and the reading and writing of all other table types.")
9587 (license artistic2.0)))
9588
9589 (define-public perl-libtime-parsedate
9590 (package
9591 (name "perl-libtime-parsedate")
9592 (version "2015.103")
9593 (source
9594 (origin
9595 (method url-fetch)
9596 (uri (string-append
9597 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
9598 version ".tar.gz"))
9599 (sha256
9600 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
9601 (build-system perl-build-system)
9602 (arguments
9603 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
9604 ;; doesn't support it yet.
9605 ;;
9606 ;; #:disallowed-references (,tzdata-for-tests)
9607
9608 #:phases
9609 (modify-phases %standard-phases
9610 ;; This is needed for tests
9611 (add-after 'unpack 'set-TZDIR
9612 (lambda* (#:key inputs #:allow-other-keys)
9613 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
9614 "/share/zoneinfo"))
9615 #t)))))
9616 (native-inputs
9617 `(("perl-module-build" ,perl-module-build)
9618 ("tzdata" ,tzdata-for-tests)))
9619 (home-page "https://metacpan.org/release/Time-ParseDate")
9620 (synopsis "Collection of Perl modules for time/date manipulation")
9621 (description "Provides several perl modules for date/time manipulation:
9622 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
9623 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
9624 ;; License text:
9625 ;; "License hereby granted for anyone to use, modify or redistribute this
9626 ;; module at their own risk. Please feed useful changes back to
9627 ;; cpan@dave.sharnoff.org."
9628 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
9629 changelogs/main/libt/libtime-parsedate-perl/\
9630 libtime-parsedate-perl_2015.103-2_copyright"))))
9631
9632 (define-public perl-libtime-period
9633 (package
9634 (name "perl-libtime-period")
9635 (version "1.20")
9636 (source
9637 (origin
9638 (method url-fetch)
9639 (uri (string-append
9640 "http://http.debian.net/debian/pool/main/libt/"
9641 "libtime-period-perl/libtime-period-perl_"
9642 version ".orig.tar.gz"))
9643 (sha256
9644 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
9645 (build-system perl-build-system)
9646 (native-inputs
9647 `(("perl-module-build" ,perl-module-build)))
9648 ;; Unless some other homepage is out there...
9649 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
9650 (synopsis "Perl library for testing if a time() is in a specific period")
9651 (description "This Perl library provides a function which tells whether a
9652 specific time falls within a specified time period. Its syntax for specifying
9653 time periods allows you to test for conditions like \"Monday to Friday, 9am
9654 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
9655 4:15pm\" and \"in the first half of each minute\" and \"in January of
9656 1998\".")
9657 (license perl-license)))
9658
9659 (define-public perl-path-iterator-rule
9660 (package
9661 (name "perl-path-iterator-rule")
9662 (version "1.012")
9663 (source
9664 (origin
9665 (method url-fetch)
9666 (uri (string-append
9667 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
9668 version ".tar.gz"))
9669 (sha256
9670 (base32
9671 "1z76avwvwgv4bw28kzx79mmb4449s5l345sn0wljq3dbf4wqigd1"))))
9672 (build-system perl-build-system)
9673 (native-inputs
9674 `(("perl-file-pushd" ,perl-file-pushd)
9675 ("perl-path-tiny" ,perl-path-tiny)
9676 ("perl-test-deep" ,perl-test-deep)
9677 ("perl-test-filename" ,perl-test-filename)))
9678 (propagated-inputs
9679 `(("perl-number-compare" ,perl-number-compare)
9680 ("perl-text-glob" ,perl-text-glob)
9681 ("perl-try-tiny" ,perl-try-tiny)))
9682 (home-page "http://search.cpan.org/dist/Path-Iterator-Rule/")
9683 (synopsis "Iterative, recursive file finder")
9684 (description "Path::Iterator::Rule iterates over files and directories to
9685 identify ones matching a user-defined set of rules. The API is based heavily
9686 on File::Find::Rule, but with more explicit distinction between matching rules
9687 and options that influence how directories are searched. A
9688 Path::Iterator::Rule object is a collection of rules (match criteria) with
9689 methods to add additional criteria. Options that control directory traversal
9690 are given as arguments to the method that generates an iterator.
9691
9692 A summary of features for comparison to other file finding modules:
9693
9694 @itemize
9695 @item provides many helper methods for specifying rules
9696 @item offers (lazy) iterator and flattened list interfaces
9697 @item custom rules implemented with callbacks
9698 @item breadth-first (default) or pre- or post-order depth-first searching
9699 @item follows symlinks (by default, but can be disabled)
9700 @item directories visited only once (no infinite loop; can be disabled)
9701 @item doesn't chdir during operation
9702 @item provides an API for extensions
9703 @end itemize
9704
9705 As a convenience, the PIR module is an empty subclass of this one that is less
9706 arduous to type for one-liners.")
9707 (license asl2.0)))
9708
9709 (define-public perl-pod-constants
9710 (package
9711 (name "perl-pod-constants")
9712 (version "0.19")
9713 (source
9714 (origin
9715 (method url-fetch)
9716 (uri (string-append
9717 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
9718 version ".tar.gz"))
9719 (sha256
9720 (base32
9721 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
9722 (build-system perl-build-system)
9723 (home-page "http://search.cpan.org/dist/Pod-Constants/")
9724 (synopsis "Include constants from POD")
9725 (description "This module allows you to specify those constants that
9726 should be documented in your POD, and pull them out a run time in a fairly
9727 arbitrary fashion.
9728
9729 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
9730 to open the source file it is called from, and does so directly either by
9731 lookup in %INC or by assuming it is $0 if the caller is @code{main}
9732 (or it can't find %INC{caller()}).")
9733 (license artistic2.0)))
9734
9735 (define-public perl-regexp-pattern
9736 (package
9737 (name "perl-regexp-pattern")
9738 (version "0.1.4")
9739 (source
9740 (origin
9741 (method url-fetch)
9742 (uri (string-append
9743 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
9744 version ".tar.gz"))
9745 (sha256
9746 (base32
9747 "0rwpl6dxd1yl2ng3d4jdy68jz3mggmdl35rphrw1x619sm1aa876"))))
9748 (build-system perl-build-system)
9749 (native-inputs
9750 `(("perl-test-exception" ,perl-test-exception)))
9751 (home-page "http://search.cpan.org/dist/Regexp-Pattern/")
9752 (synopsis "Collection of regexp patterns")
9753 (description "Regexp::Pattern is a convention for organizing reusable
9754 regexp patterns in modules.")
9755 (license (package-license perl))))