aboutsummaryrefslogtreecommitdiff
path: root/src/xyz/euandreh/queue.scm
blob: 5899a3ecace30a7b362cbaf4f66a09d7bbc0dfc5 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
(define-module (xyz euandreh queue)
  #:use-module (srfi srfi-26)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system perl)
  #:use-module (gnu packages)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages perl-check)
  #:use-module (gnu packages language)
	#:use-module (gnu packages markup))

(define-public perl-tidy
  (package
    (name "perl-tidy")
    (version "20210111")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/S/SH/SHANCOCK/Perl-Tidy-"
                          version ".tar.gz"))
      (sha256
       (base32
        "17qqvass1n726ff1bkl8pc8yijhjy9vlm3wcc1xaykjxmz76cxi0"))))
    (build-system perl-build-system)
    (home-page "https://perltidy.github.io/perltidy/")
    (synopsis "Indent and reformat Perl code")
    (description "Perl::Tidy is a module and command-line utility to
indent and format Perl code.")
    (license license:gpl2)))

(define-public perl-b-lint
  (package
    (name "perl-b-lint")
    (version "1.20")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/B-Lint-"
                          version ".tar.gz"))
      (sha256
       (base32
        "1cqhgj17jqlrwdw2lz2sprs2zydry09y14lwhmipk2zxcj4l0jfw"))
      (patches
       ;; Taken from:
       ;; https://rt.cpan.org/Public/Bug/Display.html?id=101115
       (search-patches "xyz/euandreh/patches/B-Lint-1.20-Skip-a-bare-sub-test.patch"))))
    (build-system perl-build-system)
    (native-inputs
     `(("perl-test-harness" ,perl-test-harness)))
    (propagated-inputs
     `(("perl-module-pluggable" ,perl-module-pluggable)))
    (home-page "https://metacpan.org/pod/B::Lint")
    (synopsis "Simple linter for Perl source code")
    (description "The B::Lint module is equivalent to an extended
version of the -w option of perl.  It is named after the program lint
which carries out a similar process for C programs.")
    (license license:perl-license)))

(define-public perl-config-tiny
  (package
    (name "perl-config-tiny")
    (version "2.26")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/Config-Tiny-"
                          version ".tgz"))
      (sha256
       (base32
        "0pyggn3yq9ffjnw3i1n5r9kg4b90jw926apbvzxq8y7cpa8k5dc3"))))
    (build-system perl-build-system)
    (home-page "https://metacpan.org/pod/Config::Tiny")
    (synopsis "Read/Write .ini style files with as little code as possible")
    (description "Config::Tiny is a Perl class to read and write .ini
style configuration files with as little code as possible, reducing
load time and memory overhead.")
    (license license:perl-license)))

(define-public perl-pod-spell
  (package
    (name "perl-pod-spell")
    (version "1.20")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/D/DO/DOLMEN/Pod-Spell-"
                          version ".tar.gz"))
      (sha256
       (base32
        "0g6hdnc98gc3widr7sja313b1606g37a0mw0l0wxih1bwazzg0v3"))))
    (build-system perl-build-system)
    (inputs
     `(("perl-class-tiny" ,perl-class-tiny)
       ("perl-lingua-en-inflect" ,perl-lingua-en-inflect)))
    (native-inputs
     `(("perl-path-tiny" ,perl-path-tiny)
       ("perl-file-sharedir" ,perl-file-sharedir)
       ("perl-file-sharedir-install" ,perl-file-sharedir-install)
       ("perl-test-deep" ,perl-test-deep)))
    (home-page "https://metacpan.org/pod/Pod::Spell")
    (synopsis "A formatter for spellchecking Perl Pod")
    (description "Pod::Spell is a Pod formatter whose output is good
for spellchecking.  Pod::Spell rather like Pod::Text, except that it
doesn't put much effort into actual formatting, and it suppresses
things that look like Perl symbols or Perl jargon (so that your
spellchecking program won't complain about mystery words like
\"$thing\" or \"Foo::Bar\" or \"hashref\").")
    (license license:perl-license)))

(define-public perl-string-format
  (package
    (name "perl-string-format")
    (version "1.18")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/S/SR/SREZIC/String-Format-"
                          version ".tar.gz"))
      (sha256
       (base32
        "0y77frxzjifd4sw0j19cc346ysas1mya84rdxaz279lyin7plhcy"))))
    (build-system perl-build-system)
    (home-page "https://metacpan.org/pod/String::Format")
    (synopsis "sprintf-like string formatting for Perl")
    (description "String::Format lets you define arbitrary printf-like
format sequences to be expanded.  This module would be most useful in
configuration files and reporting tools, where the results of a query
need to be formatted in a particular way.  It was inspired by mutt's
index_format and related directives.")
    (license license:perl-license)))

(define-public perl-ppix-regexp
  (package
    (name "perl-ppix-regexp")
    (version "0.078")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/W/WY/WYANT/PPIx-Regexp-"
                          version ".tar.gz"))
      (sha256
       (base32
        "0h5lfi3m08i86hw89yffcsrsq0h0k2v58j47j5yl4m0g4apg725k"))))
    (inputs
     `(("perl-ppi" ,perl-ppi)))
    (native-inputs
     `(("perl-module-build" ,perl-module-build)))
    (build-system perl-build-system)
    (home-page "https://metacpan.org/pod/PPIx::Regexp")
    (synopsis "Represent a regular expression of some sort")
    (description "The purpose of the PPIx-Regexp package is to parse
regular expressions in a manner similar to the way the PPI package
parses Perl.  This class forms the root of the parse tree, playing a
role similar to PPI::Document.")
    (license license:perl-license)))

(define-public perl-ppix-quotelike
  (package
    (name "perl-ppix-quotelike")
    (version "0.015")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/W/WY/WYANT/PPIx-QuoteLike-"
                          version ".tar.gz"))
      (sha256
       (base32
        "16qbhryi4vdjfgx5hf6sl0hj2lv4yn1lmg9jibxrlmipnhm1qdfa"))))
    (inputs
     `(("perl-ppix-regexp" ,perl-ppix-regexp)
       ("perl-ppi" ,perl-ppi)))
    (native-inputs
     `(("perl-module-build" ,perl-module-build)
       ("perl-readonly" ,perl-readonly)))
    (build-system perl-build-system)
    (home-page "https://metacpan.org/pod/PPIx::QuoteLike")
    (synopsis "Parse Perl string literals and string-literal-like things")
    (description "This Perl class parses Perl string literals and
things that are reasonably like string literals.  Its real reason for
being is to find interpolated variables for Perl::Critic policies and
similar code.")
    (license license:perl-license)))

(define-public perl-ppix-utilities
  (package
    (name "perl-ppix-utilities")
    (version "1.001000")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/E/EL/ELLIOTJS/PPIx-Utilities-"
                          version ".tar.gz"))
      (sha256
       (base32
        "16yb7dnz8lgq2azs8jxj1wac60kbn16x8y4py04ci8nndww87903"))))
    (inputs
     `(("perl-exception-class" ,perl-exception-class)
       ("perl-ppi" ,perl-ppi)
       ("perl-task-weaken" ,perl-task-weaken)))
    (native-inputs
     `(("perl-module-build" ,perl-module-build)
       ("perl-test-deep" ,perl-test-deep)
       ("perl-readonly" ,perl-readonly)))
    (build-system perl-build-system)
    (home-page "https://metacpan.org/pod/PPIx::Utilities")
    (synopsis "Perl extensions to PPI")
    (description "This is a collection of functions for dealing with
PPI objects, many of which originated in Perl::Critic.  They are
organized into modules by the kind of PPI class they relate to, by
replacing the \"PPI\" at the front of the module name with
\"PPIx::Utilities\", e.g. functionality related to PPI::Nodes is in
PPIx::Utilities::Node.")
    (license license:perl-license)))

(define-public perl-critic
  (package
    (name "perl-critic")
    (version "1.138")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/Perl-Critic-"
                          version ".tar.gz"))
      (sha256
       (base32
        "10pdi6bzgas131l5qmnmy9sbzsb484nmdhk9hdlz8kgj3vwr9l9a"))))
    (build-system perl-build-system)
    (propagated-inputs
     `(("perl-b-keywords" ,perl-b-keywords)
       ("perl-list-moreutils" ,perl-list-moreutils)
       ("perl-exception-class" ,perl-exception-class)
       ("perl-file-which" ,perl-file-which)
       ("perl-io-string" ,perl-io-string)
       ("perl-module-pluggable" ,perl-module-pluggable)
       ("perl-ppi" ,perl-ppi)
       ("perl-readonly" ,perl-readonly)
       ("perl-tidy" ,perl-tidy)
       ("perl-config-tiny" ,perl-config-tiny)
       ("perl-pod-spell" ,perl-pod-spell)
       ("perl-string-format" ,perl-string-format)
       ("perl-ppix-regexp" ,perl-ppix-regexp)
       ("perl-ppix-quotelike" ,perl-ppix-quotelike)
       ("perl-ppix-utilities" ,perl-ppix-utilities)))
    (native-inputs
     `(("perl-module-build" ,perl-module-build)
       ("perl-test-deep" ,perl-test-deep)))
    (home-page "http://perlcritic.com/")
    (synopsis "Static analyzer for Perl best-practices")
    (description "Perl::Critic is an extensible framework for creating
and applying coding standards to Perl source code.  Essentially, it
is a static source code analysis engine.")
    (license license:perl-license)))

(define-public perl-commonmark
  (package
    (name "perl-commonmark")
    (version "0.290000")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/N/NW/NWELLNHOF/CommonMark-"
                          version ".tar.gz"))
      (sha256
       (base32
				"1pgaqa4f00i9r5z7l9xiya0q51ysq0nhpvgr0f3rza3cxz1v80d5"))))
    (build-system perl-build-system)
		(inputs
		 `(("perl-devel-checklib", perl-devel-checklib)))
		(native-inputs
		 `(("cmark" ,cmark "out")))
    (home-page "https://metacpan.org/pod/CommonMark")
    (synopsis "Perl interface to the CommonMark C library")
    (description "This module is a Perl wrapper around the official
CommonMark C library libcmark.  It closely follows the original API.")
    (license license:perl-license)))

(define-public perl-test2-v0
  (package
    (name "perl-test2-v0")
    (version "0.000139")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Test2-Suite-"
                          version ".tar.gz"))
      (sha256
       (base32
				"0hwp0w8qncb0rhf99j94w6fc91kszdn0y90psy4cnd7c2904g6sm"))))
    (build-system perl-build-system)
    (home-page "https://metacpan.org/pod/Test2::V0")
    (synopsis "0Th edition of the Test2 recommended bundle")
    (description "
FIXME
")
    (license license:perl-license)))


(define-public perl-template-mustache
  (package
    (name "perl-template-mustache")
    (version "1.3.3")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://cpan/authors/id/Y/YA/YANICK/Template-Mustache-"
                          version ".tar.gz"))
      (sha256
       (base32
				"00czyfqhl52cx4zjnbhcp2xq0sywj1bzpjqgri6513mrcgymjnx0"))))
    (inputs
		 `(("perl-list-allutils" ,perl-list-allutils)
			 ("perl-moo" ,perl-moo)
			 ("perl-parse-recdescent" ,perl-parse-recdescent)
			 ("perl-path-tiny" ,perl-path-tiny)
			 ("perl-test-exception" ,perl-test-exception)
			 ("perl-test-requires" ,perl-test-requires)
			 ("perl-yaml-libyaml" ,perl-yaml-libyaml)
			 ("perl-test2-v0" ,perl-test2-v0)))
    (build-system perl-build-system)
    (home-page "https://metacpan.org/pod/Template::Mustache")
    (synopsis "Perl library for the Mustache templating language")
    (description "Template::Mustache is an implementation of the
Mustache templating language for Perl.  This version of
Template::Mustache conforms to v1.1.3 of the Mustache specs.")
    (license license:perl-license)))

(list
 perl-tidy
 perl-b-lint
 perl-critic
 perl-commonmark
 #;
 perl-template-mustache)