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