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